reset-mysql-password
做个记录,知道方法,老忘记具体的参数
#安全模式运行mysql
mysqld_safe --skip-grant-tables --skip-networking &
#无密码登陆mysql
mysql -u root
#修改密码
use mysql;
update user set password=PASSWORD("mynewpassword") where User='root';
flush privileges;
做个记录,知道方法,老忘记具体的参数
#安全模式运行mysql
mysqld_safe --skip-grant-tables --skip-networking &
#无密码登陆mysql
mysql -u root
#修改密码
use mysql;
update user set password=PASSWORD("mynewpassword") where User='root';
flush privileges;