当前位置:网站首页>远程连接Ubuntu中的Mysql
远程连接Ubuntu中的Mysql
2022-08-02 14:11:00 【超级码力奥】
1. 设置mysql中的root被访问的权限
show databases;
use mysql;
select user,host from user;
修改root可以被访问的权限
update user set host ='%' where user ='root';
flush privileges;
select user,host from user;
2. 修改云服务器安全组规则,开启3306端口,这个比较容易,不在赘述
3. 修改MySQL配置文件
sudo vim /etc/mysql/mysql.conf.d/mysqld.cnf
找到 bind-address 那一行,初始值被赋为 127.0.0.1,代表只在本机可用,将其改为 0.0.0.0,代表全IP可用。
完成之后重启MySQL服务,命令为:
sudo service mysql restart
4. 修改防火墙设置
查看防火墙状态。
sudo firewall-cmd --state #查看防火墙状态。
得到结果是running或者not running如果没开启
systemctl start firewalld
在running 状态下,向firewall 添加需要开放的端口
sudo firewall-cmd --permanent --zone=public --add-port=3306/tcp #永久的添 加该端口。去掉–permanent则表示临时。
与之对应关闭的命令为firewall-cmd --zone=public --remove-port=3306/tcp --permanent
加载配置,使得修改有效。
sudo firewall-cmd --reload
使用命令 查看开启的端口,出现3306/tcp这开启正确
sudo firewall-cmd --permanent --zone=public --list-ports
别忘了关键一步 再次启动防火墙sudo systemctl start firewalld.service
再查看端口8080就开放了
边栏推荐
- Win11系统找不到dll文件怎么修复
- What should I do if Windows 10 cannot connect to the printer?Solutions for not using the printer
- 2021-10-14
- 7.Redis
- pygame图像连续旋转
- Win11 computer off for a period of time without operating network how to solve
- MATLAB制作简易小动画入门详解
- Article pygame drag the implementation of the method
- LeetCode 2353. 设计食物评分系统 维护哈希表+set
- 轻量化AlphaPose
猜你喜欢
随机推荐
7.Redis
7. Redis
pygame绘制弧线
Mysql的锁
奇技淫巧-位运算
Redis的线程模型
Project: combing the database table
Mapreduce环境详细搭建和案例实现
Summarize computer network super comprehensive test questions
Compilation error D8021: Invalid numeric argument '/Wextra' cl command line error d8021 invalid numeric argument '/Wextra'
Cmd Markdown 公式指导手册
Codeforces Round #605 (Div. 3)
项目:数据库表的梳理
MATLAB绘制平面填充图入门详解
How to solve Win11 without local users and groups
[System Design and Implementation] Flink-based distracted driving prediction and data analysis system
MATLAB drawing command fimplicit detailed introduction to drawing implicit function graphics
【STM32学习1】基础知识与概念明晰
Win10 cannot directly use photo viewer to open the picture
How to reinstall Win7 system with U disk?How to reinstall win7 using u disk?