summaryrefslogtreecommitdiff
path: root/RC9/qpid/cpp/docs/man/qpidd.x
diff options
context:
space:
mode:
authorRafael H. Schloming <rhs@apache.org>2009-01-13 18:11:43 +0000
committerRafael H. Schloming <rhs@apache.org>2009-01-13 18:11:43 +0000
commit7e34266b9a23f4536415bfbc3f161b84615b6550 (patch)
tree484008cf2d413f58b5e4ab80b373303c66200888 /RC9/qpid/cpp/docs/man/qpidd.x
parent4612263ea692f00a4bd810438bdaf9bc88022091 (diff)
downloadqpid-python-M4.tar.gz
Tag M4 RC9M4
git-svn-id: https://svn.apache.org/repos/asf/qpid/tags/M4@734202 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'RC9/qpid/cpp/docs/man/qpidd.x')
-rw-r--r--RC9/qpid/cpp/docs/man/qpidd.x46
1 files changed, 46 insertions, 0 deletions
diff --git a/RC9/qpid/cpp/docs/man/qpidd.x b/RC9/qpid/cpp/docs/man/qpidd.x
new file mode 100644
index 0000000000..9f1b465701
--- /dev/null
+++ b/RC9/qpid/cpp/docs/man/qpidd.x
@@ -0,0 +1,46 @@
+[NAME]
+
+qpidd \- the Qpid AMQP Broker Daemon
+
+[SYNOPSIS]
+
+qpidd [options]
+
+[DESCRIPTION]
+
+An AMQP broker daemon that stores, routes and forwards messages using
+the Advanced Message Queueing Protocol (AMQP).
+
+[OPTIONS]
+
+Options may be specified via command line, environment variable or configuration file. See FILES and ENVIRONMENT below for details.
+
+[FILES]
+.I /etc/qpidd.conf
+.RS
+Default configuration file.
+.RE
+
+Configuration file settings are over-ridden by command line or environment variable settings. '--config <file>' or 'export QPID_CONFIG=<file>' specifies an alternate file.
+
+Each line is a name=value pair. Blank lines and lines beginning with # are ignored. For example:
+
+ # My qpidd configuration file.
+ port=6000
+ max-connections=10
+ log-to-stdout=yes
+ log-to-file=/tmp/qpidd.log
+
+[ENVIRONMENT]
+.I QPID_<option>
+.RS
+There is an environment variable for each option.
+.RE
+
+The environment variable is the option name in uppercase, prefixed with QPID_ and '.' or '-' are replaced with '_'. Environment settings are over-ridden by command line settings. For example:
+
+ export QPID_PORT=6000
+ export QPID_MAX_CONNECTIONS=10
+ export QPID_LOG_TO_FILE=/tmp/qpidd.log
+
+