grafana

    [CentOS 7 / Ubuntu 18.04] Prometheus 서버 설치 방법

    #출처 : https://sxi.io/install-prometheus-server-on-centos-7-ubuntu-18-04/ 1. Prometheus 시스템 그룹 생성 먼저 Prometheus 시스템 그룹을 생성해 보겠습니다. groupadd 명령과 함께 -r 또는 –system 옵션을 사용해야 합니다 . sudo groupadd --system prometheus ID가 1000 미만인 그룹은 시스템 그룹입니다. 2. Prometheus 시스템 사용자 생성 이제 Prometheus 시스템 사용자를 만들고 위에서 방금 만든 기본 그룹을 할당해 보겠습니다. sudo useradd -s /sbin/nologin --system -g prometheus prometheus 이것은 /bin/bash 셸이 ..