Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 5.3

...

  1. Stop the server.
  2. Back up the current config.xml file and open the file in an editor.
  3. Review the current config.xml file. You can find <module> elements with the following form. Each module contains 0, 1, or more <gbean> elements which, in turn, contain 0, 1, or more <attribute> elements.
    Code Block
    XML
    XML
    borderStylesolidXML
    <module name="moduleName">
        <gbean name="beanName">
            <attribute name="name">value</attribute>
            .
            .
            .
        </gbean>
        .
        .
        .
    </module>
    
    where
    indent
    0
    0
    _moduleName_
    
    indent
    1
    1
    The module name of the component that contains the GBeans that have attributes to be configured. The value specified must match the value specified when the component was deployed. Use the deployer's [list-modules|deploy#deploy-Listmodulescommandandoptions] command to obtain the list of module names deployed in your server.
    
    indent
    0
    0
    _beanName_
    
    indent
    1
    1
    The name of the GBean in the current configuration that contains the attribute to be configured.
    
    indent
    0
    0
    _name_
    
    indent
    1
    1
    The name of the attribute with a value that is to be configured.
    
    indent
    0
    0
    _value_
    
    indent
    1
    1
    The current configuration value that overrides the default attribute value in the current configuration.
    
  4. Change the attribute values as necessary to customize your configuration.
  5. Save and close config.xml.
  6. Restart the server and test your configuration changes.

...