Files
SergObsidian/WORK & PROJECTS/Mol/Серверы/1С Бухгалтерия.md
2025-05-13 08:01:27 +05:00

1.0 KiB
Raw Blame History

root@212.67.13.241

uz5m9Mf1*Alviola16tyu@uz5m9Mf1*Alviola16tyu@

narooto ons2So8KGworzwkdDuUzBEoP

1С molsoft FSfF1qLgHaXnxq1SK7Cikfik me@gufranov.ru

vnc —act: rrOjiEPzSi79 —spectate: ylJLWLSK3gpr

grafana http://212.67.13.241:3000/

prometeus http://212.67.13.241:9090/

node exporter

nano /etc/node_exporter/config.yml
basic_auth_users:
  prometheus: "$2a$12$9fI6ZRV.1FAIRbqH9TnwgOSyCrQ18yMC0AoYcwErYmTD97sfJjMq2"

install

wget https://github.com/prometheus/node_exporter/releases/download/v1.9.1/node_exporter-1.9.1.linux-amd64.tar.gz
tar -xvf node_exporter-*.tar.gz
sudo mv node_exporter-1.9.1.linux-amd64/node_exporter /usr/local/bin/
sudo nano /etc/systemd/system/node_exporter.service

Insert this

[Unit]
Description=Node Exporter
After=network.target

[Service]
User=root
ExecStart=/usr/local/bin/node_exporter --web.config.file="/etc/node_exporter/config.yml"
Restart=always

[Install]
WantedBy=multi-user.target
systemctl enable --now node_exporter.service
systemctl start node_exporter