• 欢迎访问开心洋葱网站,在线教程,推荐使用最新版火狐浏览器和Chrome浏览器访问本网站,欢迎加入开心洋葱 QQ群
  • 为方便开心洋葱网用户,开心洋葱官网已经开启复制功能!
  • 欢迎访问开心洋葱网站,手机也能访问哦~欢迎加入开心洋葱多维思维学习平台 QQ群
  • 如果您觉得本站非常有看点,那么赶紧使用Ctrl+D 收藏开心洋葱吧~~~~~~~~~~~~~!
  • 由于近期流量激增,小站的ECS没能经的起亲们的访问,本站依然没有盈利,如果各位看如果觉着文字不错,还请看官给小站打个赏~~~~~~~~~~~~~!

Linux下MySQL中root用户密码忘记的解决方法

数据库技术 MySQL社区 1056次浏览 0个评论

  一、以系统的root用户(什么,你的系统的root用户密码也忘了。那只好看我另外一篇linux下忘记root用户的解决办法了先解决这个问题)登陆系统,进入终端

  [root@localhost /]#

  二、杀掉
MySQL进程

  方法1、[root@localhost /]#killall mysqld

  方法2、[root@localhost /]#ps -aux  //查看所有进程,找到mysql进程的pid

  然后

  [root@localhost /]#kill pid   //pid是mysql的进程号

  三、用–skip-grant-tables参数启动mysqld

  [root@localhost /]#/usr/local/mysql/bin/mysqld_safe –skip-grant-tables&

  // 其中/usr…./bin是我的mysql安装目录

  [root@localhost /]#/usr/local/mysql/bin/mysql  //进入mysql

  mysql> use mysql   //切换到mysql database

  mysql> UPDATE user SET password=password(‘123456′) WHERE user=’root’;

  //将root密码该为123456了

  四、注意事项

  The full command to load MySQL like this is:

  mysqld_safe –skip-grant-tables –autoclose

  (Editor’s Note: Our technical reviewer found that he had to launch the mysqld_safe command

  without the ‘–autoclose’ flag, otherwise the daemon never started.)

  这是国外网站说的,我没用autoclosa也成功了

  但是我在执行/usr/local/mysql/bin/mysqld_safe –skip-grant-tables&即出现错误提示:

  ./mysqld_safe

  starting mysqld daemon with databases from /usr/local/var

  STOPPING server from pid file /usr/local/var/localhost.localdomain.pid

  mysqld  ended

  然后进入/usr/local/var/

  vi ./localhost.localdomain.err 内容如下:

  050410 04:02:59 mysqld started

  050410 4:03:00 InnoDB:Operating system error number 13 in a file operation.

  InnoDB:The error means mysqld does not have the access rights to

  InnoDB:the directory.

  InnoDB:File name ./ibdata1

  InnoDB:File operation call:’create’.

  InnoDB:Cannot continue operation.

  050410 04:03:00 mysqld ended

  怀疑是./var目录的访问权限,故如下操作:

  chmod 777 ./var

  然后重新执行后台,仍出以上错误,但在localhost.localdomain.err文件中的错误信息已改为找不到一个叫做

  help.*的文件了(这个文件名我记不得了)

  这是因为我的mysql安装目录的读写权限是这样造成的

  mysql安装目录属于用户root,但是群组是mysql的

  把群组也改为root即可。


开心洋葱 , 版权所有丨如未注明 , 均为原创丨未经授权请勿修改 , 转载请注明Linux下MySQL中root用户密码忘记的解决方法
喜欢 (0)

您必须 登录 才能发表评论!

加载中……