zoukankan      html  css  js  c++  java
  • Linux重置MySQL密码

    1.停止mysql程序

    [root@H0f ~]# service mysqld stop
    Stopping mysqld:                                           [  OK  ]
    

     2.打开mysql配置文件

    [root@H0f ~]# vim /etc/my.cnf
    搜索mysqlld /mysqld
    [mysqld]#下一行添加
    skip-grant-tables  #忽略MySQL权限问题,直接登录

     3.开启MySQL服务

    [root@H0f ~]# service mysqld start
    

     4.无密码直接进入mysql

    [root@H0f ~]# mysql
    Welcome to the MySQL monitor.  Commands end with ; or g.
    Your MySQL connection id is 2
    Server version: 5.1.73-log Source distribution
    
    Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.
    
    Oracle is a registered trademark of Oracle Corporation and/or its
    affiliates. Other names may be trademarks of their respective
    owners.
    
    Type 'help;' or 'h' for help. Type 'c' to clear the current input statement.
    

    5.使用mysql表,进行修改密码

    mysql> use mysql
    Database changed
    mysql> update user set password=password("123") where user="root";#密码修改为123
    Query OK, 3 rows affected (0.00 sec)
    Rows matched: 3  Changed: 3  Warnings: 0
    

     6.刷新权限

    mysql> flush privileges;
    Query OK, 0 rows affected (0.00 sec)
    

     7.杀死所有mysqld进程

    [root@H0f ~]# killall mysqld
    [root@H0f ~]# ps -ef|grep mysqld
    root      53342  45198  0 20:57 pts/6    00:00:00 grep mysqld
    

     8.开启mysqld服务

    [root@H0f ~]# service mysqld start
    Starting mysqld:                                           [  OK  ]
    

     9.测试进入mysql

    [root@H0f ~]# mysql -u root -p
    Enter password: 
    Welcome to the MySQL monitor.  Commands end with ; or g.
    Your MySQL connection id is 2
    Server version: 5.1.73-log Source distribution
    
    Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.
    
    Oracle is a registered trademark of Oracle Corporation and/or its
    affiliates. Other names may be trademarks of their respective
    owners.
    
    Type 'help;' or 'h' for help. Type 'c' to clear the current input statement.
    
    mysql>
    
  • 相关阅读:
    tuntime error '55' file already open
    Visual Studio Team System 2008 Team Suite 中文版下载地址
    Windows7快捷键大全
    Thinkpad T61 on screen display 设置
    Hough变换,找直线
    多目标识别
    GALIL 数字运动控制器 应用编程指南(V1.0)
    VC调用MATLAB.
    OTSU求阈值程序
    什么是伺服电机?
  • 原文地址:https://www.cnblogs.com/someone9/p/8716592.html
Copyright © 2011-2022 走看看