对于MySQL登录警告问题,主要有两个解决方法:
方法一:修改MySQL配置文件
-
打开MySQL的配置文件my.cnf,一般在/etc/mysql/my.cnf或/etc/my.cnf位置
-
找到[mysqld]节,添加或修改如下配置项
[mysqld]
...
show_compatibility_56=ON
- 重启MySQL服务,执行以下命令:
service mysql restart
-
登录MySQL测试是否正常,不再提示警告
-
示例:
$ sudo vim /etc/mysql/my.cnf
在文件末尾添加以下配置项:
[mysqld]
...
show_compatibility_56=ON
重启MySQL服务:
$ sudo service mysql restart
登录MySQL测试:
$ mysql -u root -p
Enter password:
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 2
...
方法二:使用--skip-show-warnings参数登录MySQL
- 使用以下命令登录MySQL
mysql -u username -p --skip-show-warnings
其中,username替换为你的用户名
-
输入密码登录MySQL,此时将不再提示警告信息
-
示例:
$ mysql -u root -p --skip-show-warnings
Enter password:
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 3
...
以上是MySQL登录警告问题的解决方法,通过修改MySQL配置文件或使用--skip-show-warnings参数,可以顺利登录MySQL,并避免提示警告信息的干扰。
本站文章如无特殊说明,均为本站原创,如若转载,请注明出处:mysql登录警告问题的解决方法 - Python技术站