无法访问kibana站点

sdnqo3pr  于 2021-06-14  发布在  ElasticSearch
关注(0)|答案(3)|浏览(323)

所以我正在尝试安装一个wazuh服务器,安装之后我收到了一条消息 This site can't be reached . 当我尝试用这样的端口 curl ip时: curl http://192.168.1.108:5601它没有显示任何内容,甚至没有错误。kibana作为一个服务运行,甚至提供绿色信号和http链接来访问面板。
Kibanayml:


# Kibana is served by a back end server. This setting specifies the port to use.

# server.port: 5601

# ops.interval: 5000

# Specifies locale to be used for all localizable strings, dates and number formats.

# Supported languages are the following: English - en , by default , Chinese - zh-CN .

# i18n.locale: "en"

# server.ssl.key: /path/to/your/server.key

# Optional settings that provide the paths to the PEM-format SSL certificate and key files.

# These files are used to verify the identity of Kibana to Elasticsearch and are required when

# xpack.security.http.ssl.client_authentication in Elasticsearch is set to required.

# elasticsearch.ssl.certificate: /path/to/your/client.crt

# elasticsearch.ssl.key: /path/to/your/client.key

# Optional setting that enables you to specify a path to the PEM file for the certificate

# authority for your Elasticsearch instance.

# elasticsearch.ssl.certificateAuthorities: [ "/path/to/your/CA.pem" ]

# To disregard the validity of SSL certificates, change this setting's value to 'none'.

# elasticsearch.ssl.verificationMode: full

# Time in milliseconds to wait for Elasticsearch to respond to pings. Defaults to the value of

# the elasticsearch.requestTimeout setting.

# elasticsearch.pingTimeout: 1500

# Time in milliseconds to wait for responses from the back end or Elasticsearch. This value

# must be a positive integer.

# elasticsearch.requestTimeout: 30000

# List of Kibana client-side headers to send to Elasticsearch. To send *no* client-side

# headers, set this value to [] (an empty list).

# elasticsearch.requestHeadersWhitelist: [ authorization ]

# Header names and values that are sent to Elasticsearch. Any custom headers cannot be overwritten

# by client-side headers, regardless of the elasticsearch.requestHeadersWhitelist configuration.

# elasticsearch.customHeaders: {}

# Time in milliseconds for Elasticsearch to wait for responses from shards. Set to 0 to disable.

# elasticsearch.shardTimeout: 30000

# Time in milliseconds to wait for Elasticsearch at Kibana startup before retrying.

# elasticsearch.startupTimeout: 5000

# Logs queries sent to Elasticsearch. Requires logging.verbose set to true.

# elasticsearch.logQueries: false

# Specifies the path where Kibana creates the process ID file.

# pid.file: /var/run/kibana.pid

# Enables you to specify a file where Kibana stores log output.

# logging.dest: stdout

# Set the value of this setting to true to suppress all logging output.

# logging.silent: false

# Set the value of this setting to true to suppress all logging output other than error messages.

# logging.quiet: false

# Set the value of this setting to true to log all events, including system usage information

# and all requests.

logging.verbose: true

# Set the interval in milliseconds to sample system and process performance

# metrics. Minimum is 100ms. Defaults to 5000.

# ops.interval: 5000

# Specifies locale to be used for all localizable strings, dates and number formats.

# Supported languages are the following: English - en , by default , Chinese - zh-CN .

# i18n.locale: "en"

已更改参数elasticsearch.yml

cluster.name: my-application

cluster.initial_master_nodes: ["node-1"]

node.name: node-1

已更改参数filebeat.yml

output.elasticsearch.hosts: ['http://192.168.1.108:9200']

我按照以下指南进行了设置:https://documentation.wazuh.com/3.13/installation-guide/installing-wazuh-manager/linux/ubuntu/wazuh_server_packages_ubuntu.html
curl http://192.168.1.108:9200给出以下信息:

{
  "name" : "node-1",
  "cluster_name" : "my-application",
  "cluster_uuid" : "VbrZJIilQgSDPZSdvKKSjA",
  "version" : {
    "number" : "7.9.2",
    "build_flavor" : "default",
    "build_type" : "deb",
    "build_hash" : "d34da0ea4a966c4e49417f2da2f244e3e97b4e6e",
    "build_date" : "2020-09-23T00:45:33.626720Z",
    "build_snapshot" : false,
    "lucene_version" : "8.6.2",
    "minimum_wire_compatibility_version" : "6.8.0",
    "minimum_index_compatibility_version" : "6.0.0-beta1"
  },
  "tagline" : "You Know, for Search"
}
qyyhg6bp

qyyhg6bp1#

尝试添加 server.host: 192.168.1.108 在kibana.yml配置文件中。
服务器主机:
此设置指定后端服务器的主机。要允许远程用户连接,请将该值设置为kibana服务器的ip地址或dns名称。默认值:“localhost”
从这里开始

g9icjywg

g9icjywg2#

我想你应该在服务器上更改端口:5601,然后从防火墙检查端口。可能这个端口没有打开。

mqkwyuun

mqkwyuun3#

通过设置 server.host 在kibana.yml文件中,您可以设置kibana是否可以通过网络查看。如果您将此设置为您的ip或 0.0.0.0 你可以通过网络看到,而不仅仅是从本地看到。

相关问题