私は、CentOS 7 Virtualbox Virtual Machineを使用して、Elasticsearch 5.xとKibana 5.xをインストールしました。すべての良い、両方のサービスはsuccessfulyを開始しました。 VM上でcurl http://192.168.1.192:5601
を実行するとすべて正常に動作しますが、ホストからKibana Web Interfaceにアクセスしようとすると、これは不可能です。 VMのLANでアクセスできないKibana 5.x
ネットワークインターフェイスは、wlan0をホストするbridbeに設定したホストとVM AR同じルータに接続されたホストのIP:192.168.1.190
、VMのIP:私のkibana.ymlで192.168.1.192
私が持っている:
をserver.port: 5601
# Specifies the address to which the Kibana server will bind. IP addresses and host names are both valid values.
# The default is 'localhost', which usually means remote machines will not be able to connect.
# To allow connections from remote users, set this parameter to a non-loopback address.
server.host: "0.0.0.0"
# Enables you to specify a path to mount Kibana at if you are running behind a proxy. This only affects
# the URLs generated by Kibana, your proxy is expected to remove the basePath value before forwarding requests
# to Kibana. This setting cannot end in a slash.
#server.basePath: ""
# The maximum payload size in bytes for incoming server requests.
#server.maxPayloadBytes: 1048576
# The Kibana server's name. This is used for display purposes.
server.name: "elkmaster1"
# The URL of the Elasticsearch instance to use for all your queries.
elasticsearch.url: "http://localhost:9200"
Selinuxは無効ですが、firewalldは無効になっており、そのVMにはファイアウォールソフトウェアがインストールされていません。 [また、私はホストからのVMにsshすることができます]
私は間違って何をしていますか?
私は、任意のファイアウォールソフトウェアが – kitz
が有効になっていないあなたはよろしいですか?開いているポートのVM(OS)からテストします。 Windowsの –
はこのツールを使用できます:https://techtalk.gfi.com/scan-open-ports-in-windows-a-quick-guide/ –