溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

如何正確的安裝與使用Prometheus

發(fā)布時間:2021-01-25 15:41:01 來源:億速云 閱讀:265 作者:Leah 欄目:開發(fā)技術(shù)

如何正確的安裝與使用Prometheus?很多新手對此不是很清楚,為了幫助大家解決這個難題,下面小編將為大家詳細講解,有這方面需求的人可以來學習下,希望你能有所收獲。

1. 從官網(wǎng)選擇Prometheus版本進行下載

官網(wǎng)地址>> https://github.com/prometheus/prometheus/releases/

2. 實驗安排

在主機192.168.153.137上安裝prometheus監(jiān)控192.168.153.138上的mysql服務和主機狀態(tài)

3. 上傳軟件包到137服務器并配置

3.1 將軟件包解壓到 /usr/local 目錄下

tar xzf prometheus-2.24.1.linux-amd64.tar.gz -C /usr/local/

3.2 給目錄創(chuàng)建軟鏈接

ln -s /usr/local/prometheus-2.24.1.linux-amd64/ /usr/local/prometheus

3.3 切換到目錄下

cd /usr/local/prometheus

3.4 修改配置文件 prometheus.yml,配置要監(jiān)控的項

scrape_configs:
 # The job name is added as a label `job=<job_name>` to any timeseries scraped from this config.
 - job_name: 'prometheus'

 # metrics_path defaults to '/metrics'
 # scheme defaults to 'http'.

 static_configs:
 - targets: ['localhost:9090']
 #監(jiān)控Linux主機狀態(tài)
 - job_name: 'linux'
 static_configs:
 - targets: ['192.168.153.138:9100']
 #監(jiān)控mysql服務狀態(tài)
 - job_name: 'mysql'
 static_configs:
 - targets: ['192.168.153.138:9104']

3.5 啟動promethus服務

./prometheus --config.file=prometheus.yml

3.6 瀏覽器輸入 IP:9090 查看

Status->Targets頁面下,我們可以看到我們配置的兩個Target,它們的State為DOWN。

如何正確的安裝與使用Prometheus

4. 配置138主機 4.1 下載exporter

下載地址>> https://github.com/prometheus/node_exporter/releases

4.2 將軟件包解壓到 /usr/local 目錄下

tar xzf node_exporter-1.0.1.linux-amd64.tar.gz -C /usr/local/

4.3 啟動exporter

nohup /usr/local/node_exporter-1.0.1.linux-amd64/node_exporter &

4.4 下載mysqld_exporter

下載地址>> https://github.com/prometheus/mysqld_exporter/releases

4.5 將軟件包解壓到 /usr/local 目錄下

tar xzf mysqld_exporter-0.12.1.linux-amd64.tar.gz -C /usr/local/

4.6 數(shù)據(jù)庫給mysqld_exporter授權(quán)

[root@host-138 ~]# mysql
Welcome to the MariaDB monitor. Commands end with ; or \g.

MariaDB [(none)]> GRANT REPLICATION CLIENT,PROCESS ON *.* TO 'mysql_monitor'@'localhost' identified by 'mysql_monitor';
Query OK, 0 rows affected (0.00 sec)

MariaDB [(none)]> GRANT SELECT ON *.* TO 'mysql_monitor'@'localhost';
Query OK, 0 rows affected (0.00 sec)

4.7 創(chuàng)建 .my.cnf 配置文件

vim /usr/local/mysqld_exporter-0.12.1.linux-amd64/.my.cnf

內(nèi)容為:

[client]
user=mysql_monitor
password=mysql_monitor

4.8 運行mysqld_exporter服務

nohup /usr/local/mysqld_exporter-0.12.1.linux-amd64/mysqld_exporter --config.my-cnf="/usr/local/mysqld_exporter-0.12.1.linux-amd64/.my.cnf" &

5. 在promethus頁面刷新Status->Targets頁面,可以看到配置的兩個Target的State為UP:

如何正確的安裝與使用Prometheus

看完上述內(nèi)容是否對您有幫助呢?如果還想對相關(guān)知識有進一步的了解或閱讀更多相關(guān)文章,請關(guān)注億速云行業(yè)資訊頻道,感謝您對億速云的支持。

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI