设为首页 加入收藏

TOP

Mysql无法远程连接解决方案(二)
2018-12-12 16:11:42 】 浏览:171
Tags:Mysql 无法 远程 连接 解决方案
改user表中root账号信息,flush privileges;

ckmike@ckmikePC:~$ mysql

Welcome to the MySQL monitor. Commands end with ; or \g.

Your MySQL connection id is 2

Server version: 5.7.23-0ubuntu0.18.04.1 (Ubuntu)

Copyright (c) 2000, 2018, Oracle and/or its affiliates. All rights reserved.

Oracle is a registered trademark of Oracle Corporation and/or its

affiliates. Other names may be trademarks of their respective

owners.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

mysql> use mysql

Reading table information for completion of table and column names

You can turn off this feature to get a quicker startup with -A

Database changed

mysql> update mysql.user set authentication_string=password('账号密码') where user='root';

Query OK, 0 rows affected, 1 warning (0.03 sec)

Rows matched: 3 Changed: 0 Warnings: 1

mysql> update user set plugin="mysql_native_password";

Query OK, 1 row affected (0.00 sec)

Rows matched: 7 Changed: 1 Warnings: 0

mysql> flush privileges;

Query OK, 0 rows affected (0.00 sec)

mysql> quit

Bye

3./etc/mysql/mysql.conf.d/mysqld.cnf文件,去掉skip-grant-tables,开启校验

4.重启服务

sudo service mysql restart;

至此就搞定了,使用jdbc、非Linuxroot账号都可以登录了。

首页 上一页 1 2 下一页 尾页 2/2/2
】【打印繁体】【投稿】【收藏】 【推荐】【举报】【评论】 【关闭】 【返回顶部
上一篇MySQL数据库报错代码2013 下一篇MySQL5.7二进制安装

最新文章

热门文章

Hot 文章

Python

C 语言

C++基础

大数据基础

linux编程基础

C/C++面试题目