繁体   English   中英

ping 本地主机不 function

[英]Pinging local host doesn't function

弹性搜索==7.10.0

我希望 ping 本地主机 '5601' 以确保 kibana 是否正在运行,但显然无法 ping。

注意:我知道弹性搜索有内置的 function 来 ping,但我仍然希望在我的项目中使用 cmd 行来 ping。

C:\User>ping 5601

Pinging f00:b00:f00:b00 with 32 bytes of data:
PING: transmit failed. General failure.
PING: transmit failed. General failure.
PING: transmit failed. General failure.
PING: transmit failed. General failure.

Ping statistics for f00:b00:f00:b00:
    Packets: Sent = 4, Received = 0, Lost = 4 (100% loss)

C:\User>ping http://localhost:5601
Ping request could not find host http://localhost:5601. Please check the name and try again.

有人可以帮助我吗?

您可以使用netstat检查 Kibana UI 暴露的端口,5061 是否处于 LISTEN 模式

$ netstat -tlpn | grep 5601
(Not all processes could be identified, non-owned process info
 will not be shown, you would have to be root to see it all.)
tcp6       0      0 :::5601                 :::*                    LISTEN      -  

或者,如果您想建立到目标端口 5601 的连接,您可以使用nc

$ nc -vz localhost 5601
Connection to localhost 5601 port [tcp/*] succeeded!

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM