PS:安装完后提示root的随机密码生成在~/.mysql.secret,要我在第一次链接的时候使用set password密码重设密码
现在死活链接不上,基本所有的语句都试了
mysql -uroot -prand_password set password for root@localhost=password('new_pass')
mysql -uroot -prand_password
mysqladmin -uroot password 'new_pass'
mysqladmin -uroot -prand_password password 'new_pass'
都提示连接被拒绝
error:you must SET PASSWORD before executing this statement
连都连不上我就不知道怎么去set password
求大侠指导,谢谢
作者: 穷要顶硬上 时间: 2013-3-5 15:17
我的也是老提示error:you must SET PASSWORD before executing this statement作者: luke 时间: 2013-3-25 19:40
使用--init-file=file选项,
如mysqld --init-file=./init_file
然后再file里面写上设置密码的语句
SET PASSWORD FOR 'root'@'localhost'=PASSWORD('new_pass');即可 作者: luke 时间: 2013-3-25 19:40
使用--init-file=file选项,
如mysqld --init-file=./init_file
然后再file里面写上设置密码的语句
SET PASSWORD FOR 'root'@'localhost'=PASSWORD('new_pass');即可 作者: flashcloudy 时间: 2013-5-28 13:02
这个问题 是因为 5.6 版本 之后 要求 新登录用户 必须先改密码。改了密码才能干别的。。所以必须先执行语句 SET PASSWORD FOR 'root'@'localhost'=PASSWORD('new_pass'); 改密码