This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
NODE_EXPORTER_VERSION="0.18.0" | |
wget https://github.com/prometheus/node_exporter/releases/download/v${NODE_EXPORTER_VERSION}/node_exporter-${NODE_EXPORTER_VERSION}.linux-amd64.tar.gz | |
tar -xzvf node_exporter-${NODE_EXPORTER_VERSION}.linux-amd64.tar.gz | |
cd node_exporter-${NODE_EXPORTER_VERSION}.linux-amd64 | |
sudo cp node_exporter /usr/local/bin | |
# create user | |
sudo useradd --no-create-home --shell /bin/false node_exporter |