Services Running On My Synology

cd /etc/systemd/system

flask_test_server.service 

[Service]
User=root
WorkingDirectory=/volume1/homes/Daniel/virtual_env_test/virtual_python
ExecStart=/volume1/homes/Daniel/virtual_env_test/virtual_python/bin/python3 flask_test.py
Restart=always
app.run(debug=False, host="192.168.0.216", port=18085)

http://192.168.0.216:18085


dragino_recorder.service    

[Service]
User=root
WorkingDirectory=/volume1/homes/Daniel/active_virtual_python/LORAWAN_stuff
ExecStart=/volume1/homes/Daniel//active_virtual_python/bin/python3 Dragino_Recorder.py
Restart=always

check status

sudo systemctl status dragino_recorder.service

    output

cat /volume1/homes/Daniel/active_virtual_python/LORAWAN_stuff/eui-a840413bf1840919.txt 

minitiouner_controller.service

[Service]
User=root
WorkingDirectory=/volume1/homes/Daniel/active_virtual_python/MINITIOUNER_controller
ExecStart=/volume1/homes/Daniel//active_virtual_python/bin/python3 minitiouner_controller.py
Restart=always
app.run(debug=True, host="192.168.0.216", port=11111)

http://192.168.0.216:11111


lorawan_data_server.service

[Service]
User=root
WorkingDirectory=/volume1/homes/Daniel/active_virtual_python/LORAWAN_stuff/WebServer_for_LORAWAN_Devices
ExecStart=/volume1/homes/Daniel//active_virtual_python/bin/python3 lorawan_data_server.py
Restart=always
app.run(debug=True,host="192.168.0.216", port=33333)

http://192.168.0.216:33333


obs_web_pages.service

[Service]
User=root
WorkingDirectory=/volume1/homes/Daniel/active_virtual_python/LORAWAN_stuff/OBS_webpage
ExecStart=/volume1/homes/Daniel/active_virtual_python/bin/python3 obs_flask.py
Restart=always
app.run(debug=True,host="192.168.0.216", port=34000)

http://192.168.0.216:34000/

netatmo_recorder.service

[Service]
User=root
WorkingDirectory=/volume1/homes/Daniel/active_virtual_python/LORAWAN_stuffS
ExecStart=/volume1/homes/Daniel/active_virtual_python/bin/python3 Netatmo_Recorder.py
Restart=always

check status

sudo systemctl status netatmo_recorder.service