1. 程式人生 > >mysql5.6版本備份報錯

mysql5.6版本備份報錯

man sin gpo 啟動mysql ace command 輸入密碼 腳本 roo

MySQL5.6版本備份報錯,密碼不安全

[root@centos199 mysql]# mysqldump -uroot -ppassword cz-office > mysql38.sql
Warning: Using a password on the command line interface can be insecure.

解決方法1:進行交互式輸入密碼,

[root@centos199 mysql]# mysqldump -uroot -p cz-office > mysql38.sql

會讓你輸入MySQL用戶root的密碼,

解決方法2:在配置文件my.cf裏面添加一下內容:

[mysqldump]
user=root
password=password

保存退出,從新啟動mysql

備份的時候可以省略不輸入用戶名和密碼就可以;如果是備份的腳本的話,也一樣;

[root@centos199 mysql]# mysqldump cz-office > mysql38.sql

mysql5.6版本備份報錯