Versions Compared

Key

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

Table of Contents

Info

Using the System Console is described in the Using Console Commands section.

Managing Features

Include Page
_Managing Features
_Managing Features

...

  1. Determine which feature to install by looking at the available features on

    Insert excerpt
    ApplicationName
    ApplicationName
    nopaneltrueApplicationName
    .

    Code Block
    languagenone
    ddf@local>features:list

    The console should output a list of all features available (installed and uninstalled). A snippet of the list output is shown below (the versions may differ based on the version of

    Insert excerpt
    ApplicationName
    ApplicationName
    nopaneltrueApplicationName
    being run):

    Code Block
    languagenone
    State         Version          Name                          Repository  Description
    [installed  ] [2.0.1         ] ddf-core                      ddf-2.1.0
    [uninstalled] [2.0.1         ] ddf-sts                       ddf-2.1.0
    [installed  ] [2.0.1         ] ddf-security-common           ddf-2.1.0
    [installed  ] [2.0.1         ] ddf-resource-impl             ddf-2.1.0
    [uninstalled] [2.0.1         ] ddf-source-dummy              ddf-2.1.0
  2. Install the desired feature.

    Code Block
    languagenone
    ddf@local>features:install ddf-source-dummy
  3. Check the feature list to verify the feature was installed.

    Code Block
    languagenone
    ddf@local>features:list
    Code Block
    languagenone
    State         Version          Name                          Repository  Description
    [installed  ] [2.0.1         ] ddf-core                      ddf-2.1.0
    [uninstalled] [2.0.1         ] ddf-sts                       ddf-2.1.0
    [installed  ] [2.0.1         ] ddf-security-common           ddf-2.1.0
    [installed  ] [2.0.1         ] ddf-resource-impl             ddf-2.1.0
    [installed  ] [2.0.1         ] ddf-source-dummy              ddf-2.1.0
  4. Check the bundle status to verify the service is started.

    Code Block
    languagenone
    ddf@local>list

    The console output should show an entry similar to the following:

    Code Block
    languagenone
    [ 117] [Active     ] [            ] [Started] [   75] DDF :: Catalog :: Source :: Dummy (<version>)

...