标签:style blog http color 使用 os
mysql -u root mysql> SET PASSWORD FOR ‘root‘@‘localhost‘ = PASSWORD(‘newpass‘);
mysqladmin -u root password "newpass" mysqladmin -u root password oldpass "newpass" 如果root已经设置过密码,采用第二条命令
mysql -u root mysql> use mysql; mysql> UPDATE user SET Password = PASSWORD(‘newpass‘) WHERE user = ‘root‘; mysql> FLUSH PRIVILEGES;
net stop mysql
到mysql安装路径下的bin目录,找到 mysqld-nt.exe
mysqld-nt --skip-grant-tables 当前窗口将会停止
打开一个命令行窗口,到msyql安装路径下bin目录
mysql -u root mysql>use mysql; mysql>update user set password=password("new_password") where user="root"; mysql> flush privileges; mysql>exit
打开任务管理器,找到mysqld-nt进程并杀死该进程;重新使用mysql进入数据库即可。
MySQL修改root密码的各种方法整理,布布扣,bubuko.com
标签:style blog http color 使用 os
原文地址:http://www.cnblogs.com/lukcyjane/p/3849102.html