Heim > Datenbank > MySQL-Tutorial > 5种强制修改mysql的root密码的方法

5种强制修改mysql的root密码的方法

WBOY
Freigeben: 2016-06-07 16:36:23
Original
2827 Leute haben es durchsucht

在安装mysql的时候如果没有设置新的密码,默认值为空或者12456,这样安装是没有问题的也可以使用命令行mysql -uroot -p进行登录。但是在正式使用的时候你不想密码为空,或者为123456这样简单,以下是强制修改mysql的root密码的四种方法: 第一种方法:使用upd

 在安装mysql的时候如果没有设置新的密码,默认值为空或者12456,这样安装是没有问题的也可以使用命令行mysql -uroot -p进行登录。但是在正式使用的时候你不想密码为空,或者为123456这样简单,以下是强制修改mysql的root密码的四种方法:
      第一种方法:使用update语句进行修改
            [root@localhost ~]# mysql -uroot -p
            mysql->user mysql;
             mysql> update user set Password=password('newpassword') where User='root' and Host='localhost';
                        Query OK, 1 row affected (0.00 sec)
                        Rows matched: 1  Changed: 1  Warnings: 0
             mysql> flush privileges;
                        Query OK, 0 rows affected (0.00 sec)
              mysql>quit
              重新登录即可
       第二种方法:使用mysql自身提供的工具进行修改(mysqladmin)
              [root@localhost ~]# mysqladmin -u root -poldpassword password 'newpassword';
      
        第三种方法:使用set语句进行修改
              [root@localhost ~]# mysql -uroot -p
              mysql->user mysql;
              mysql>set password for root@"localhost" = password("newpassword");
                        Query OK, 1 row affected (0.00 sec)
                        Rows matched: 1  Changed: 1  Warnings: 0
              mysql> flush privileges;
                        Query OK, 0 rows affected (0.00 sec)
              mysql>quit
              重新登录即可
         第四种方法:使用grant语句进行修改
              [root@localhost ~]# mysql -uroot -p
              mysql>user mysql;
              mysql>grant all privileges on *.* to root@'localhost' identified by 'newpassword';
                        Query OK, 1 row affected (0.00 sec)
                        Rows matched: 1  Changed: 1  Warnings: 0
              mysql>flush privileges;
                         Query OK, 0 rows affected (0.00 sec)
              mysql>quit
              重新登录即可
          第五种方法:使用phpmyadmin就行修改
         
          以上方法本人亲自测试过,每种方法都可以强制修改mysql的root用户的密码。
Verwandte Etiketten:
Quelle:php.cn
Erklärung dieser Website
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn
Beliebte Tutorials
Mehr>
Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage