无法从 Windows 主机连接到 WSL2 上的本地服务器
Unable to connect to local server on WSL2 from Windows host
我有一个 Python3 项目使用 waitress
在 WSL2/Ubuntu 20 上的本地主机上服务。我从 VSCode 远程启动服务器但我无法连接到它来自 Windows 上的浏览器,使用地址 http://127.0.0.1:5998 或 http://localhost:5998,无法连接错误。我找不到它有什么问题,感谢您的帮助。
Python 服务器:
@app.route('/')
def index():
return 'Success'
...
if __name__ == '__main__':
from waitress import serve
process_count = multiprocessing.cpu_count()
serve(app, host="0.0.0.0", port=5998, threads=process_count)
我看到它在 WSL 上收听:
> sudo lsof -i -P -n | grep LISTEN
python3 1263 xxx 8u IPv4 39138 0t0 TCP *:5998 (LISTEN)
我也尝试将 127.0.0.1 作为 serve() ip 而不是 0.0.0.0 但没有帮助。
我在 Windows 防火墙中有一个规则:
> Get-NetFirewallRule -DisplayName WSL
Name : {9c5c5f2b-a9c7-42b7-82ac-f0c2b1819103}
DisplayName : WSL
Description :
DisplayGroup :
Group :
Enabled : True
Profile : Any
Platform : {}
Direction : Inbound
Action : Allow
EdgeTraversalPolicy : Block
LooseSourceMapping : False
LocalOnlyMapping : False
Owner :
PrimaryStatus : OK
Status : The rule was parsed successfully from the store. (65536)
EnforcementStatus : NotApplicable
PolicyStoreSource : PersistentStore
PolicyStoreSourceType : Local
我已经使用 netstat -o
检查了 Windows 上正在使用的端口,但似乎没有任何端口在使用端口 5998。
我已经通过在 Windows 上添加端口转发解决了这个问题。
运行 WSL 上的这个:
ifconfig
eth0
条目上的 inet IP 是您的 WSL IP。
运行 这个命令在 Windows:
netsh interface portproxy add v4tov4 listenport=<port> listenaddress=0.0.0.0 connectport=<port> connectaddress=<your WSL IP>
在此之后,我可以在 Windows.
上使用浏览器中的 localhost:<port>
或 127.0.0.1:<port>
或 <WSL IP>:<port>
进行连接
您可以使用 netsh interface portproxy show all
命令列出当前端口代理。
您可能需要 add a firewall rule 用于 Windows 上的端口。
更多信息:https://github.com/microsoft/WSL/issues/4150#issuecomment-927091364
我有一个 Python3 项目使用 waitress
在 WSL2/Ubuntu 20 上的本地主机上服务。我从 VSCode 远程启动服务器但我无法连接到它来自 Windows 上的浏览器,使用地址 http://127.0.0.1:5998 或 http://localhost:5998,无法连接错误。我找不到它有什么问题,感谢您的帮助。
Python 服务器:
@app.route('/')
def index():
return 'Success'
...
if __name__ == '__main__':
from waitress import serve
process_count = multiprocessing.cpu_count()
serve(app, host="0.0.0.0", port=5998, threads=process_count)
我看到它在 WSL 上收听:
> sudo lsof -i -P -n | grep LISTEN
python3 1263 xxx 8u IPv4 39138 0t0 TCP *:5998 (LISTEN)
我也尝试将 127.0.0.1 作为 serve() ip 而不是 0.0.0.0 但没有帮助。
我在 Windows 防火墙中有一个规则:
> Get-NetFirewallRule -DisplayName WSL
Name : {9c5c5f2b-a9c7-42b7-82ac-f0c2b1819103}
DisplayName : WSL
Description :
DisplayGroup :
Group :
Enabled : True
Profile : Any
Platform : {}
Direction : Inbound
Action : Allow
EdgeTraversalPolicy : Block
LooseSourceMapping : False
LocalOnlyMapping : False
Owner :
PrimaryStatus : OK
Status : The rule was parsed successfully from the store. (65536)
EnforcementStatus : NotApplicable
PolicyStoreSource : PersistentStore
PolicyStoreSourceType : Local
我已经使用 netstat -o
检查了 Windows 上正在使用的端口,但似乎没有任何端口在使用端口 5998。
我已经通过在 Windows 上添加端口转发解决了这个问题。
运行 WSL 上的这个:
ifconfig
eth0
条目上的 inet IP 是您的 WSL IP。
运行 这个命令在 Windows:
netsh interface portproxy add v4tov4 listenport=<port> listenaddress=0.0.0.0 connectport=<port> connectaddress=<your WSL IP>
在此之后,我可以在 Windows.
上使用浏览器中的localhost:<port>
或 127.0.0.1:<port>
或 <WSL IP>:<port>
进行连接
您可以使用 netsh interface portproxy show all
命令列出当前端口代理。
您可能需要 add a firewall rule 用于 Windows 上的端口。
更多信息:https://github.com/microsoft/WSL/issues/4150#issuecomment-927091364