1. 編輯mysql主配置文件 my.cnf
vim /etc/my.cnf
在[mysqld]字段下的位置添加參數
skip-grant
保存退出
2. 重啟數據庫服務
service mysqld restart
3. 這樣就可以進入數據庫不用授權了
mysql -uroot
4. 修改相應database的用戶密碼
use mysql;
update user set password=password(‘your password’) where user=’root';
5. 修改/etc/my.cnf 去掉 skip-grant , 重啟mysql服務
ps:同理也可以更改其他的 如wordpress,discuz庫的密碼,
1,mysql -u-p密碼 ;進入mysql
2,use wordpress;
3,update wp_users set user_pass=MD5(‘新密碼’) where wp_users.user_login=’用戶';
4,flush privileges;
5,退出mysql 並重啟mysqld服務