鍍金池/ 問答/Linux  數(shù)據(jù)庫/ mysql無法設(shè)置密碼

mysql無法設(shè)置密碼

無論設(shè)置什么密碼,都不起作用。登錄時(shí)輸入任何密碼都可以進(jìn)去。
在mysql內(nèi)查看顯示如下:

MariaDB [mysql]> select authentication_string from user;
authentication_string

1 row in set (0.00 sec)

MariaDB [mysql]> select user from user;
user
root

1 row in set (0.00 sec)

MariaDB [mysql]> select host from user;
host
localhost

1 row in set (0.00 sec)

回答
編輯回答
獨(dú)白

是不是在my.cnf文件下 加 skip-grant-tables 跳過密碼登錄了
(window下 好像叫my.ini)

2018年7月15日 22:23
編輯回答
汐顏

管理員方式進(jìn)入設(shè)置密碼試試

2017年5月22日 18:24
編輯回答
青黛色

解決了,是mysql密碼驗(yàn)證方式有問題。
select Host,User,plugin from mysql.user where User='root';

這個(gè)時(shí)候會(huì)發(fā)現(xiàn)plugin(加密方式)是unix_socket,

update mysql.user set plugin='mysql_native_password'; #重置加密方式

update mysql.user set password=PASSWORD("newpassword") where User='root'; #設(shè)置新密碼

flush privileges; #刷新權(quán)限信息

然后就可以正常使用

2018年2月1日 13:36