时间:2021-07-01 10:21:17 帮助过:46人阅读
每次启用mysql都出现这个问题 然后我键入命令# mysql -pEnter password: Welcome to the MySQL monitor. Commands endwith ; or \g.Your MySQL connection id is 35 to server version: 4.0.20-standard Type ‘help;‘ or ‘\h‘ for help. Type‘\c‘ to clear the buffer.
mysql> 这样才能用,不过想给mysql备份就不可以了,
键入#mysqldump database>databak.sql就又出现RROR 1045: Access denied for user: ‘root@localhost‘ (Using password: NO)怎么才能接着键入mysql就能使用,而且能对
mysql进行备份
解决办法:登陆mysql,然后执行下面语句:set password for ‘root‘@‘localhost‘ =password(‘‘);flush privileges;然后再重新登陆,就达
到你的要求了
本文出自 “天蓝蓝家园” 博客,谢绝转载!
Linux下mysql ERROR 1045,Mysql无法执行批处理
标签:mysql无法执行批处理