fluentd + elasticsearch5 + kibana4 で環境を構築してアクセスすると、エラーになりますが、解消方法がわかりません。ご教授いただけると嬉しいです。
〇エラー内容
ui settings Elasticsearch plugin is red
plugin:elasticsearch@5.6.16 Unable to connect to Elasticsearch at http://192.168.33.15:9200.
インストールは、下記の手順で行いました。
(CentOS Linux release 7.7.1908 (Core))
yum update
〇apache
sudo yum install httpd sudo systemctl start httpd
〇fluentd
curl -L https://toolbelt.treasuredata.com/sh/install-redhat-td-agent3.sh | sh sudo systemctl start td-agent sudo systemctl enable td-agent sudo td-agent-gem update sudo td-agent-gem install fluent-plugin-filter sudo td-agent-gem install fluent-plugin-forest sudo td-agent-gem install fluent-plugin-config-expander sudo td-agent-gem install fluent-plugin-elasticsearch sudo td-agent-gem install fluent-plugin-typecast sudo td-agent-gem install fluent-plugin-parser
sudo vi /etc/td-agent/td-agent.conf
〇/etc/td-agent/td-agent.confの内容
## built-in TCP input ## @see http://docs.fluentd.org/articles/in_forward <source> @type forward @id input_forward </source> ## built-in UNIX socket input #<source> # type unix #</source> # HTTP input # POST http://localhost:8888/<tag>?json=<json> # POST http://localhost:8888/td.myapp.login?json={"user"%3A"me"} # @see http://docs.fluentd.org/articles/in_http <source> @type http @id input_http port 8888 </source> ## live debugging agent <source> @type debug_agent @id input_debug_agent bind 127.0.0.1 port 24230 </source> ##### ログ収集側の設定 <source> # データ(ログ)の取得方法 tailが無難 type tail # 起動前に作成(apacheの初回起動をしておく) path /var/log/httpd/access_log # 出力先のログ pos_file /var/log/td-agent/buffer/access_log.pos format none # タグ付け タグ毎に処理を切り分ける tag apache.access </source> # 集約サーバへ送信(今回は同一サーバなのでコメントアウト) #<match *.**> # type forward # retry_limit 5 # # 5秒ごとに送信(検証用 60s,300sくらいが無難?) # flush_intarval 5s # # 送信先サーバ・ポートを指定 # <server> # host 127.0.0.1 # port 24224 # </server> #</match> ##### 集約サーバ側設定 #<source> # type forward # port 24224 #</source> # こんな感じでタグごとに処理を分けられる #<match apache.access> <match *.**> type elasticsearch host localhost # elasticsearchの標準待ち受けポート port 9200 logstash_format true logstash_prefix apache-access flush_intarval 30s </match>
sudo systemctl start td-agent sudo systemctl status td-agent
〇elasticsearch
sudo vi /etc/yum.repos.d/elasticsearch.repo
〇/etc/yum.repos.d/elasticsearch.repoの内容
[elasticsearch-5.x] name=Elasticsearch repository for 5.x packages baseurl=https://artifacts.elastic.co/packages/5.x/yum gpgcheck=1 gpgkey=https://artifacts.elastic.co/GPG-KEY-elasticsearch enabled=1 autorefresh=1 type=rpm-md
sudo yum install elasticsearch sudo systemctl start elasticsearch.service sudo systemctl enable elasticsearch.service
〇kibana
sudo vi /etc/yum.repos.d/erasticsearch.repo
〇/etc/yum.repos.d/erasticsearch.repoの内容
[kibana-5.x] name=Kibana repository for 5.x packages baseurl=https://artifacts.elastic.co/packages/5.x/yum gpgcheck=1 gpgkey=https://artifacts.elastic.co/GPG-KEY-elasticsearch enabled=1 autorefresh=1 type=rpm-md
sudo yum install kibana
sudo vi /etc/kibana/kibana.yml
〇/etc/kibana/kibana.ymlの内容
server.host: 0.0.0.0 elasticsearch.url: "http://192.168.33.10:9200"
sudo systemctl start kibana.service sudo systemctl enable kibana.service
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。