Кибана сайт не может быть достигнут

Итак, я пытаюсь настроить сервер Wazuh, после его установки я получил сообщениеThis site can't be reached. Когда я пытаюсь скрутить IP-адрес с помощью такого порта: curl http://192.168.1.108:5601, он ничего не показывает, даже ошибки. Kibana работает как служба и даже дает зеленый сигнал и http-ссылку для доступа к панели.

kibana.yml:

# 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"
}

3 ответа

Установив server.hostв вашем файле kibana.yml вы можете указать, что кибана будет видна через сеть или нет. Если вы установите это как свой IP или на 0.0.0.0 вы делаете возможным быть видимым через сеть, а не только с локального.

Попробуй добавить server.host: 192.168.1.108внутри конфигурационного файла kibana.yml.

server.host:

Этот параметр указывает хост внутреннего сервера. Чтобы разрешить удаленным пользователям подключаться, установите значение IP-адреса или DNS-имени сервера Kibana. По умолчанию: "localhost"

От сюда

Я думаю, вам следует изменить # на #server.port: 5601 и проверить порт в брандмауэре. Может, этот порт не открыт.

Другие вопросы по тегам