Installing the Oracle-Supported OFED Packages
This section describes how to install the OFED packages provided by Oracle, including how to remove any existing OFED packages.
To install the OFED packages provided by Oracle:
-
If your system is registered with ULN, subscribe the system to the
ol6_x86_64_UEKR4_OFED
orol7_x86_64_UEKR4_OFED
channel on ULN as appropriate.If you want to install the packages from the Oracle Linux yum server:
-
Move the existing yum repository file to a backup file, for example:
# mv /etc/yum.repos.d/public-yum-olN.repo /etc/yum.repos.d/public-yum-olN.repo.bck
-
Download the latest yum repository file for Oracle Linux 6 or Oracle Linux 7 from the Oracle Linux yum server.
# wget -O /etc/yum.repos.d/public-yum-olN.repo https://yum.oracle.com/public-yum-olN.repo
-
Edit the downloaded yum repository file and enable the
ol6_UEKR4_OFED
orol7_UEKR4_OFED
repository as appropriate.
-
-
If you are running Oracle Linux 7, stop and disable the
rdma.service
service.# systemctl stop rdma.service # systemctl disable rdma.service
-
If you are transitioning from an earlier UEK version, such as UEK R2 or UEK R3, you must remove any existing OFED packages and clean any cached files from all previously enabled repositories. You do not need to perform this step if you are already running a version of UEK R4.
# yum remove 'ibacm*' # yum remove 'ib-bonding*' # yum remove 'ibutils*' # yum remove 'infiniband-diags*' # yum remove 'libibcm*' # yum remove 'libibmad*' # yum remove 'libibumad*' # yum remove 'libibverbs*' # yum remove 'libmlx4*' # yum remove 'librdmacm*' # yum remove 'libsdp*' # yum remove 'mstflint*' # yum remove 'ofed-docs*' # yum remove 'ofed-scripts*' # yum remove 'opensm*' # yum remove 'perftest*' # yum remove 'qperf*' # yum remove 'sdpnetstat*' # yum remove 'rdma-*' # yum remove 'rds-tools*'
Clean all yum cached files from all enabled repositories:
# yum clean all
-
Install the OFED packages for UEK R4.
# yum install oracle-ofed-release
-
Enable the RDMA service by entering the following command:
# chkconfig rdma on
Note:
Each UEK release requires a different set of OFED packages. If you change the kernel on your system to a UEK release earlier than UEK R4, use the following command to remove the existing UEK R4-based OFED packages before installing the correct packages for the new kernel:
# yum remove --setopt=clean_requirements_on_remove=1 oracle-ofed-release
Downgrading UEK versions is not advisable except for testing purposes.
To update OFED packages already installed for UEK R4, simply run:
# yum update oracle-ofed-release