Heim >Datenbank >MySQL-Tutorial >CentOS系统下强行重新修改MySQL密码

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

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOriginal
2016-06-07 15:46:551355Durchsuche

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.
Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn