Control systemd services through Web or REST API
If you are a Ubuntu/Debian user you need to install libsystemd-dev, for
CentOS users the package is systemd-devel.
Also on centos you need to install: systemd-devel glib2-devel dbus-devel python36 python36-virtualenv and yum groupinstall development tools
git clone https://github.com/ogarcia/sysdweb.git
virtualenv3 ./sysdweb-venv
source ./sysdweb-venv/bin/activate
cd sysdweb
pip install -r requirements.txt
python setup.py installvirtualenv3 ./sysdweb-venv
source ./sysdweb-venv/bin/activate
pip install sysdwebArch Linux users can install sysdweb from AUR.
First take a look to sysdweb.conf file to configure sysdweb. Is self
explanatory.
You can place sysdweb.conf in /etc for system, in user home
~/.config/sysdweb/sysdweb.conf or in same directory where you run sysdweb.
Once you have configured sysdweb, simply run.
sysdweb
By default sysdweb listen in 10080 port to 127.0.0.1, you can change listen
port and address with -p and -l or via environment variables.
sysdweb -p 9080 -l 0.0.0.0Current config environment variables are the following.
| Variable | Description | 
|---|---|
SYSDWEB_CONFIG | 
Config file location | 
SYSDWEB_HOST | 
Listen address | 
SYSDWEB_PORT | 
Listen port | 
SYSDWEB_LOGLEVEL | 
Log level, effective values are WARNING, INFO and DEBUG | 
You can control configured services via REST API, for example, with curl.
The API endpoint is /api/v1/<service>/<action>, always GET and response
a json with following format.
{
  "<action>": "<result>"
}The <service> tag is defined in config file and match with section label.
For example, in following config, the service would be ngx.
[ngx]
title = Nginx
unit = nginx.serviceThe posible <actions> are.
- start
 - stop
 - restart
 - reload
 - reloadorrestart
 - status
 - journal
 
All actions (except status and journal) return as result OK if can
communicate with DBUS or Fail if any error occurs.
For status action, the posible responses are.
- active (started unit)
 - reloading
 - inactive (stopped unit)
 - failed (stopped unit)
 - activating
 - deactivating
 - not-found (for inexistent unit)
 
By default /api/v1/<service>/journal returns 100 tail lines of journal
file of <service> unit. You can specify the number of lines by this way.
/api/v1/<service>/journal/200
In the example defined above all valid enpoins are.
http://127.0.0.1:10080/api/v1/services
http://127.0.0.1:10080/api/v1/ngx/start
http://127.0.0.1:10080/api/v1/ngx/stop
http://127.0.0.1:10080/api/v1/ngx/restart
http://127.0.0.1:10080/api/v1/ngx/reload
http://127.0.0.1:10080/api/v1/ngx/reloadorrestart
http://127.0.0.1:10080/api/v1/ngx/status
http://127.0.0.1:10080/api/v1/ngx/journal
http://127.0.0.1:10080/api/v1/ngx/journal/<number>