As you have dedicated monitoring system. It is wise to add rules to firewall which will only allow prometheus server to scrape data.
sudo ufw allow from "ip-of-your-monitoring/32 proto tcp to any port 9100 comment "Prometheus Node Exporter"
sudo ufw allow from "ip-of-your-monitoring/32 proto tcp to any port 26660 comment "Prometheus Tendermint Exporter"
wget https://github.com/prometheus/node_exporter/releases/download/v1.2.2/node_exporter-1.2.2.linux-amd64.tar.gz
/// see whats been downloaded
ls
/// tar the folder
tar xvfz node_exporter-.amd64.tar.gz
/// cd into the folder
cd node_exporter-.amd64
/// run the instance to make sure it is working
./node_exporter
/// check to see scrapes are working
curl http://localhost:9100/metrics
/// check from another server
curl http://"ip-of-server-with-node-exporter":9100/metrics
/// rename the folder correctly
mv node_exporter-1.2.2.linux-amd64 node_exporter
/// if you need to find where the node_exporter binary is you can
sudo find / -name "node_exporter*”
/// set some UFW rules
sudo ufw allow from 134.209.186.97/32 proto tcp to any port 9100 comment "Prometheus Node Exporter"
sudo ufw allow from 134.209.186.97/32 proto tcp to any port 26660 comment "Prometheus Tendermint Exporter"