snowdreamtech/frp

Frpc always give connection refused error

kehuantiantang opened this issue · 4 comments

I tired to install frpc in three client, but unfortunally, both of them give me the same error

[W] [service.go:104] login to server failed: dial tcp 127.0.0.1:7000: connect: connection refused
dial tcp 127.0.0.1:7000: connect: connection refused

I check the listen port by sudo lsof -i :7000, it shows me, no any process use it.
I tried to copy offical configuration file from https://raw.githubusercontent.com/fatedier/frp/dev/conf/frpc_full_example.toml, but it also show the same error.

Server start successfully, and can access the dashboard, also the firewall I open for frp.
This is my configuration toml file for client and server, could you please give me some idea to solve it, thanks a lot ?

server
# frps.toml
bindPort = 7000         # [必选] 绑定端口, 客户端与该端口建立连接
log.to = "console"      # [可选] 日志配置, 通过打印的方式输出日志
vhostHTTPPort = 7100    # [可选] http 代理需要, 当访问该端口时就转到对应本地 frpc 代理
vhostHTTPSPort = 7200   # [可选] https 代理需要, 当访问该端口时就转到对应本地 frpc 代理

# 身份验证
auth.method = "token"   # [可选] 身份验证方式
auth.token = "password" # [可选] token 设置, 只有客服端设置了相同 token 才能身份校验通过, 其
实就是密码

# 下面是服务端仪表板配置
webServer.port = 7500        # 端口设置
webServer.addr = "0.0.0.0"   # IP 设置
webServer.user = "admin"     # 仪表盘用户名设置

client

# frpc.toml
serverPort = 7000                # [必选] 要连接的 frps 端口
serverAddr = "172.222.205.88"   # [必选] 要连接的 frps 地址
log.to = "console"               # [可选] 日志配置, 通过打印的方式输出日志
auth.token = "password"          # [可选] token 设置, frps 设置的 token, 其实就是密码

command to create container

sudo docker run -d \                        
--network host \
-v /Users/aaa/Downloads/frpc.toml:/etc/frp/frpc.toml \
--name frpc \
snowdreamtech/frpc
sudo docker run -d \                        
--network host \
-v /Users/aaa/Downloads/frpc.toml:/etc/frp/frpc.toml \
--name frpc \
snowdreamtech/frpc:0.58.1
sudo docker run -d \                        
--network host \
-v /Users/aaa/Downloads/frpc.toml:/etc/frp/frpc.toml \
--name frpc \
snowdreamtech/frpc:0.58.1

I have big trouble....., in china, i set up aliyun mirror to download docker image, but pull frpc:0.58.1 failed....
is there any way to pull your image ?

https://github.com/snowdreamtech/frp/pkgs/container/frpc
https://github.com/snowdreamtech/frp/pkgs/container/frps

docker pull ghcr.io/snowdreamtech/frpc:0.58.1
docker pull ghcr.io/snowdreamtech/frps:0.58.1
docker pull ghcr.io/snowdreamtech/frps:0.58.1

Thanks so much.