#命令1
sudo apt-get update
#命令2
sudo apt-get install mysql-server
sudo mysql_secure_installation
systemctl status mysql.service
在Ubuntu下MySQL缺省是只允许本地访问的
sudo mysql -uroot -p
GRANT ALL PRIVILEGES ON *.* TO 'remotedb'@'%' IDENTIFIED BY "Rt123456789.";
-- 后刷新MySQL系统权限相关表
flush privileges;
quit;
其中remotedb@%
,localhost
就是本地访问,配置成%
就是所有主机都可连接,也可以是具体的ip;
'Rt123456789.'
为你给新增权限用户设置的密码;
vim /etc/mysql/mysql.conf.d/mysqld.cnf
?只需注释掉 bind-address = 127.0.0.1,在前面加#
service mysql restart
查看用户
use mysql;
select user,host from user;
创建用户
create user 'root'@'%' identified by '123456';
用户授权
grant all privileges on *.* to ‘root’@’%’
修改成原来的加密方式
alter user 'root'@'%' identified with mysql_native_password by '123456';
刷新MySQL系统权限相关表
flush privileges;
如果还不能远程连接 可以是服务器的防火墙未开 参考?ubuntu 关闭防火墙 - CSDN文库
如果是腾讯云或者是阿里云 请检查用例详情防火墙是否开了 3306端口