首页 > 解决方案 > ping 本地主机不起作用

问题描述

弹性搜索==7.10.0

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

注意:我知道弹性搜索具有内置的 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.

有人可以帮助我吗?

标签: elasticsearchkibanaping

解决方案


可以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!

推荐阅读