forked from saleyn/erlexec
-
Notifications
You must be signed in to change notification settings - Fork 1
/
README
49 lines (37 loc) · 1.62 KB
/
README
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
erlexec
=======
Execute and control OS processes from Erlang/OTP.
This project implements a C++ port program and Erlang application
that gives light-weight Erlang processes fine-grain control over
execution of OS processes.
It makes possible for an Erlang process to start, stop an OS process,
send POSIX signals, know process IDs of the started OS process, set up
a monitor and/or link to it. This application provides better control
over OS processes than built-in erlang:open_port/2 command with a
{spawn, Command} option, and performs proper OS child process cleanup
when the emulator exits.
See [http://saleyn.github.com/erlexec] for more information.
SUPPORTED OS's
==============
Linux, Solaris
BUILDING
========
Make sure you have rebar (https://github.com/basho/rebar) installed
locally and the rebar script is in the path.
If you are deploying the application on Linux and would like to
take advantage of exec-port running tasks using effective user IDs
different from the real user ID that started exec-port, then
make sure that libcap-dev[el] library is installed.
OS-specific libcap-dev installation instructions:
Fedora, CentOS: "yum install libcap-devel"
Ubuntu: "apt-get install libcap-dev"
$ git clone [email protected]:saleyn/erlexec.git
$ make
DEPLOYING
=========
Run "make tar". This produces a tarball which you can deploy to your
destination environment and untar the content.
LICENSE
=======
The program is distributed under BSD license.
Copyright (c) 2003 Serge Aleynikov <saleyn at gmail dot com>