GitXplorerGitXplorer
a

runit-man

public
14 stars
11 forks
1 issues

Commits

List of commits on branch master.
Unverified
8f643ebc37424cca0f297b6ab917570f44a62f36

tables in readme [ci skip]

aakzhan committed 11 years ago
Unverified
4c693c85830997bd4ef7c1dfa63e712ffa3f38b1

tables in readme [ci skip]

aakzhan committed 11 years ago
Unverified
cfc5fc741ba4febb36422dc8a1d72a9fb5ab5366

Code style

aakzhan committed 12 years ago
Unverified
74e403838dc8ca942ad0a907ba924674c7128e29

Merge pull request #8 from vadv/master

aakzhan committed 12 years ago
Unverified
b47dbb8cbb91351d3ec5aa9dc5cec230e504506e

support for slogd

vvadv committed 12 years ago
Unverified
d4519c9c1a1bbeb3ac88aafa7f0ab96b6a28fa86

Version bump to 2.4.12

aakzhan committed 12 years ago

README

The README file for this repository.

Description

Simple runit web management tool with internationalization support.

Server will run by runit-man script. Take a note that runit-man must have privileges like runsvdir process ones.

Screenshot

Screenshot

Installation

Opscode Chef

We provide runit-man cookbook to automate setup of runit-man using Opscode Chef.

Manual installation

Usually You should install both runit-man and thin gems to run this tool fine.

gem install runit-man thin

Pragmatic approach is to setup runit-man as runit service like this:

runit-man -p 14500 -r

This command installs runit-man as runit service (using default folders /etc/sv/ and /etc/service/).

Look at {file:INSTALL.md} for details.

rackup configuration

Take a note that runit-man gem also provides config.ru rackup configuration file. It's useful for running under unicorn/rainbows etc. runit-man --rackup=command option does cd config.ru directory && set environment && exec command.

Customization

This tool can provide additional information or actions through it's Web page.

View names and content of files that related to concrete service

For each known runit service this tool looks for ./runit-man/files-to-view/ folder. Every symlink there will be shown as link to view target file content.

Show links that related to concrete service

For each known runit service this tool looks for ./runit-man/urls-to-view/ folder. Every file ended with .url will be shown as link to view target location (location should be written as content of this file).

Indicate services with any of watched files are modified since service startup

For each known runit service this tool looks for ./runit-man/files-to-watch/ folder. Symlink targets there will be tested for its mtime to be less than service start time. Service will be indicated as dangerous (as red color) to restart if any watched file is modified since service startup.

Show buttons that send signals to concrete service

For each known runit service this tool looks for ./runit-man/allowed-signals/ folder. Each one-letter-named file declares that signal button should be shown in Web UI.

Signal letters listed below in REST API section.

REST API

Get state

You can read current state of services in JSON format using GET /services.json

Management

You can manage your services using POST /<service name>/<command>

Supported commands: up, down, restart, switch_up (activates service), switch_down (deactivates service).

You can also send any signal to service using POST /<service name>/signal/<signal>

Supported signals and their's meaning:

Signal Meaning
t TERM
k KILL
i INT
1 USR1
2 USR2
a ALARM
q QUIT
x EXIT
p PAUSE
c CONT
h HUP
o ONCE

Read logs

svlogd

You can read tail of service log using GET /<service name>/log/<count of tailing lines>.txt

Note that to use this feature You must do logging using

exec svlogd <options> $LOG_DIRECTORY_LOCATION

logger

Use logger like:

exec logger  -i -t "runit-man" -p local1.info

and use option -l "logger:/var/log/" where base logs directory shown after period.

Localization

Localization can be done by editing of ./i18n/*.yml locale files. Contributions are welcome.

Development

Runit-man provides a useful Vagrant file. To have a complete development environment:

Now you have an Ubuntu 12.04 system with runit and runit-man running inside your Vagrant box

Links