Versions Compared

Key

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

...

  1. Extract the contents of the distribution into the root of directory into the directory that will become the parent of the installation directory. In the following example we install the distribution under the /sysnet/openempi directory and assume that the distribution file resides in the /tmp directory. The following steps should be executed as the user “openempi”.

Code Block
mkdir /sysnet/openempi

...


cd /sysnet/openempi

...


tar xf /tmp/openempi-entity-4.3.0-l-release.tar.gz
  1. Configure the distribution based on the directory in which it was installed. You first change into the directory in which the distribution was extracted and run the post-install script. The post-install.sh script takes two parameters: the first is the directory in which the distribution was extracted (/sysnet/openempi/openempi-4.3.0 for the example shown here) and the second one is the version of the distribution that you are customizing (in this case it is 4.3.0).

Code Block
cd /sysnet/openempi/openempi-4.3.0

...


./post-install.sh /sysnet/openempi/openempi-4.3.0 4.3.0
  1. You can now start the instance using the startup command.

Code Block
cd /sysnet/openempi/openempi-4.3.0

...


bin/startup.sh

You can stop the server using the shutdown command in a similar manner.

Code Block
cd /sysnet/openempi/openempi-4.3.0

...


bin/shutdown.sh

You are done with the installation and should now be able to access the administrative application by pointing your browser to: http://localhost:8080/openempi-manager (default account uses username: admin and password: admin).