1. Create user and bin/config directories useradd --no-create-home --shell /bin/false prometheus cat /etc/passwd | grep prometheus prometheus:x:1001:1001::/home/prometheus:/bin/false grep prometheus /etc/group prometheus:x:1001: mkdir -p /etc/prometheus mkdir -p /var/lib/prometheus 2. Copy binaries and config files cd cp ./prometheus /usr/local/bin/ cp ./promtool /usr/local/bin/ cp ./prometheus...