标签:kill 安装 这一 启动服务 cmd highlight nbsp mct 数据库操作
#cmd /usr/local
今天讲一下如何监控服务器中的mysql数据库的性能
1.mysql启动
#service mysqld start #启动数据库 #service mysqld stop #关闭数据库 #service mysqld restart #重启数据库
2、进入 mysql
mysql -u root -p
#use mysql #GRANT ALL PRIVILEGES ON *.* TO ‘帐号‘@‘localhost‘ identified by ‘密码‘;
#flush privileges; #刷新
这里会给大家提供一个干净的普罗米修斯数据库的压缩包,大家解压就好
将压缩包放到服务器中
#cmd /usr/local
解压
#tar -zxvf prometheus-xxxxx
现在修改一下普罗米修斯的配置文件,在他的安装目录中有一个prometheus.yml文件,添加
- job_name: ‘linux‘
static_configs:
- targets: [‘localhost:9100‘]
这里大家注意一个地方,要严格按照普罗米修斯的格式,不要随意添加空格和缩进,不然会出错
增加这一步的意义是给普罗米修斯开放两个端口,用于Grafana监控
设置文件权限:#chmod 777 prometheus.yml
从配置文件中启动
#./prometheus --config.file=prometheus.yml &
设置linux系统端口
firewall-cmd --list-ports ##列出开放的端口 firewall-cmd --add-port=9090/tcp --permanent ##永久添加 9090 端口 firewall-cmd --add-port=9100/tcp --permanent ##永久添加 9100 端口 firewall-cmd --add-port=9104/tcp --permanent ##永久添加 9104 端口 firewall-cmd --list-ports ##列出开放的端口 systemctl stop firewalld ##关闭防火墙 systemctl start firewalld ##开启防火墙 systemctl status firewalld ##查看防火墙状态 systemctl restart firewalld ##重启防火墙 systemctl disable firewalld ##开机关闭防火墙,即永久关闭
这里也会提供一个压缩包给大家
[client] user=xxxx password=xxxx
4、启动服务
在/usr/local/mysql_exporter 下启动./mysqld_exporter --config.my-cnf=my.cnf
5、安装lsof
#yum install lsof
6、查看 9104 端口占用情况
lsof -i:9104
7、
关闭进程 #kill -9 进程号
8、重启 Prometheus
这里会给大家提供一个压缩包
./node_exporter &
附linux效果图
链接:https://pan.baidu.com/s/1eDjFx0gUqltz3jLD63ymMQ
提取码:lnh7
链接:https://pan.baidu.com/s/1YI0hmB0Bd1RLxgmSiJX0Hw
提取码:9psm
标签:kill 安装 这一 启动服务 cmd highlight nbsp mct 数据库操作
原文地址:https://www.cnblogs.com/congyiwei/p/12392057.html