时间:2021-05-26
1. 从官网选择Prometheus版本进行下载
官网地址>> https://github.com/prometheus/prometheus/releases/
2. 实验安排
在主机192.168.153.137上安装prometheus监控192.168.153.138上的mysql服务和主机状态
3. 上传软件包到137服务器并配置
3.1 将软件包解压到 /usr/local 目录下
tar xzf prometheus-2.24.1.linux-amd64.tar.gz -C /usr/local/3.2 给目录创建软链接
ln -s /usr/local/prometheus-2.24.1.linux-amd64/ /usr/local/prometheus3.3 切换到目录下
cd /usr/local/prometheus3.4 修改配置文件 prometheus.yml,配置要监控的项
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'] #监控Linux主机状态 - job_name: 'linux' static_configs: - targets: ['192.168.153.138:9100'] #监控mysql服务状态 - job_name: 'mysql' static_configs: - targets: ['192.168.153.138:9104']3.5 启动promethus服务
./prometheus --config.file=prometheus.yml3.6 浏览器输入 IP:9090 查看
在Status->Targets页面下,我们可以看到我们配置的两个Target,它们的State为DOWN。
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 数据库给mysqld_exporter授权
[root@host-138 ~]# mysqlWelcome 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 创建 .my.cnf 配置文件
vim /usr/local/mysqld_exporter-0.12.1.linux-amd64/.my.cnf内容为:
[client]user=mysql_monitorpassword=mysql_monitor4.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:
5. 在137主机上安装部署grafana
安装教程链接>>https://www.jb51.net/article/204660.htm
5.1 添加promethus数据源 未完待续…
到此这篇关于Prometheus的安装和配置教程详解的文章就介绍到这了,更多相关Prometheus安装和配置内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
在上篇文章给大家介绍了Mysql5.7.19免安装版配置方法教程详解(64位),本文重点给大家介绍MySQL5.7.19安装目录下创建my.ini文件的方法,大
1.Prometheus介绍Prometheus是一套开源的系统监控报警框,相比Nagios或者Zabbix拥有如下优点1.1易管理性Prometheus:Pr
Nginx基础1.nginx安装2.nginx编译参数详解3.nginx安装配置+清缓存模块安装4.nginx+PHP5.55.nginx配置虚拟主机6.ngi
1.Prometheus是什么Prometheus是一个具有活跃生态系统的开源系统监控和告警工具包。一言以蔽之,它是一套开源监控解决方案。Prometheus主
参考文章ubuntu源码安装python3linux编译安装python3.6的教程详解准备工作安装工具sudoaptupdatesudoaptupgrades