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

mysql 的使用

时间:2017-03-14 12:08:25      阅读:171      评论:0      收藏:0      [点我收藏+]

标签:top   ant   数据库   amp   数据   set   mysq   sql   word   

1 遗忘密码,如何进入数据库。

 /etc/init.d/mysql stop 

 mysqld_safe --user=mysql --skip-grant-tables --skip-networking & 

 mysql -u root mysql

 mysql> use mysql; 

 mysql> UPDATE user SET Password=PASSWORD(‘newpassword‘) where USER=‘root‘; 

 mysql> FLUSH PRIVILEGES; 

 mysql> quit 

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

mysql 的使用

标签:top   ant   数据库   amp   数据   set   mysq   sql   word   

原文地址:http://www.cnblogs.com/liupeng520/p/6547642.html

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