Added: qpid/site/input/releases/qpid-dispatch-0.4/man/qdrouterd.conf.html.in URL: http://svn.apache.org/viewvc/qpid/site/input/releases/qpid-dispatch-0.4/man/qdrouterd.conf.html.in?rev=1673280&view=auto ============================================================================== --- qpid/site/input/releases/qpid-dispatch-0.4/man/qdrouterd.conf.html.in (added) +++ qpid/site/input/releases/qpid-dispatch-0.4/man/qdrouterd.conf.html.in Mon Apr 13 21:05:44 2015 @@ -0,0 +1,343 @@ + + + + +
+ + +qdroutered.conf is the configuration file for the dispatch router.
+The configuration file is made up of sections with this syntax:
+SECTION-NAME {
+ ATTRIBUTE-NAME: ATTRIBUTE-VALUE
+ ATTRIBUTE-NAME: ATTRIBUTE-VALUE
+ ...
+}
+
There are two types of sections:
+Configuration sections correspond to configuration entities. They can be queried and +configured via management tools as well as via the configuration file.
+Annotation sections define a group of attribute values that can be included in +one or more entity sections.
+For example you can define an “ssl-profile” annotation section with SSL credentials +that can be included in multiple “listener” entities. Here’s an example, note +how the ‘ssl-profile’ attribute of ‘listener’ sections references the ‘name’ +attribute of ‘ssl-profile’ sections.
+ssl-profile {
+ name: ssl-profile-one
+ cert-db: ca-certificate-1.pem
+ cert-file: server-certificate-1.pem
+ key-file: server-private-key.pem
+}
+
+listener {
+ ssl-profile: ssl-profile-one
+ addr: 0.0.0.0
+ port: 20102
+ sasl-mechanisms: ANONYMOUS
+}
+
Attributes for internet address and port.
+Used by: listener, connector.
+Attribute for a list of SASL mechanisms.
+Used by: listener, connector.
+Attribute for the role of a connection.
+Used by: listener, connector.
+Attributes for setting TLS/SSL configuration for connections.
+Used by: listener, connector.
+Attributes related to the AMQP container.
+Tracks peer routers and computes routes to destinations.
+Listens for incoming connections to the router.
+Annotations: addrPort, connectionRole, sslProfile, saslMechanisms.
+Establishes an outgoing connections from the router.
+Annotations: addrPort, connectionRole, sslProfile, saslMechanisms.
+Configure logging for a particular module. You can use the UPDATE operation to change log settings while the router is running.
+Establishes semantics for addresses starting with a prefix.
+A remote node that messages for an address pass through.
+An address pattern to match against link sources and targets to cause the router to link-route the attach across the network to a remote node.
+qdrouterd [options]
+The Qpid Dispatch router (qdrouterd) is a network daemon that directs +AMQP 1.0 messages between endpoints, such as messaging clients and +servers.
+-c, –config=PATH (/usr/local/etc/qpid-dispatch/qdrouterd.conf) +: Load configuration from file at PATH
+-I, –include=PATH (/usr/local/lib/qpid-dispatch/python) +: Location of Dispatch’s Python library
+-d, –daemon +: Run process as a SysV-style daemon
+-P, –pidfile +: If daemon, the file for the stored daemon pid
+-U, –user +: If daemon, the username to run as
+-h, –help +: Print this help
+qdrouterd.conf(5), qdstat(8), qdmanage(8)
+ +qdstat [options]
+qdstat shows status information about networks of Dispatch routers. It +can display connections, network nodes and links, and router stats such +as memory use.
+-h, –help +: show this help message and exit
+–version +: Print version and exit.
+-g, –general +: Show General Router Stats
+-c, –connections +: Show Connections
+-l, –links +: Show Router Links
+-n, –nodes +: Show Router Nodes
+-a, –address +: Show Router Addresses
+-m, –memory +: Show Broker Memory Stats
+-b URL, –bus=URL +: URL of the messaging bus to connect to (default 0.0.0.0)
+-r ROUTER-ID, –router=ROUTER-ID +: Router to be queried
+-t SECS, –timeout=SECS +: Maximum time to wait for connection in seconds (default 5)
+–ssl-certificate=CERT +: Client SSL certificate (PEM Format)
+–ssl-key=KEY +: Client SSL private key (PEM Format)
+–ssl-trustfile=TRUSTED-CA-DB +: Trusted Certificate Authority Database file (PEM Format)
+–ssl-password=PASSWORD +: Certificate password, will be prompted if not specifed.
+qdrouterd(8), qdmanage(8), qdrouterd.conf(5)
+ +