mirror of
https://github.com/bisq-network/bisq.git
synced 2024-11-19 01:41:11 +01:00
794302678d
* Install script for collectd * Install script for network size metric * Apply suggestions from code review Co-Authored-By: wiz <j@wiz.biz> * Update monitor/install_collectd_debian.sh Co-Authored-By: wiz <j@wiz.biz> * Apply suggestions from code review Co-Authored-By: wiz <j@wiz.biz> Co-authored-by: wiz <j@wiz.biz>
12 lines
325 B
Bash
Executable File
12 lines
325 B
Bash
Executable File
#!/bin/sh
|
|
echo "[*] Stopping Bisq Server monitoring utensils"
|
|
echo ' '
|
|
echo 'This script will not remove any configuration or binaries from the system. It just stops the services.'
|
|
|
|
sleep 10
|
|
sudo systemctl stop nginx
|
|
sudo systemctl stop collectd
|
|
sudo systemctl disable nginx
|
|
sudo systemctl disable collectd
|
|
echo "[*] Done!"
|