Ubuntu LinuxでPrometheusモニタリングインストールを実行する方法を学びたいですか? このチュートリアルでは、Ubuntu LinuxにPrometheusをインストールする方法と、初めてPrometheus Web管理インターフェースにアクセスする方法を説明します。
•Ubuntuのバージョン:18.04
•プロメテウスバージョン:2.8.0
プロメテウスとは何ですか?
プロメテウスは、メトリクスを削ることによって監視対象からメトリクスを収集することができるオープンソースのモニタリングプラットフォームです。
収集したデータを保存した後、ネットワーク管理者はそのクエリ言語を使用してそれをクエリし、すべての結果をグラフにレンダリングすることができます。
Prometheusには、どこからでもアクセスできるWebサーバーが付属しています。
プロメテウスチュートリアル:
このページでは、Prometheusチュートリアルのリストへのクイックアクセスを提供します。
チュートリアル – Prometheusインストール
Linuxコンソールで、Prometheusユーザーアカウントを作成します。
# groupadd –system prometheus
# useradd -s /bin/false -r -g prometheus prometheus
Prometheusに必要なディレクトリを作成します。
# mkdir /etc/prometheus
# mkdir /var/lib/prometheus
Prometheusのダウンロードを実行してください。
# mkdir /downloads/prometheus -p
# cd /downloads/prometheus
# wget https://github.com/prometheus/prometheus/releases/download/v2.8.0/prometheus-2.8.0.linux-amd64.tar.gz
Prometheus監視パッケージを解凍してインストールします。
# tar -zxvf prometheus-2.8.0.linux-amd64.tar.gz
# cd prometheus-2.8.0.linux-amd64/
# install prometheus /usr/local/bin/
# install promtool /usr/local/bin/
# mv consoles /etc/prometheus/
# mv console_libraries /etc/prometheus/
Prometheus設定ファイルを作成します。
# cd /etc/prometheus
# vi prometheus.yml
これがPrometheus.ymlファイルの内容です。
Prometheusインストールファイルに正しい権限を設定してください。
# chown prometheus:prometheus /usr/local/bin/prometheus
# chown prometheus:prometheus /usr/local/bin/promtool
# chown prometheus:prometheus /var/lib/prometheus -R
# chown prometheus:prometheus /etc/prometheus -R
# chmod -R 775 /etc/prometheus/ /var/lib/prometheus/
以下のコマンドを使用してPrometheusを手動で起動します。
# prometheus –config.file /etc/prometheus/prometheus.yml –storage.tsdb.path /var/lib/prometheus/ –web.console.templates=/etc/prometheus/consoles –web.console.libraries=/etc/prometheus/console_libraries
以下のログメッセージが表示されます。
プロメテウス起動スクリプト。
Prometheus起動スクリプトを作成します。
# vi /etc/systemd/system/prometheus.service
これはprometheus.serviceファイルの内容です。
[Unit]
Description=Prometheus
Wants=network-online.target
After=network-online.target
[Service]
User=prometheus
Group=prometheus
Type=simple
ExecStart=/usr/local/bin/prometheus –config.file /etc/prometheus/prometheus.yml \
–storage.tsdb.path /var/lib/prometheus/ –web.console.templates=/etc/prometheus/consoles \
–web.console.libraries=/etc/prometheus/console_libraries
[Install]
WantedBy=multi-user.target
SyslogIdentifier=prometheus
Restart=always
コンピュータの起動中にPrometheusサービスが開始されるようにします。
# chown prometheus:prometheus /var/lib/prometheus -R
# chmod 775 /var/lib/prometheus -R
# systemctl daemon-reload
# systemctl enable prometheus
# systemctl start prometheus
PrometheusサービスはTCPポート9090でlistenを開始します。
Prometheusサービスの状態を確認するには、次のコマンドを使用します。
# systemctl status prometheus
これはPrometheusサービスステータス出力の例です
● prometheus.service – Prometheus
Loaded: loaded (/etc/systemd/system/prometheus.service; enabled; vendor preset: enabled)
Active: active (running) since Wed 2019-03-27 02:59:44 UTC; 22h ago
Main PID: 29882 (prometheus)
Tasks: 8 (limit: 1152)
CGroup: /system.slice/prometheus.service
└─29882 /usr/local/bin/prometheus –config.file /etc/prometheus/prometheus.yml –storage.tsdb.path /var/lib/prometheus/ –web.console.templates=/etc/prometheus/consoles –web.console.lib
プロメテウスダッシュボードアクセス
ブラウザを開き、サーバのIPアドレスと9090を入力します。
この例では、ブラウザに次のURLが入力されています。
•http://34.216.84.149:9090
Prometheus Webインターフェースが表示されるはずです。
おめでとうございます。 Ubuntu LinuxにPrometheusをインストールしました。
Leave A Comment
You must be logged in to post a comment.