码迷,mamicode.com
首页 > 数据库 > 详细

mysql 修改密码

时间:2015-04-21 11:06:31      阅读:168      评论:0      收藏:0      [点我收藏+]

标签:

# /etc/init.d/mysql stop
# mysqld_safe --user=mysql --skip-grant-tables --skip-networking &
# mysql -u root mysql
mysql> UPDATE user SET Password=PASSWORD(‘newpassword‘) where USER=‘root‘;
mysql> FLUSH PRIVILEGES;
mysql> quit

# /etc/init.d/mysql restart
# mysql -uroot -p
Enter password: <输入新设的密码newpassword>

 

 

http://www.111cn.net/database/mysql/44142.htm

mysql 修改密码

标签:

原文地址:http://www.cnblogs.com/leocook/p/mysql_updatemysql_passwd.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!