summaryrefslogtreecommitdiff
path: root/qpid/doc/book/src/java-broker/Java-Broker-Configuring-And-Managing-Config-Files.xml
diff options
context:
space:
mode:
authorRobert Gemmell <robbie@apache.org>2013-05-24 11:33:07 +0000
committerRobert Gemmell <robbie@apache.org>2013-05-24 11:33:07 +0000
commitbbbf4785ae63ff35eb51a6cebe3aba0a1f68ac21 (patch)
tree2c7e6c2de08e5c2fc77c4c4f3f0cafde24b975fb /qpid/doc/book/src/java-broker/Java-Broker-Configuring-And-Managing-Config-Files.xml
parent92bf4a15a0d145251b602bff1fd7eefc310371a7 (diff)
downloadqpid-python-bbbf4785ae63ff35eb51a6cebe3aba0a1f68ac21.tar.gz
QPID-4881: update docs/help to use quotes for the config property argument, as will be required when using the startup script on Windows
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1486017 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/doc/book/src/java-broker/Java-Broker-Configuring-And-Managing-Config-Files.xml')
-rw-r--r--qpid/doc/book/src/java-broker/Java-Broker-Configuring-And-Managing-Config-Files.xml9
1 files changed, 4 insertions, 5 deletions
diff --git a/qpid/doc/book/src/java-broker/Java-Broker-Configuring-And-Managing-Config-Files.xml b/qpid/doc/book/src/java-broker/Java-Broker-Configuring-And-Managing-Config-Files.xml
index 8dfb8de5c1..072effa798 100644
--- a/qpid/doc/book/src/java-broker/Java-Broker-Configuring-And-Managing-Config-Files.xml
+++ b/qpid/doc/book/src/java-broker/Java-Broker-Configuring-And-Managing-Config-Files.xml
@@ -278,7 +278,7 @@ $ ./qpid-server -st memory
</para>
<screen>
-$ ./qpid-server -prop qpid.amqp_port=10000 -prop qpid.http_port=10001
+$ ./qpid-server -prop "qpid.amqp_port=10000" -prop "qpid.http_port=10001"
</screen>
<para>
In the example above, property used to set the port number of the default AMQP port is specified with the value 10000, overriding the default value of 5672, and similarly the vlaue 10001 is used to override the default HTTP port number of 8080.
@@ -289,10 +289,9 @@ $ ./qpid-server -prop qpid.amqp_port=10000 -prop qpid.http_port=10001
NOTE: when saving the broker Configuration Store, either during initialisation when generating any required IDs for the 'Initial Configuration', or when required following user-prompted change via the managmenet interface, values are
stored in their resolved state. As such, if a Configuration Store already exists when the broker is started, it is likely that setting a Configuration Property to a value different than it was previously set could have no effect.
</para>
-
-
-
-
+ <para>
+ NOTE: When running the broker on Windows and starting it via the qpid-server.bat file, the "name=value" argument MUST be quoted.
+ </para>
</section>