Mysql 修改密碼

2022-03-08 13:37:04 字數 1361 閱讀 2844

#查詢密碼

#使用mysql資料庫

mysql> use mysql;

#查詢主機使用者名稱密碼:5

.7版本之前的

mysql> select host,user,plugin,password from user;

#查詢主機使用者名稱密碼:5.7版本之後的,包括5.7

mysql> select host,user,plugin,authentication_string from user;

mysql> select host,user,plugin,authentication_string from user\g;

mysql> select host,user,plugin,authentication_string from mysql.user;

#修改密碼mysql> update user set password=password("新密碼") where user="root";

mysql> flush privileges;

mysql> exit

我的mysql版本比較高,所以上面的方法並不適用,下面演示》5.7版本的修改密碼

alter user "root"@"localhost" identified with mysql_native_password by "新密碼";

mysql> alter user "root"@"localhost" identified by "新密碼";  --方法1

mysql> update user set authentication_string=password("新密碼") where user="root"; -- 方法2

mysql> flush privileges;

mysql> quit

mysqladmin -uroot -p舊密碼 password 新密碼

#示例 mysqladmin -uroot -pnu0l password nu1l

會提示許可權過高,忽略即可,在登入mysql就可以使用新密碼了

vi /etc/my.cnf

新增:[mysqld]

mysql修改密碼記錄 MySQL修改密碼方法總結

方法一 使用phpmyadmin,這是最簡單的了,修改mysql庫的user表,不過別忘了使用password函式。方法二使用mysqladmin,這是前面宣告的乙個特例。mysqladmin u root p password mypasswd 輸入這個命令後,需要輸入root的原密碼,然後roo...

mysql 修改密碼

一 mysql修改密碼方法總結 首先要說明一點的是 一般情況下,修改mysql密碼是需要有mysql裡的root許可權的,這樣一般使用者是無法更改密碼的,除非請求管理員幫助修改。方法一 使用phpmyadmin 圖形化管理mysql資料庫的工具 這是最簡單的,直接用sql語句修改mysql資料庫庫的...

修改mysql密碼

1.把mysql服務停掉 2.然後進入mysql的bin目錄 執行mysqld defaults file c program files mysql mysql server 5.1 my.ini console skip grant tables 注 c program files mysql ...