- 从根本上来说,这如何在不存在的端点上“神奇地”监听?
我在minikube中运行一个nginx hello-world。所以..
$ mk service hello-minikube --url
http://192.168.99.101:30031
BTW会在该ep自动启动浏览器。很好,您可以手动执行。
而且,现在只要卷曲就可以正常工作了..
$ curl -i -H "Accept: application/json" -H "Content-Type: application/json" \
http://192.168.99.101:30031/
我没有显示返回的内容,但请相信它的功能与浏览器显示的功能相同。
现在..
$ netstat -an | grep 30031 #### only gives the dying connection and ..
$ netstat -an | grep 192.168.99.101 #### likewise nothing LISTENing here.
上面显示的连接是在http请求之后临时创建的。
一分钟左右后,它们消失了,然后什么也没有了。
为何如此?
http://192.168.99.101:30031上应该有一个永久的LISTEN
如果该端点上没有监听任何内容,浏览器/卷曲将如何从
http://192.168.99.101:30031获得响应?