Windows系统部署GoLand结合内网穿透实现SSH远程Linux服务器开发调试
# 安装并配置内网穿透工具 - 以 `frp` 为例
# 下载 frp 到你的 Windows 系统
frp_windows_amd64.zip (https://github.com/fatedier/frp/releases)
# 解压缩
# 配置 frps.ini
[common]
bind_port = 7000
# 启动 frps
./frps -c frps.ini
# 在你的 Linux 服务器上安装 frpc
# 下载 frp 到你的 Linux 服务器
frp_linux_amd64.zip (https://github.com/fatedier/frp/releases)
# 解压缩
# 配置 frpc.ini
[common]
server_addr = <你的 Windows IP>
server_port = 7000
[ssh]
type = tcp
local_ip = 127.0.0.1
local_port = 22
remote_port = 6000
[tunnel]
type = tcp
remote_port = 7001
local_ip = 127.0.0.1
local_port = 6333
# 启动 frpc
./frpc -c frpc.ini
# 在 GoLand 中配置 SSH 远程开发环境
# 打开 GoLand,选择 `File` > `Settings` > `Build, Execution, Deployment` > `Deployment`
# 点击 `+` 添加一个新的部署配置,选择 `SFTP`
# 填写你的服务器信息,用户名、主机、私钥等
# 在 `Mappings` 中配置本地目录与远程服务器目录的映射
# 保存配置并测试连接
# 配置端口转发,以便于 GoLand 可以通过内网穿透连接到你的开发环境
# 在 frpc.ini 中添加如下配置
[goland_debug_server]
type = tcp
local_ip = 127.0.0.1
local_port = 6333
remote_port = 6333
# 重启 frpc 使配置生效
# 在 GoLand 中配置远程解释器
# 选择 `File` > `Settings` > `Languages & Frameworks` > `Go` > `Go Modules (vgo)` 或 `Go SDK`
# 在 `SSH Interpreter` 中配置你的 SSH 连接信息,选择你刚才创建的部署配置
# 保存设置并重新启动 GoLand
# 现在你可以在 GoLand 中远程编辑、编译和调试 Linux 服务器上的 Go 代码了
这个例子展示了如何使用内网穿透工具 frp
将你的本地开发环境与远程的 Linux 服务器连接起来,并在 GoLand 中配置相关设置以实现远程开发和调试。这样可以在没有公网 IP 的情况下进行开发工作,特别适合家庭、办公室网络环境或在教育、个人项目中使用。
评论已关闭