1. 环境准备
确保你的系统已经安装了必要的工具,如 curl
或 wget
用于下载文件,以及 tar
用于解压文件。
sudo yum update -y
sudo yum install -y wget tar
2. 创建专用用户(可选但推荐)
为了安全起见,建议为每个服务创建专用用户。
sudo useradd --no-create-home --shell /bin/false prometheus
sudo useradd --no-create-home --shell /bin/false node_exporter
sudo useradd --no-create-home --shell /bin/false mysql_exporter
sudo useradd --no-create-home --shell /bin/false alertmanager
sudo useradd --no-create-home --shell /bin/false grafana
3. 下载和安装 Prometheus
-
创建目录:
sudo mkdir -p /opt/prometheus sudo chown prometheus:prometheus /opt/prometheus