Skip to content

NEW New Sofia DCS start and stop infos

Fabio Ferrarotto edited this page Dec 2, 2021 · 4 revisions

Instructions from Simion Ivanov to start and stop the new DCS from Sofia :

1. Location of the system:

dcs@lpadme01 /home/dcs/wDCS

2. starting up the web server in a console (to see error messages, etc):

ssh to dcs@lpadme01

cd ~/wDCS

pipenv shell

[prompt]$ ./prototype.py --config prototype.conf &

to shut it down, just control-c to kill it

3. Starting a long-running session:

ssh to dcs@lpadme01

cd ~/wDCS

nohup pipenv run ./prototype.py --config prototype.conf

You can log out at this point. To kill the server:

pkill prototype.py

4. Starting the monitor:

ssh to dcs@lpadme01

cd ~/wDCS

pipenv shell

[prompt]$ cd monitor/netdata/usr/sbin/

[prompt]$ ./run.sh

5. Stopping the monitor

cd ~/wDCS

pipenv shell

[prompt]$ cd monitor/netdata/usr/sbin/

[prompt]$ ./stop.sh

That's all.

Clone this wiki locally