無論設(shè)置什么密碼,都不起作用。登錄時(shí)輸入任何密碼都可以進(jìn)去。在mysql內(nèi)查看顯示如下:MariaDB [mysql]> select authentication_string from user;authentication_string1 row in set (0.00 sec)MariaDB [mysql]> select user from user;userroot1 row in set (0.00 sec)MariaDB [mysql]> select host from user;hostlocalhost1 row in set (0.00 sec)
1 回答

慕少森
TA貢獻(xiàn)2019條經(jīng)驗(yàn) 獲得超9個(gè)贊
解決了,是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)限信息
然后就可以正常使用
添加回答
舉報(bào)
0/150
提交
取消