如何将root密码设置为null
如何从MySQL命令行客户端将MySQL root
用户的密码更改为null
-表示无密码或''
- 更改密码?
回答:
您可以通过以下五个简单步骤来恢复MySQL数据库服务器密码。
:停止MySQL服务器进程。
:使用–skip-grant-tables选项启动MySQL(mysqld)服务器/守护进程,以使其不提示输入密码。
:以root用户身份连接到mysql服务器。
:设置新的mysql根帐户密码,即重置mysql密码。
:退出并重新启动MySQL服务器。
这是您需要为每个步骤键入的命令(以root用户身份登录):
:停止mysql服务
# /etc/init.d/mysql stop
输出:
Stopping MySQL database server: mysqld.
:启动没有密码的MySQL服务器:
# mysqld_safe --skip-grant-tables &
输出:
[1] 5988Starting mysqld daemon with databases from /var/lib/mysql
mysqld_safe[6025]: started
:使用mysql客户端连接到mysql服务器:
# mysql -u root
输出:
Welcome to the MySQL monitor. Commands end with ; or \g.Your MySQL connection id is 1 to server version: 4.1.15-Debian_1-log
Type 'help;' or '\h' for help. Type '\c' to clear the buffer.
mysql>
:设置新的MySQL root用户密码
mysql> use mysql;mysql> update user set password=PASSWORD("NEW-ROOT-PASSWORD") where User='root';
mysql> flush privileges;
mysql> quit
:停止MySQL服务器:
# /etc/init.d/mysql stop
输出:
Stopping MySQL database server: mysqldSTOPPING server from pid file /var/run/mysqld/mysqld.pid
mysqld_safe[6186]: ended
[1]+ Done mysqld_safe --skip-grant-tables
:启动MySQL服务器并进行测试
# /etc/init.d/mysql start# mysql
ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: NO)
# mysql -u root -p
资料来源:http :
//www.cyberciti.biz/tips/recover-mysql-root-
password.html
以上是 如何将root密码设置为null 的全部内容, 来源链接: utcz.com/qa/410880.html