インストール直後のOSの設定では、SELinux(セキュリティ拡張モジュール)の設定が、"enforcing"に設定されています。この設定のままお使いいただくと、Denbunは正常に動作することができない場合がありますので、"disabled"に変更してください。
SELinuxの設定ファイル編集します。
viコマンドで、SELinuxの設定ファイルを開きます。
※通常、SELinuxの設定ファイルは /etc/selinux/config です。
|
root@xxxxxx guest]# vi /etc/selinux/config
|
設定ファイルの"SELINUX"ディレクティブを編集します。
|
# 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 - SELinux is fully disabled.
#SELINUX=enforcing
SELINUX=disabled ←"disabled"に設定
# SELINUXTYPE= type of policy in use. Possible values are:
# targeted - Only targeted network daemons are protected.
# strict - Full SELinux protection.
SELINUXTYPE=targeted
|
編集が完了したら、viコマンドの":wq"(保存して閉じる)を実行してください。