-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathstudy
More file actions
80 lines (31 loc) · 1.19 KB
/
study
File metadata and controls
80 lines (31 loc) · 1.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
1.安装docker
$ curl -fsSL https://get.docker.com -o get-docker.sh
$ sudo sh get-docker.sh
免sudo权限
sudo groupadd docker
sudo gpasswd -a ${USER} docker
sudo service docker restart
newgrp - docker
测试:docker run hello-world
2.安装docker-compose
$ sudo curl -L https://github.com/docker/compose/releases/download/1.24.0-rc1/docker-compose-`uname -s`-`uname -m` -o /usr/local/bin/docker-compose
$ sudo chmod +x /usr/local/bin/docker-compose(授权)
$ docker-compose --version(验证版本)
解决镜像垃取慢问题:
在 /etc/docker/daemon.json 文件中添加以下参数(没有该文件则新建):
{
"registry-mirrors": ["https://9cpn8tt6.mirror.aliyuncs.com"]
}
服务重启:
systemctl daemon-reload
systemctl restart docker
3.部署prometheus
撰写docker-compose.yml(挂载时可挂载整个目录)
撰写prometheus.yml
docker-compose up -d
4. 使用node exporter收集监控数据
docker-compose.yml 添加配置,垃取node-exporter服务镜像,并指定端口
prometheus添加job
5.安装配置grafana
docker-compose.yml 添加配置,垃取grafana服务镜像,并指定端口
8919 10262 11323