Table of Contents
procServ(1) creates a run time environment for a command (e.g. a soft IOC). It forks a server run as a daemon into the background, which creates a child process running command with all remaining args from the command line. The server provides console access (stdin/stdout) to the child process by offering a telnet connection at the specified port. For security reasons, by default access is restricted to connections from localhost (127.0.0.1), so that logging into a valid account on the host machine is required.
procServ can be configured to write a console log of all in- and output of the child process into a file using the -L (--logfile) option. Sending the signal SIGHUP to the server will make it reopen the log file. To facilitate running under a central console access management (like conserver), the -l (--logport) option creates an additional telnet port, which is by default public (i.e. not restricted to localhost), and provides read-only log access to the child’s console. The -r (--restrict) option restricts the log port to localhost, similar to the access port.
Both access and log ports allow multiple connections, which are handled transparently: all input from access connections is forwarded to the child process, all output from the child is forwarded to all access and log connections (and written to the log file).
All diagnostic messages from the server process start with "@@@
" to be clearly distinguished from child process messages.
A name specified by the -n (--name) option will replace the command string in many messages for increased readability.
The server will by default automatically respawn the child process when it dies.
To avoid spinning, a minimum time between child process restarts is honoured (default: 15 seconds, can be changed using the --holdoff option).
This behaviour can be toggled online using the toggle command ^T
, the default may be changed using the --noautorestart option.
You can restart a running child manually by sending a signal to the child process using the kill command ^X
.
With the child process being shut down, the server accepts two commands: ^R
or ^X
to restart the child, and ^Q
to quit the server.
The -w (--wait) option starts the server in this shut down mode, waiting for a telnet connection to issue a manual start command to create the child.
Any telnet connection (control or log) can be disconnected using the client’s disconnect sequence. Control connections can also be disconnected by sending the logout command character, that can be specified using the -x (--logoutcmd) option.
To block input characters that are potentially dangerous to the child (e.g. ^D
and ^C
on soft IOCs), the -i (--ignore) option can be used to specify characters that are silently ignored when coming from a console access port.
To facilitate being started and stopped as a standard system service, the -p (--pidfile) option tells the server to create a standard PID file containing the PID of the server process.
The -d (--debug) option runs the server in debug mode: the daemon process stays in the foreground, printing all regular log content plus additional debug messages to stdout.
^
to specify a control character, ""
to disable. Default is ^T
.
^D
and ^C
characters that would shut down a soft IOC. Use ^
to specify control characters, ^^
to specify a single ^
character.
^
to specify a control character, ""
for no kill command. Default is ^X
.
^
to specify a control character. Default is empty.
To start a soft IOC using procServ, change the directory into the IOC’s boot directory. A typical command line would be
procServ -n "My SoftIOC" -i ^D^C 20000 ./st.cmd
To connect to the IOC, log into the soft IOC’s host and connect to port 20000 using
telnet localhost 20000
To connect from a remote machine, ssh to a user account on procservhost and connect to port 20000 using
ssh -t user@procservhost telnet localhost 20000
You will be connected to the soft IOCs console and receive an informative welcome message. All output from the procServ server will start with "@@@
" to allow telling it apart from messages that your IOC sends.
> telnet localhost 20000 Trying 127.0.0.1... Connected to localhost. Escape character is '^]'. @@@ Welcome to the procServ process server (procServ Version 2.1.0) @@@ Use ^X to kill the child, auto restart is ON, use ^T to toggle auto restart @@@ procServ server PID: 21413 @@@ Startup directory: /projects/ctl/lange/epics/ioc/test314/iocBoot/iocexample @@@ Child "My SoftIOC" started as: ./st.cmd @@@ Child "My SoftIOC" PID: 21414 @@@ procServ server started at: Fri Apr 25 16:43:00 2008 @@@ Child "My SoftIOC" started at: Fri Apr 25 16:43:00 2008 @@@ 0 user(s) and 0 logger(s) connected (plus you)
Type the kill command character ^X
to reboot the soft IOC and get server messages about this action.
Type the telnet escape character ^]
to get back to a telnet prompt then "quit
" to exit telnet (and ssh when you were connecting remotely).
Though procServ was originally intended to be an environment to run soft IOCs, any process might be started as child. It provides an environment for any program that requires access to its console, while running in the background as a daemon, and keeping a log by writing a file or through a console access and logging facility (such as conserver
).
Report bugs on the procServ Trac at http://sourceforge.net/apps/trac/procserv/ or to the authors.
Written by David H. Thompson <thompsondh@ornl.gov> and Ralph Lange <Ralph.Lange@gmx.de>.
SourceForge project: http://sourceforge.net/projects/procserv/