Running the install.sh script returns "error: Failed dependencies:"
The RPM packages require dependencies that are missing from the server.
Release : 6.x, 7.x, 8.x
Component : RHEL
Use yum to automatically find and install the missing dependencies. Run the following command from directory where the RPM files were extracted:
for i in `ls *.rpm`; do yum deplist ./$i | sort -u | xargs yum -y install; done;
You can proceed with the install by running either one of the following:
./install.sh
or
yum localinstall *.rpm
Download the rpms dependencies locally and install from disk.
NOTE: change /path/to/dlp/rpms to where you extracted the DLP rpms.
The for loop uses a backtick and not an apostrophe.
NOTE: method 2 works for redhat8.x, method1 works for RHEL 6.x. Rhel 7.x could use method 1 or 2.