kali linux 2018.2 mysql密码修改后无效,外部无法连接问题
Kali Linux 2018.2 默认MySQL数据库是mariadb,可能和MySQL有些细微的变化,只需要做如下处理即可。
解决方案:
mysql -u root -p UPDATE mysql.user SET plugin=‘‘ WHERE user=‘root‘; UPDATE mysql.user SET password=PASSWORD(‘newpassword‘) WHERE user=‘root‘; # 这一次改的密码就生效了。 FLUSH PRIVILEGES; EXIT
原文地址:https://www.cnblogs.com/xiaofengchu/p/9389859.html
时间: 2024-10-08 09:31:48