「Kibana」- 安装 @20210227

インストール

インストールは、各プラットフォームのインストール方法とさまざまなパッケージのインストール方法を紹介した、非常に詳細な公式マニュアル「Kibanaのインストール」を参照してください

Debian8.2およびKibana6.5.0

#!/ bin / sh 

#最初のステップは、Elasticsearch 6.50 
wget -qO-https://artifacts.elastic.co/GPG-KEY-elasticsearch | apt-key add- 
apt-get installaptのインストール中に実行されました-transport-https 
echo "deb https://artifacts.elastic.co/packages/6.x/apt stable main" | tee -a /etc/apt/sources.list.d/elastic-6.x.list 
apt -get update 
Kibana6.5.0をインストールします
apt- getinstall kibana = 6.5.0

CentOS7.4およびKibana7.5.1

#!/ bin / sh 

rpm --import https://artifacts.elastic.co/GPG-KEY-elasticsearch 
cat> /etc/yum.repos.d/kibana.repo << EOF 
[kibana-7.x] 
name = 7.xパッケージの
Kibanaリポジトリbaseurl = https://artifacts.elastic.co/packages/7.x/yum 
gpgcheck = 1 
gpgkey = https://artifacts.elastic.co/GPG-KEY-elasticsearch 
enabled = 1 
autorefresh = 1 
type = rpm-md 
EOF 

yum install kibana

構成

#grep -v -E '#| ^ $' / etc / kibana / kibana.yml 
server.port:5601 
server.host: "0.0.0.0" elasticsearch.url 
: "http://10.10.50.220:9200" 
elasticsearch .username: "user 
" elasticsearch.password: "dfws.2018"

参照

Kibanaを複数のホスト名/ IPにバインドする方法

おすすめ

転載: blog.csdn.net/u013670453/article/details/114176904