zoukankan      html  css  js  c++  java
  • Ubuntu下忘记MySQL密码重设方法

    由于大脑容量有限,忘记了虚拟机上的MYSQL的密码,于是在google上找了下,找到了解决方法~~~~~

    1、结束当前正在运行的mysql进程。
    # /etc/init.d/mysql stop

    2、用mysql安全模式运行并跳过权限验证。
    # /usr/bin/mysqld_safe --skip-grant-tables

    3、重开一个终端以root身份登录mysql。
    # mysql -u root

    4、修改root用户口令。
    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 user set Password = PASSWORD('root') where User ='root';
    Query OK, 3 rows affected (0.00 sec)
    Rows matched: 3  Changed: 3  Warnings: 0

    mysql> exit

    5、结束mysql安全模式,用正常模式运行mysql。
    # /etc/init.d/mysql restart

    6、试试你新修改的口令
     
    mysql> show grants for 'root'@'127.0.0.1'; 

    mysql> flush privileges;
    mysql> quit

  • 相关阅读:
    汇编指令(它不区分大小写)
    汇编
    LINUX命令
    LInux 终端命令
    回文串的Manacher算法
    hdu3336 Counting the string kmp的next数组的应用
    hdu2203kmp匹配
    hdu2087kmp模板练习
    hdu1171kmp果题
    hdu1686kmp果题
  • 原文地址:https://www.cnblogs.com/yuxc/p/2607587.html
Copyright © 2011-2022 走看看