mirror of
https://github.com/kakwa/uts-server
synced 2025-07-04 20:47:09 +02:00
first batch of the rst documentation
This commit is contained in:
parent
84b5d75c08
commit
fa6f7b5f17
12 changed files with 318 additions and 411 deletions
43
docs/deploy.rst
Normal file
43
docs/deploy.rst
Normal file
|
@ -0,0 +1,43 @@
|
|||
Deploy
|
||||
======
|
||||
|
||||
Usage
|
||||
-----
|
||||
|
||||
.. sourcecode:: bash
|
||||
|
||||
$ ./uts-server --help
|
||||
Usage: uts-server [OPTION...] -c CONFFILE [-d] [-D] [-p <pidfile>]
|
||||
|
||||
UTS micro timestamp server (RFC 3161)
|
||||
|
||||
-c, --conffile=CONFFILE Path to configuration file
|
||||
-d, --daemonize Launch as a daemon
|
||||
-D, --debug STDOUT debugging
|
||||
-p, --pidfile=PIDFILE Path to pid file
|
||||
-?, --help Give this help list
|
||||
--usage Give a short usage message
|
||||
-V, --version Print program version
|
||||
|
||||
Mandatory or optional arguments to long options are also mandatory or optional
|
||||
for any corresponding short options.
|
||||
|
||||
Report bugs to Pierre-Francois Carpentier <carpentier.pf@gmail.com>.
|
||||
|
||||
Running uts-sever
|
||||
-----------------
|
||||
|
||||
To debug problems with uts-server, run it in the foreground in debug mode:
|
||||
|
||||
.. sourcecode:: bash
|
||||
|
||||
# In debug mode with verbose debugging on stdout
|
||||
$ ./uts-server -c <path/to/conf> -D
|
||||
|
||||
To run it as a daemon:
|
||||
|
||||
.. sourcecode:: bash
|
||||
|
||||
# In daemon mode
|
||||
$ ./uts-server -c <path/to/conf> -d -p <path/to/pidfile>
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue