Linux Ubuntu系统安装MySQL并实现公网连接本地数据库【内网穿透】
在Ubuntu系统上安装MySQL并实现公网连接本地数据库,可以通过内网穿透工具实现。以frp
为例,以下是安装MySQL和配置内网穿透的步骤:
- 安装MySQL:
sudo apt update
sudo apt install mysql-server
sudo systemctl start mysql
sudo systemctl enable mysql
sudo mysql_secure_installation
- 登录MySQL设置远程访问权限(将
your_username
和your_password
替换为实际的用户名和密码):
mysql -u root -p
GRANT ALL PRIVILEGES ON *.* TO 'your_username'@'%' IDENTIFIED BY 'your_password' WITH GRANT OPTION;
FLUSH PRIVILEGES;
- 安装
frp
:
wget https://github.com/fatedier/frp/releases/download/v0.37.1/frp_0.37.1_linux_amd64.tar.gz
tar -zxvf frp_0.37.1_linux_amd64.tar.gz
cd frp_0.37.1_linux_amd64
- 修改
frp
服务端配置文件frps.ini
:
[common]
bind_port = 7000
- 修改
frp
客户端配置文件frpc.ini
:
[common]
server_addr = your_server_ip
server_port = 7000
[mysql]
type = tcp
local_ip = 127.0.0.1
local_port = 3306
remote_port = 6000
- 在服务器上启动
frp
服务端:
./frps -c ./frps.ini
- 在本地启动
frp
客户端:
./frpc -c ./frpc.ini
- 使用内网穿透的公网地址和端口(
your_server_ip:6000
)连接MySQL数据库。
注意:
- 请确保你的服务器有公网IP,并且防火墙允许7000和6000端口的流量通过。
- 使用内网穿透工具时,请确保遵守服务条款,并注意安全风险。
- 本示例使用
frp
版本0.37.1
,请根据实际情况选择合适的版本。 - 在实际应用中,应该使用更安全的方式管理MySQL访问权限和使用VPC或其他安全组件来限制访问。
评论已关闭