Rumah > pangkalan data > tutorial mysql > 5种强制修改mysql的root密码的方法

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

WBOY
Lepaskan: 2016-06-07 16:36:23
asal
2824 orang telah melayarinya

在安装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用户的密码。
sumber:php.cn
Kenyataan Laman Web ini
Kandungan artikel ini disumbangkan secara sukarela oleh netizen, dan hak cipta adalah milik pengarang asal. Laman web ini tidak memikul tanggungjawab undang-undang yang sepadan. Jika anda menemui sebarang kandungan yang disyaki plagiarisme atau pelanggaran, sila hubungi admin@php.cn
Tutorial Popular
Lagi>
Muat turun terkini
Lagi>
kesan web
Kod sumber laman web
Bahan laman web
Templat hujung hadapan