Offline dependencies should be included in the URL location that provided to you. Please use the
\*deps\*
file.
NOTE: If your installation server is connected to the Internet, the required dependencies are automatically downloaded and installed for you. You may skip this section. |
Use the steps below to acquire and install dependencies required by the . If you need further assistance, please contact
.
Install software dependencies without Internet access for CentOS or RHEL:
In a CentOS or RHEL environment, the dependencies repository must be installed into the following directory:
/var/local/trifacta |
The following commands configure Yum to point to the repository in /var/local/trifacta
, which yum knows as local
. Repo permissions are set appropriately. Commands:
tar xvzf <DEPENDENCIES_ARCHIVE>.tar.gz mv local.repo /etc/yum.repos.d mv trifacta /var/local chown -R root:root /var/local/trifacta chmod -R o-w+r /var/local/trifacta |
The following command installs the RPM while disable all repos other than local, which prevents the installer from reaching out to the Internet for package updates:
NOTE: The disabling of repositories only applies to this command. |
sudo yum --disablerepo=* --enablerepo=local install <INSTALLER>.rpm |
If the above command fails and complains about a missing repo, you can add the missing repo to the enablerepo
list. For example, if the centos-base
repo is reported as missing, then the command would be the following:
sudo yum --disablerepo=* --enablerepo=local,centos-base install <INSTALLER>.rpm |
If you do not have a supported version of a Java Developer Kit installed on the , you can use the following command to install OpenJDK, which is included in the offline dependencies:
sudo yum --disablerepo=* --enablerepo=local,centos-base install java-1.8.0-openjdk-1.8.0 java-1.8.0-openjdk-devel |
Install database dependencies without Internet access:
If you are installing the databases on a node without Internet access, you can install the dependencies using either of the following commands:
NOTE: This step is only required if you are installing the databases on the same node where the software is installed. |
For PostgreSQL:
sudo yum --disablerepo=* --enablerepo=local install postgresql96-server |
For MySQL:
sudo yum --disablerepo=* --enablerepo=local install mysql-community-server |
NOTE: You must also install the MySQL JARs on the |
Database are installed after the software is installed. For more information, see Install Databases.
Install dependencies without Internet access in Ubuntu:
If you are trying to perform a manual installation of dependencies in Ubuntu, please contact .