Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Published by Scroll Versions from space IDS and version 8.2

Ubisecure SSO service needs to be stopped at this point if SSO is installed on the same server as CID and SSO is using port 8443. 

Code Block
languagetext
systemctl stop /etc/init.d/ubilogin-server stop

First, extract WildFly distribution package to /usr/local/. The newly created folder /usr/local/wildfly-x.x.x.Final will henceforth be referred to as $WILDFLY_HOME. 

Code Block
languagetext
cd /usr/local/
tar xzvf ~/customerid/wildfly-x.x.x.Final-linux.tar.gz

Next, create the user "wildfly" and make wildfly the owner of the $WILDFLY_HOME folder: 

Code Block
languagetext
useradd -d /usr/local/wildfly-x.x.x.Final -M wildfly
chown -R wildfly:wildfly /usr/local/wildfly-x.x.x.Final

...

Code Block
languagetext
systemctl start wildfly

Uninstalling WildFly

In case you need to uninstall WildFly here are the instructions for it. To uninstall WildFly just remove the service files. 

...