Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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
```