File: README

package info (click to toggle)
multiwatch 1.0.0-rc1%2Breally1.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, buster, jessie, jessie-kfreebsd, sid, stretch, trixie
  • size: 380 kB
  • ctags: 76
  • sloc: sh: 1,048; ansic: 237; makefile: 8
file content (51 lines) | stat: -rw-r--r-- 1,167 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
Description
-----------

Multiwatch forks multiple instance of one application and keeps them running;
it is made to be used with spawn-fcgi, so all forks share the same fastcgi
socket (no webserver restart needed if you increase/decrease the number of
forks), and it is easier than to setup multiple daemontool supervised instances.


Homepage
--------

 * http://redmine.lighttpd.net/projects/multiwatch/wiki


Usage
-----

Example for spawning two rails instances:

  #!/bin/sh
  # run script

  exec spawn-fcgi -n -s /tmp/fastcgi-rails.sock -u www-rails -U www-data -- /usr/bin/multiwatch -f 2 -- /home/rails/public/dispatch.fcgi

More details in the man page.


Build dependencies
------------------

 * glib >= 2.16.0 (http://www.gtk.org/)
 * libev (http://software.schmorp.de/pkg/libev.html)
 * cmake or autotools (for snapshots/releases the autotool generated files are included)


Build
-----

 * snapshot/release with autotools:
   ./configure
   make

 * build from git: git://git.lighttpd.net/multiwatch.git
   * with autotools:
     ./autogen.sh
     ./configure
     make
   * with cmake (should work with snapshots/releases too)
     cmake .
     make