首页 > Prometheus+Granfana

Prometheus+Granfana

 

二、虚机(服务器)方式

prometheus在虚机(服务器)中安装运行。

命令行启动

在安装完成以后,可以直接在命令行启动。启动方式通常是:

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

或者

nohup /opt/prometheus/prometheus &

如果要使用不同于9090的端口号,可以在命令行参数 --web.listen-address中指定,如:

./prometheus --config.file=prometheus.yml --web.listen-address=:8091 &

启动以后,访问http://xxx.xxx.xxx.xxx:8091,可以看到,端口确实更改了。

顺便说一下,要看prometheus的所有命令行参数,可以执行如下命令:

./prometheus -h

服务方式启动

安装完成以后,也可以把prometheus配置成自启动的服务,在其中的配置文件中也可以自定义prometheus的启动端口。步骤如下:

1. 在 /etc/systemd/system目录下创建新文件 prometheus.service,其中ExecStart字段指定启动参数时,设置自定义端口,内容如下:

 --web.listen-address=:8091

[Unit]

Description=Prometheus Monitoring System

Documentation=Prometheus Monitoring System



[Service]

ExecStart=/opt/proe/prometheus-2.3.1.linux-amd64/prometheus

  --config.file=/opt/proe/prometheus-2.3.1.linux-amd64/prometheus.yml --web.enable-admin-api

  --web.listen-address=:8091



[Install]

WantedBy=multi-user.target

2.执行命令:

systemctl start prometheus.service

如果prometheus在运行,有时候要执行如下命令:

systemctl daemon-reload

3.验证prometheus是否在新端口正常启动:

输入如下命令:

netstat -lntp | grep prometheus

[root@k8s-node-3 system]# netstat -lntp |grep prometheus

tcp6 0 0 :::8091 :::* LISTEN 11758/prometheus

可见端口已经是自定义的端口了。

访问:http://localhost:8099

 



参考文章:https://blog.csdn.net/palet/article/details/82988100

 

Grafana安装

下载安装

官网下载地址:https://grafana.com/grafana/download?platform=linux

wget https://dl.grafana.com/oss/release/grafana-6.2.5-1.x86_64.rpm 

sudo yum localinstall grafana-6.2.5-1.x86_64.rpm
 

 

默认安装路径

# Home=/usr/share/grafana

# Data=/var/lib/grafana

# Logs=/var/log/grafana

# Plugins=/var/lib/grafana/plugins

# Provisioning=/etc/grafana/provisioning

# PidFile=/var/run/grafana/grafana-server.pid

# Config=/etc/grafana/grafana.ini

# DefualtConfig=/usr/share/grafana/conf/defaults.ini





添加到服务并自启动

/sbin/chkconfig --add grafana-server

systemctl enable grafana-server.service



启动服务

service grafana-server start



安装 zabbix 插件

grafana-cli plugins install alexanderzobnin-zabbix-app





查看安装

rpm -qa | grep grafana

find / -name grafana



清除(卸载)

rpm -e grafana-5.3.2-1.x86_64

find / -name grafana -exec rm -rf {} ;

修改密码:

执行grafana-cli admin reset-admin-password yourpassword

则admin账号密码被重置为yourpassword



参考资料:https://blog.csdn.net/kk185800961/article/details/83515382

转载于:https://www.cnblogs.com/wx170119/p/11301741.html

更多相关:

  • XP出来已经2,3年了,很多朋友说自己的XP启动速度慢,现在虽然很多优化软件都可以提高开机速度,但还是有很多朋友说慢,如果有用了优化软件优化开机速度确还不满意开机速度的就看一下吧,也许能解决你的问题哦 1,首先是硬件配置。这点往往让忽略。其实硬件配置好了启动才能快的。第一是硬盘,一定要设置在第一主盘(master)。早期的硬盘跳线...

  • 如果你想在自己的IPhone上安装一个ipa文件,你的手机是无法正常安装的,(越狱,企业证书分发除外)但是我们可以通过以下步骤来实现,前提要有自己的开发者账号。接下来就看一下具体的步骤:第一步:用Xcode新建一个工程Bundle identifier不要和手机中已有的的APP重复,然后用自己的证书打包出ipa文件。第二步:获取mob...

  • 刚接触,啥子都不会,按着教程走需求:识别图片中的文字信息环境:windows系统开发语言:python3.5使用工具类:1.pyocr2.PIL3.tesseract-ocr步骤:1.pyocr网络通直接使用命令:pip install pyocr网络不通,转至https://pypi.python.org/pypi/pyocr/0....

  • 1、前言程序设计好以后会生成若干可执行文件和依赖文件。为了方便程序被更好地使用,需要将程序封装为一个安装程序。2、平台和环境Windows系统安装NSIS下载地址:https://nsis.sourceforge.io/DownloadNSIS(Nullsoft Scriptable Install System)是一个开源的 Win...

  • 展开全部 f=open('xxx','r',encoding='utf-8') file=f.readlines() f.close() f=open('xxx','w',encoding='utf-8') for i in len(file): ----file[i]=file[i].split(',') ----file[i][1...

  • PIL(Python Imaging Library)是Python中一个强大的图像处理库,但目前其只支持到Python2.7 pillow是PIL的一个分支,虽是分支但是其与PIL同样也具有很强的图像处理库。 Python3.7.0 如何安装pillow 此安装方法在windows7环境下完成: >>>win+r调出运行窗口,键入c...