Running the install.sh script returns "error: Failed dependencies:"
Release : 7.x, 8.x
Component : RHEL
The RPM packages require dependencies that are missing from the server.
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: you need to create the directory where the dependency rpms are downloaded to. /path/to/dlp/download is an example path and that should be changed to the path that is reachable on the system
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.
If using a local repo instead of redhat repositories add the switch --enablerepo=*, for example: