Mysql学习在ubuntu中重置mysql服务器root密码的方法

Mysql学习在ubuntu中重置mysql服务器root密码的方法,第1张

概述介绍《Mysql学习在ubuntu中重置mysql服务器root密码的方法》开发教程,希望对您有用。

《MysqL学习在ubuntu中重置MysqL服务器root密码的方法》要点:
本文介绍了MysqL学习在ubuntu中重置MysqL服务器root密码的方法,希望对您有用。如果有疑问,可以联系我们。

首先停止MysqL服务:
代码如下:
root@webserver:/home/webmaster# service MysqL stop

接着采用忽略密码认证模式重新创建一个MysqL服务:
代码如下:
root@webserver:/home/webmaster# MysqLd --user=MysqL --skip-grant-tables --skip-networking &

成功启动后返回PID及其它启动信息
代码如下:
[1] 3591
root@webserver:/home/webmaster# 121005 2:59:27 [Note] Plugin 'FEDERATED' is Disabled.
121005 2:59:27 InnoDB: The InnoDB memory heap is Disabled
121005 2:59:27 InnoDB: Mutexes and rw_locks use GCC atomic builtins
121005 2:59:27 InnoDB: Compressed tables use zlib 1.2.3.4
121005 2:59:27 InnoDB: Initializing buffer pool,size = 128.0M
121005 2:59:27 InnoDB: Completed initialization of buffer pool
121005 2:59:27 InnoDB: highest supported file format is barracuda.
121005 2:59:27 InnoDB: Waiting for the background threads to start
121005 2:59:28 InnoDB: 1.1.8 started; log sequence number 1595685
121005 2:59:28 [Note] MysqLd: ready for connections.
Version: '5.5.24-0ubuntu0.12.04.1' socket: '/var/run/MysqLd/MysqLd.sock' port: 0 (Ubuntu)

连接到MysqL系统库:
代码如下:
root@webserver:/home/webmaster# MysqL -u root MysqL

连接到MysqL库后直接修改root帐号的密码为新的密码'mynewpasswd':
代码如下:
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

MysqL> update user set Password=PASSWORD('mynewpasswd') where user='root';
query OK,3 rows affected (0.00 sec)
Rows matched: 3 Changed: 3 Warnings: 0

MysqL> FLUSH PRIVILEGES;
MysqL> quit;
Bye

中止MysqL服务进程(PID 3591见前面启动服务时的屏幕信息):
代码如下:
root@webserver:/home/webmaster# kill 3591

正常启动 MysqL服务,并用新密码登录MysqL服务器成功:
代码如下:
root@webserver:/home/webmaster#service MysqL start
root@webserver:/home/webmaster#MysqL -u root -pmynewpasswd
总结

以上是内存溢出为你收集整理的Mysql学习在ubuntu中重置mysql服务器root密码的方法全部内容,希望文章能够帮你解决Mysql学习在ubuntu中重置mysql服务器root密码的方法所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/sjk/1163948.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-01
下一篇 2022-06-01

发表评论

登录后才能评论

评论列表(0条)

保存