❶ Mysql 怎么自动备份啊

解决方法

1、在网络里面搜索“多备份”,注册一个账号

2、登陆成功后,专找到数据库备份

3、进行数属据库远程授权:要备份成功,得先对数据库进行远程授权,允许备份主机远程访问数据库

4、填写你的数据库IP,数据库用户名,密码等参数信息

5、选择存储位置,备份频率等

6、至此,数据库备份任务就创建成功了。然后,多备份就会自动定时备份数据库。

❷ 如何在不停止Mysql服务的情况下,定时备份mysql数据库

进入MySQL目录下的bin文件夹

mysqlmp -u 用户名 -p 数据库名 > 导出的文件名

C:\Program Files\MySQL\MySQL Server 5.5\bin>mysqlmp -u root -p Test > test.sql

Enter password: ********

C:\Program Files\MySQL\MySQL Server 5.5\bin>dir *.sql
驱动器 C 中的卷没有标签。
卷的序列号是 406A-C32E

C:\Program Files\MySQL\MySQL Server 5.5\bin 的目录

2013-01-29 16:34 39,574 test.sql
1 个文件 39,574 字节
0 个目录 5,498,294,272 可用字节

用上面的文件, 把数据, 导入到另外一个数据库上面去.

C:\Program Files\MySQL\MySQL Server 5.5\bin>mysql -u root -p
Enter password: ********
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 17
Server version: 5.5.29 MySQL Community Server (GPL)

Copyright (c) 2000, 2012, Oracle and/or its affiliates. All rights reserved.

Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

mysql> create database test2;
Query OK, 1 row affected (0.04 sec)

mysql> use test2
Database changed
mysql> source test.sql

......