Developers Getting Started With i2b2
Space shortcuts
Space Tools
Developers Getting Started With i2b2 getstarted

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

== Create a wildfly user

  # groupadd -r wildfly
  # useradd -r -g wildfly -d /opt/wildfly -s /sbin/nologin wildfly

== Install WildFly

  # tar xvzf wildfly-37.0.1.Final.tar.gz -C /opt
  # ln -s /opt/wildfly-37.0.1.Final /opt/wildfly
  # chown -R wildfly:wildfly /opt/wildfly

== Configure systemd

  # mkdir /etc/wildfly
  # cp wildfly.conf /etc/wildfly/
  # cp wildfly.service /etc/systemd/system/
  # cp launch.sh /opt/wildfly/bin/
    # chmod +x /opt/wildfly/bin/launch.sh

== Start and enable

  # systemctl start wildfly.service
    # systemctl enable wildfly.service

Wildfly 17 (i2b2 1.7.12-1.8.1)

The information in this section will guide you through setting up Wildfly 17 to run as a Linux Service.

...

Developers Getting Started With i2b2 getstarted