远程连接Ubuntu服务器MySQL数据库

前言

数据库系统期末实验报告要设计一个数据库,想在本地用Navicat这类软件尝试连接阿里云上的mysql-server服务器

可是

远程连接Ubuntu服务器MySQL数据库_第1张图片
image.png

解决方案

修改配置文件

$ nono /etc/mysql/mysql.conf.d/mysqld.cnf

把 bind-address = 127.0.0.1 改成 0.0.0.0

远程连接Ubuntu服务器MySQL数据库_第2张图片
改后效果图.png

然后执行以下操作

Log in to the MySQL server.
Log in to MySQL with the command mysql -u root -p
Type the MySQL root user password.
Issue the MySQL command:
Flush the MySQL privileges with the command FLUSH PRIVILEGES;
Exit out of the MySQL prompt with the command exit;

具体操作

CREATE USER 'scauos'@'%'  IDENTIFIED BY '123456';
flush privilege;
grant all on *.* to 'wendy'@'%';
flush privilege;

大吉大利,今晚吃鸡

最后使用Navicat连接


远程连接Ubuntu服务器MySQL数据库_第3张图片
.png

你可能感兴趣的:(远程连接Ubuntu服务器MySQL数据库)