1.概述
1.下载
官网:https://prometheus.io/download/
github : https://github.com/prometheus/prometheus/releases/tag/v2.17.1
这里下载prometheus-2.17.1.linux-amd64.tar.gz版本的。
2.解压
(base) lcc@lcc prometheus-2.17.1.linux-amd64$ pwd
/Users/lcc/soft/prometheus/prometheus-2.17.1.linux-amd64
(base) lcc@lcc prometheus-2.17.1.linux-amd64$ ll
total 285808
drwxr-xr-x@ 10 lcc staff 320 3 27 02:24 ./
drwxr-xr-x 5 lcc staff 160 5 11 16:16 ../
-rw-r--r--@ 1 lcc staff 11357 3 27 02:22 LICENSE
-rw-r--r--@ 1 lcc staff 3184 3 27 02:22 NOTICE
drwxr-xr-x@ 4 lcc staff 128 3 27 02:22 console_libraries/
drwxr-xr-x@ 9 lcc staff 288 3 27 02:22 consoles/
-rwxr-xr-x@ 1 lcc staff 84338005 3 27 00:20 prometheus*
-rw-r--r--@ 1 lcc staff 926 3 27 02:22 prometheus.yml
-rwxr-xr-x@ 1 lcc staff 48235996 3 27 00:22 promtool*
-rwxr-xr-x@ 1 lcc staff 13732141 3 27 00:22 tsdb*
(base) lcc@lcc prometheus-2.17.1.linux-amd64$
从prometheus.yml
配置文件的内容可以看出,该配置文件就是让prometheus监控自己
关于配置文件的详细说明请参考prometheus configuration
3.启动
启动prometheus服务
(base) lcc@lcc prometheus-2.17.1.linux-amd64$ ./prometheus --config.file="prometheus.yml"
-bash: ./prometheus: cannot execute binary file
4.解惑
linux系统下遇到cannot execute binary file的问题,一般由以下情况造成:
非root用户或者无执行权限
编译环境不同(程序由其他操作环境复制过来)
对于第一种情况,采用增加执行权限即可chmod +x program
对于第二种情况,建议将该程序二进制包拷贝过来,重新编译程序。因为我在实际操作过程中发现我将美国的VPS的整个操作系统环境打包后下载到本地服务器上解压后运行其中的程序会有如题所示问题出现,百思不得其解,系统都为centos5.2,最终发现是两者编译环境不同所致:
美国VPS是AMD64位处理器
本地服务器是INTEL64位处理器
这两者的硬件编译环境有所差别,导致了这个问题。当然,下载的某些程序非二进制包,可以直接执行的,但却出现该问题,也是因为内核匹配不了CPU,intel是x86的,amd是amd64或是32位版本
重新下载版本:prometheus-2.17.1.darwin-amd64
这样的版本就好了。