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”.openempi”.

Code Block
languagebash
sudo mkdir -p /sysnet/openempi

...


chown openempi:openempi /sysnet/openempi

...


cd /sysnet/openempi

...


tar xf /tmp/openempi-entity-4.0.0-l-release.tar.gz

2. 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.0.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.0.0).

Code Block
languagebash
cd /sysnet/openempi/openempi-4.0.0

...


./post-install.sh /sysnet/openempi/openempi-4.0.0 4.0.0

3. The next step is to configure the database instance for the release. The release assumes that you are using the standard Postgres database and it is pre-configured for that database. If you are using an alternate database please follow the appropriate instructions.

...

  1. You can now start the instance using the startup command.

Code Block
languagebash
cd /sysnet/openempi/openempi-4.0.0

...



bin/startup.sh

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

Code Block
languagebash
cd /sysnet/openempi/openempi-4.0.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).