原理: 备份+还原
在原机器上:
mysqldump -u root -p 数据库名称 > 备份文件名称
提示输入密码,开始备份。
出现mysqldump: Got error: 1045: Access denied for user 'root'@'localhost' (using password: YES) when trying to connect的问题,解决方法是,
#mysql -u root -p
>update mysql.user set password=password('123') where user='root';
>quit
出现mysqldump: Got error: 1045: Access denied for user 'smb_behavior'@'localhost' (using password: YES) when trying to connect的问题,解决方法是,
#vi /etc/my.cnf 在[mysql]添加skip-grant-tables,保存退出
#mysql –u root
>update mysql.user set password=password('123') where user='root';
>quit
在目标机上:
#mysql -u root -p
>create database 数据库名称;
#mysql -u root -p 数据库名称 < 备份文件名称
出现ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: YES)问题,解决方法是,
#mysql -u root -p >grant all on *.* to root@localhost identified by '123'; >quit