mysql 的使用
时间:2017-03-14 12:08:25
收藏:0
阅读:227
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>
原文:http://www.cnblogs.com/liupeng520/p/6547642.html
评论(0)