Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Add deprecation warning
Info

This page is out of date and should not be used. Please refer to the Java broker book for up to date documentation.

Qpid 0.5 and later supports using multiple configuration files. This is useful for seperating server-wide and instance-specific configuration settings.

The top level combined configuration file might contain the following:

Code Block

<configuration>
  <system/>
  <xml fileName="/path/to/config"/>
  <xml fileName="/path/to/local/config"/>
</configuration>

...

The file referenced by "/path/to/config" might contain:

Code Block

  <broker>
     <management>
      <enabled>true</enabled>
      <ssl>
           <enabled>true</enabled>
            <keyStorePath>${prefix}/../test_resources/ssl/keystore.jks</keyStorePath>
            <keyStorePassword>password</keyStorePassword>
        </ssl>
    </management>
  </broker>

and "/path/to/local/config":

Code Block


  <broker>
      <management>
        <jmxport>8999</jmxport>
      </management>
  </broker>

...

A more complete example can be found attached to this page:

Attachments
patterns.*xml