加入收藏 | 设为首页 | 会员中心 | 我要投稿 汽车网 (https://www.0577qiche.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 服务器 > 搭建环境 > Linux > 正文

linux中mysql忘记密码怎么解决

发布时间:2023-06-30 10:51:22 所属栏目:Linux 来源:
导读:  这篇文章主要介绍“linux中mysql忘记密码怎么办”的相关知识,小编通过实际案例向大家展示操作过程,操作方法简单快捷,实用性强,希望这篇“linux中mysql忘记密码怎么办”文章能帮助大家解
  这篇文章主要介绍“linux中mysql忘记密码怎么办”的相关知识,小编通过实际案例向大家展示操作过程,操作方法简单快捷,实用性强,希望这篇“linux中mysql忘记密码怎么办”文章能帮助大家解决问题。
 
  本教程操作环境:linux7.3系统、mysql8.0.22版本、Dell G3电脑。
 
  解决方法:
 
  1、检查mysql服务是否启动,如果启动,关闭mysql服务 
  //查看mysql服务状态
  [root@mytestlnx02 ~]# ps -ef | grep -i mysql
  root     22972     1  0 14:18 pts/0    00:00:00 /bin/sh /usr/bin/mysqld_safe --datadir=/var/lib/mysql --socket=/var/lib/mysql/mysql.sock --pid-file=/var/run/mysqld/mysqld.pid --basedir=/usr --user=mysql
  mysql    23166 22972  0 14:18 pts/0    00:00:00 /usr/sbin/mysqld --basedir=/usr --datadir=/var/lib/mysql --plugin-dir=/usr/lib/mysql/plugin --user=mysql --log-error=/var/log/mysqld.log --pid-file=/var/run/mysqld/mysqld.pid --socket=/var/lib/mysql/mysql.sock
  root     23237 21825  0 14:22 pts/0    00:00:00 grep -i mysql
  //关闭服务
  [root@mytestlnx02 ~]# service mysql stop
  [root@mytestlnx02 ~]#

  2. 修改mysql的配置文件my.cnf
  my.cnf配置文件的位置,一般在/etc/my.cnf,有些版本在/etc/mysql/my.cnf
  在配置文件中,增加2行代码 
  [mysqld]
  skip-grant-tables
  作用是登录mysql的时候跳过密码验证
  然后启动mysql服务,并进入mysql 
  [root@mytestlnx02 ~]# service mysqld start
  [root@mytestlnx02 ~]#
  [root@mytestlnx02 ~]# mysql -u root
  Type 'help;' or '/h' for help. Type '/c' to clear the current input statement.
  mysql>

  3. 修改密码
  连接mysql这个数据库,修改用户密码 
  mysql> use mysql;
  Reading table information for completion of table and column names
  You can turn off this feature to get a quicker startup with -A  
  Database changed
  mysql> update mysql.user set authentication_string=password('root_password') where user='root';
  Query OK, 1 row affected, 1 warning (0.00 sec)
  Rows matched: 1  Changed: 1  Warnings: 1
  mysql> flush privileges;
  Query OK, 0 rows affected (0.00 sec)
  mysql> exit

 

(编辑:汽车网)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章