Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Version published after converting to the new editor

Before installation, make sure that

...

  1. Generate a new configuration file (config.properties):

    Code Block
    languagexml
    > python deployment/generate_configuration.py -p <profile> -d lequinox -f </path/to/config_directory>/config.properties


  2. Make sure the "-Dconfig.path=<path/to/config_directory>" is included in your JAVA_OPTS environment variable.
  3. Prepare the database by running the following python script:

    Code Block
    languagexml
    > python deployment/pre_deploy_config_all.py -p <profile> -d lequinox


  4. Start the WildFly server and wait until all services are started.

    Code Block
    languagexml
    > python deployment/start_jboss.py -p <profile>


  5. Configure WildFly (the script adds datasources, enables HTTPS etc.):

    Code Block
    languagexml
    > python deployment/jboss_config_all.py -p <profile> -d lequinox

    See jboss_config_all.py for limitations.

  6. Deploy artifacts from current release directory and wait until all artifacts are deployed:

    Code Block
    languagexml
    > python deployment/deploy_all.py -p <profile> -d lequinox -a <artifacts_path>


  7. Run the following python script to finalise the deployment:

    Code Block
    languagexml
    > python deployment/post_deploy_config_all.py -p <profile> -d lequinox


  8. Check the status of running services on "https://<FQDN>:<PORT>/status".

...