Installing on Linux
Use the platform-native installer to install the product on Linux platforms. The installer provides a collection of RPM, DEB, and tar packages.
Prerequisites
On SUSE Linux, ensure that
libjvm library is already installed.
Procedure
-
Download the installation package.
TIB_msg-apd_2.4.2_linux_x86_64.zip
-
Create a temporary directory and navigate to that directory.
mkdir /tmp/msg-apd-installation
cd /tmp/msg-apd-installation
-
Extract the
Apache Pulsar archive files.
unzip TIB_msg-apd_2.4.2_linux_x86_64.zip
The extraction command places installation RPM, DEB, and tar artifacts in subdirectories of the temporary directory.
-
Install using one of these commands, depending on the Linux platform variant.
| Linux Variant
|
Command
|
| Red Hat, Centos
|
sudo yum install -y rpm/*.rpm
|
| Debian, Ubuntu, Fedora
|
sudo dpkg -i deb/*.deb
|
| SUSE
|
sudo zypper install rpm/*.rpm
Note: If you encounter issues with dependencies, you can safely ignore those dependencies and proceed with the installation.
|
| Other Linux variants
|
If your Linux variant does not include
yum,
dpkg, or
zypper, you can use
tar.
for f in tar/*; do sudo tar xvf $f; done
|
The installation utilities
yum,
dpkg, or
zypper install TIBCO Messaging software under
/opt/tibco/.
In contrast, the archive utility
tar installs TIBCO Messaging software under
./opt/tibco/.
-
Optional. You may delete the temporary directory.
Copyright © Cloud Software Group, Inc. All rights reserved.