This is an old revision of the document!


Software Installation: Installation Guides

Linux Installation Guide

This guide describes how to install and license the Omnidex software on a Linux operating system.

1. Remove any previous non-RPM installations of Omnidex

If a previous version of Omnidex has been installed without using RPM, please remove this version of the software before proceeding.

Note that if you have installed Omnidex on databases, it is not necessary to remove the Omnidex indexes on those databases before installing a new version of Omnidex. The existing indexes may be able to be reused.

2. Downloading the software

Download the software from the Downloads tab in this documentation. Be sure to choose correctly between the 32-bit and 64-bit versions of the software.

Omnidex is available as an RPM file or as a TAR file. Both installations contain the same Omnidex software.

3. Log on as root

Omnidex should be installed using the 'root' system user. Alternatively, Omnidex can be installed with the sudo command.

4. Install the Omnidex RPM file

Omnidex is most easily installed using the RPM format. While logged on as the 'root' user, use the rpm command to install the software. Note that the exact filename will be different for each version of Omnidex.

  # rpm -Uvf omnidex-5.3-07H.el6.linux.x86_64.rpm                                   
  Preparing packages for installation...
  omnidex-5.3-07H.el6.linux
  # 

The Omnidex installation performs the following tasks:

  1. Copy the Omnidex files into /opt/omnidex directory.
  2. Create symbolic links in /usr/bin for odxsql, odxnet, omnidex, and odxversions.
  3. Create omnidex.conf file in /etc/ld.so.conf.d directory. The file omnidex.conf contains the path to the Omnidex libraries (/opt/omnidex/lib).

5. Prepare Omnidex for use with Java (optional)

To use Omnidex with Java, you must set these environment variables:

  export LD_LIBRARY_PATH="opt/omnidex/lib:$LD_LIBRARY_PATH"
  export CLASSPATH="/opt/omnidex/lib/Omnidex.jar:$CLASSPATH"

To use OdxSQL as a Java client for testing purposes, you also must add the directory containing libjvm.so to LD_LIBRARY_PATH.

6. Install Omnidex to run as a service (optional)

Omnidex is usually run as a service, though it can be run in a console window as well. The files needed to set up Omnidex as a service are automatically placed in /etc/init.d upon installation.

The following commands are available to manage the Omnidex service:

  service omnidexd start        (start omnidex as a service)
  service omnidexd stop         (stop omnidex as a service)
  service omnidexd restart      (restart omnidex as a service)
  service omnidexd status       (check if omnidex is running as a service)

To manage whether the Omnidex service starts every time the system is rebooted, use the following commands:

  chkconfig --add omnidexd      (add omnidex service to startup)
  chkconfig --del omnidexd      (remove omnidex service from startup)
  chkconfig --list omnidexd     (check if omnidex service is in the startup)


If you have any difficulty installing Omnidex on your Linux operating system, please contact Technical Support for assistance.

Additional Resources

See also:

 
Back to top
install/guides/linux.1394117812.txt.gz ยท Last modified: 2016/06/28 22:38 (external edit)