首頁 >資料庫 >mysql教程 >CentOS系统下强行重新修改MySQL密码

CentOS系统下强行重新修改MySQL密码

WBOY
WBOY原創
2016-06-07 15:46:551348瀏覽

1.停止mysql服务:service mysqld stop; 2. mysqld_safe --skip-grant-tables 3. 重新打一个开个SSH连接(即重新打一个新的黑色窗口); 4.输入以下命令: [ root@localhost ~]# mysql mysqluse mysql mysqlupdate user set password=password(123456) where

1.停止mysql服务:service mysqld stop;

CentOS系统下强行重新修改MySQL密码




2. mysqld_safe --skip-grant-tables

CentOS系统下强行重新修改MySQL密码


3. 重新打一个开个SSH连接(即重新打一个新的黑色窗口);

 4.输入以下命令:

  [ root@localhost ~]# mysql
  mysql>use mysql
  mysql>update user set password=password("123456") where user="root";
 mysql>flush privileges;
 mysql>exit

pkill -KILL -t pts/0 可将pts为0的**用户(之前运行mysqld_safe的用户窗口)强制踢出
正常启动 MySQL:service mysql start.
陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn