导出数据出现问题
mysqldump -uroot -p123456 timophp > timophp.sql
mysqldump: [Warning] Using a password on the command line interface can be insecure.
解决方案
vim /etc/my.cnf
[mysqldump] password=123456
mysqldump -uroot timophp > timophp.sql
赞
踩
mysqldump -uroot -p123456 timophp > timophp.sql
mysqldump: [Warning] Using a password on the command line interface can be insecure.
vim /etc/my.cnf
[mysqldump] password=123456
mysqldump -uroot timophp > timophp.sql
转载于:https://my.oschina.net/tomener/blog/983477
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。