This documentation is for a release that is no longer maintained
See documentation for the latest supported version 3 or the latest supported version 4.이 콘텐츠는 선택한 언어로 제공되지 않습니다.
7.3. Enabling Kernel Modules
Execute the following commands to enable kernel modules:
- You must ensure that the
dm_thin_pool
andtarget_core_user
modules are loaded in the Red Hat Gluster Storage nodes.modprobe target_core_user
# modprobe target_core_user
Copy to Clipboard Copied! Toggle word wrap Toggle overflow modprobe dm_thin_pool
# modprobe dm_thin_pool
Copy to Clipboard Copied! Toggle word wrap Toggle overflow Execute the following command to verify if the modules are loaded:lsmod | grep dm_thin_pool
# lsmod | grep dm_thin_pool
Copy to Clipboard Copied! Toggle word wrap Toggle overflow lsmod | grep target_core_user
# lsmod | grep target_core_user
Copy to Clipboard Copied! Toggle word wrap Toggle overflow Note
To ensure these operations are persisted across reboots, create the following files and update each file with the content as mentioned:cat /etc/modules-load.d/dm_thin_pool.conf dm_thin_pool
# cat /etc/modules-load.d/dm_thin_pool.conf dm_thin_pool
Copy to Clipboard Copied! Toggle word wrap Toggle overflow cat /etc/modules-load.d/target_core_user.conf target_core_user
# cat /etc/modules-load.d/target_core_user.conf target_core_user
Copy to Clipboard Copied! Toggle word wrap Toggle overflow - You must ensure that the
dm_multipath
module is loaded on all OpenShift Container Platform nodes.modprobe dm_multipath
# modprobe dm_multipath
Copy to Clipboard Copied! Toggle word wrap Toggle overflow Execute the following command to verify if the modules are loaded:lsmod | grep dm_multipath
# lsmod | grep dm_multipath
Copy to Clipboard Copied! Toggle word wrap Toggle overflow Note
To ensure these operations are persisted across reboots, create the following file and update it with the content as mentioned:cat /etc/modules-load.d/dm_multipath.conf dm_multipath
# cat /etc/modules-load.d/dm_multipath.conf dm_multipath
Copy to Clipboard Copied! Toggle word wrap Toggle overflow