作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在 WSL2 上启动了一个简单的 http 服务器,以在 localhost:8081 提供简单的 HTML 页面。
我想通过主机上的 localhost:8081(或任何 URL)访问它。
我按照说明操作 https://learn.microsoft.com/en-us/windows/wsl/compare-versions .
我使用了ip addr | grep eth0
在 inet 下找到 IP,然后我在 Python 和 Julia 中启动了一个简单的 HTTP 服务器
import http.server
import socketserver
PORT = 8000
Handler = http.server.SimpleHTTPRequestHandler
httpd = socketserver.TCPServer(("", PORT), Handler)
print("serving at port", PORT)
httpd.serve_forever()
上面的 python 版本没有问题,但 Julia 服务器就是不工作。
using HTTP
using HTTP: Sockets, @ip_str
HTTP.serve() do request::HTTP.Request
@show request
@show request.method
@show HTTP.header(request, "Content-Type")
@show HTTP.payload(request)
try
return HTTP.Response("Hello")
catch e
return HTTP.Response(404, "Error: $e")
end
end
它为 HTTP 流量打开端口 8000 和 8081。然后我去了主机并做了 localhost:8081
和 $WSL2VMIP:8081
均无效。
最佳答案
对于 Julia,您似乎需要提供 WSL2 VM 的 IP。使用 ip addr | 获取 IP grep eth0
并寻找像 172.69.13.20/20
这样的 IP 并设置 myip = ip"172.69.13.20"
请注意,使用 ip"0.0.0.0"
很方便,但可能不安全(例如在公共(public)咖啡馆),因此请谨慎使用。
using HTTP
using HTTP: @ip_str
HTTP.serve(myip) do request::HTTP.Request
@show request
@show request.method
@show HTTP.header(request, "Content-Type")
@show HTTP.payload(request)
try
return HTTP.Response("Hello")
catch e
return HTTP.Response(404, "Error: $e")
end
end
关于http - Julia:如何让 HTTP.jl 从 WSL2 VM 的 ip 服务?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63432731/
我是一名优秀的程序员,十分优秀!