SELinux設定が有効になっている場合、インストールに失敗致します。
LinuxのSELinux設定をご確認下さい。
■SELinux設定確認方法
/usr/sbin/getenforce
enforcing
「disabled」になっていない場合、以下のように変更を行って下さい。
vi /etc/selinux/config
----------------------------
# This file controls the state of SELinux on the system.
# SELINUX= can take one of these three values:
# enforcing - SELinux security policy is enforced.
# permissive - SELinux prints warnings instead of enforcing.
# disabled - No SELinux policy is loaded.
SELINUX=disabled ←変更箇所
# SELINUXTYPE= can take one of these two values:
# targeted - Targeted processes are protected,
# mls - Multi Level Security protection.
SELINUXTYPE=targeted
----------------------------
※上記方法では、OS再起動後に設定が反映され、以降も
SELinux設定は「disabled」のままとなります