Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/eseom/glide
yet another simple process manager
https://github.com/eseom/glide
Last synced: 3 days ago
JSON representation
yet another simple process manager
- Host: GitHub
- URL: https://github.com/eseom/glide
- Owner: eseom
- License: mit
- Created: 2014-05-05T19:11:18.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2015-08-02T10:31:15.000Z (over 9 years ago)
- Last Synced: 2024-11-01T05:26:46.391Z (about 2 months ago)
- Language: Python
- Size: 301 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## overview
GLIDE is a simple process management tool for unix like system administrators.
There is no dependency except python 2.7. Just install and use it.## usage
### install
```bash
python setup.py install
```### config file (ini style)
```bash
# cat /etc/glide.conf
[process_name1]
path=/path/to/executable1[process_name2]
path=/path/to/executable2
```### daemon
daemonize $INSTALL_PATH/glided
### command
```bash
$INSTALL_PATH/glidectl status
$INSTALL_PATH/glidectl start process_name1
$INSTALL_PATH/glidectl stop process_name2 # send quit(3) signal
$INSTALL_PATH/glidectl restart process_name1
$INSTALL_PATH/glidectl alarm process_name2 # send alarm(14) signal
```