prometheus安装部署

Prometheus环境搭建

1 安装prometheus

1.1将prometheus安装包上传到服务器的/usr/local目录下,进行解压

[root@prometheus-1 local]# ls

bin  etc  games  include  lib  lib64  libexec  prometheus  sbin  share  src

[root@prometheus-1 local]# pwd

/usr/local

1.2进行环境验证

[root@prometheus-1 prometheus]# ./prometheus --version

prometheus, version 2.6.0 (branch: HEAD, revision: dbd1d58c894775c0788470944b818cc724f550fb)

  build user:       root@bf5760470f13

  build date:       20181217-15:14:46

  go version:       go1.11.3

1.3修改配置文件prometheus.yml

修改以后内容如下所示

global:

alerting:

  alertmanagers:

  - static_configs:

    - targets:

rule_files:

scrape_configs:

  - job_name: 'prometheus'

    static_configs:

    - targets: ['192.168.101.21:9090', '192.168.101.37:9090', '192.168.101.32:9090']

  - job_name: 'node-1'

    static_configs:

    - targets: ['192.168.101.33:9100']

      labels:

        instance: server1


  - job_name: 'node-2'

    static_configs:

    - targets: ['192.168.101.39:9100']

      labels:

        instance: server2

1.4 设置用户

添加用户,后期使用此账号启动服务

groupadd prometheus

useradd -g prometheus -s /sbin/nologin prometheus

赋权

chown -R prometheus:prometheus /usr/local/prometheus/

创建prometheus运行数据目录

mkdir -p /var/lib/prometheus

chown -R prometheus:prometheus /var/lib/prometheus/

设置开机启动

touch /usr/lib/systemd/system/prometheus.service

chown prometheus:prometheus /usr/lib/systemd/system/prometheus.service

修改新创建的prometheus.service文件

[root@prometheus-1 prometheus]# cat /usr/lib/systemd/system/prometheus.service

[Unit]

Description=Prometheus

Documentation=https://prometheus.io/

After=network.target

[Service]

# Type设置为notify时,服务会不断重启

Type=simple

User=prometheus

# --storage.tsdb.path是可选项,默认数据目录在运行目录的./dada目录中

ExecStart=/usr/local/prometheus/prometheus --config.file=/usr/local/prometheus/prometheus.yml --storage.tsdb.path=/var/lib/prometheus

Restart=on-failure

[Install]

WantedBy=multi-user.target

开启服务

systemctl start prometheus

systemctl status prometheus

systemctl enable prometheus

2 安装node_exporter

添加用户,后期使用此账号启动服务

groupadd prometheus

useradd -g prometheus -s /sbin/nologin prometheus

赋权

chown -R prometheus:prometheus /usr/local/node_exporter/

修改配置文件/usr/lib/systemd/system/node_exporter.service

修改后内容如下所示

[root@nodeexport-1 ~]# cat /usr/lib/systemd/system/node_exporter.service

[Unit]

Description=node_exporter

Documentation=https://prometheus.io/

After=network.target

[Service]

Type=simple

User=prometheus

ExecStart=/usr/local/node_exporter/node_exporter

Restart=on-failure

[Install]

WantedBy=multi-user.target

开启服务

systemctl start node_exporter

systemctl status node_exporter

systemctl enable node_exporter

3 安装grafana

[root@prometheus-1 ~]# rpm -ivh grafana-5.4.1-1.x86_64.rpm --nodeps

warning: grafana-5.4.1-1.x86_64.rpm: Header V4 RSA/SHA1 Signature, key ID 24098cb6: NOKEY

Preparing...                          ################################# [100%]

Updating / installing...

   1:grafana-5.4.1-1                  ################################# [100%]

登录http://192.168.101.45:3000,进入grafana首界面

Grafana导入dashboard.json文件

文件下载地址:

http://blog.csdn.net/ywd1992/article/details/85989259

prometheus节点

在安装mysqld-exporter过程中,需要注意在prometheus节点安装mysql相应的客户端

安装如下所示

mysql-community-client-5.7.24-1.el7.x86_64.rpm

mysql-community-common-5.7.24-1.el7.x86_64.rpm

mysql-community-libs-5.7.24-1.el7.x86_64.rpm

在安装mysql相应安装包的过程中需要卸载redhat自带的包,如下所示

rpm -e mariadb-libs-5.5.60-1.el7_5.x86_64 –nodeps

mysql节点

在/usr/local/mysqld_exporter-0.11.0.linux-amd64目录下配置配置文件.my.conf

内容如下所示:

[client]

user=root

password=admin123

安装好mysql以后可以通过在/etc/my.cnf配置文件中添加如下内容从而实现可以不通过密码登录数据库

在[mysqld]下添加如下内容

skip-grant-tables

登录到数据库以后可以通过如下命令设置数据库密码

update  mysql.user set authentication_string=password(‘admin123’) where user=’root’;

flush privileges;使修改密码指令立即生效

此刻可以修改去掉在my.cnf配置文件中添加的内容,重启数据库,此刻可以通过设置的密码进行登录。

设置prometheus远程登录mysql节点的权限

GRANT  ALL  PRIVILEGES  ON  *.* TO  ‘root’@ ’IP’  IDENTIFIED BY  ‘admin123’  WITH GRANT OPTION.

如果启动mysql_exporter过程中报错数据库登录密码过期,可以采用如下方法解决:

alter user ‘root’@’localhost’ identified by ‘admin123’;

flush privileges;

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 216,240评论 6 498
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 92,328评论 3 392
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 162,182评论 0 353
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 58,121评论 1 292
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 67,135评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 51,093评论 1 295
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 40,013评论 3 417
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,854评论 0 273
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 45,295评论 1 310
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,513评论 2 332
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,678评论 1 348
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,398评论 5 343
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,989评论 3 325
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,636评论 0 22
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,801评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,657评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,558评论 2 352

推荐阅读更多精彩内容

  • Prometheus Server Prometheus Server 本身也将以容器的方式运行在 host 19...
    心水Diana阅读 7,806评论 0 1
  • mysqladmin -u root -p oldpass password newpass mysqladmin...
    不排版阅读 2,162评论 0 3
  • Linux 对大多数的驱动作了分类:块设备驱动、网络驱动、I 2 C 驱动、USB 驱动、SPI 驱动、音频驱动等...
    不配野心阅读 2,982评论 0 0
  • wake之旅接近尾周了。我心里有高兴,也有隐隐的失落。在这期间,高兴我认识了这么多可以交一辈子的朋友,失落的也不知...
    晓茂阅读 114评论 4 3
  • 今天心里突然有些崩溃,我不知道是不是别人也有这种感觉:有了小孩以后突然有人到中年的感觉,仿佛有些神经质,上一秒心情...
    奇异的果果阅读 139评论 0 0