CentOS4.4(32位)完美安装过程

http://tech.ddvip.com   2007年02月27日    社区交流

本文详细介绍CentOS4.4(32位)完美安装过程

5 Disable SELinux

  (You can skip this chapter if you have already disabled SELinux during the basic system installation.)

  SELinux is a security extension of CentOS that should provide extended security. In my opinion you don't need it to configure a secure system, and it usually causes more problems than advantages (think of it after you have done a week of trouble-shooting because some service wasn't working as expected, and then you find out that everything was ok, only SELinux was causing the problem). Therefore I disable it (this is a must if you want to install ISPConfig later on).

  Edit /etc/selinux/config and set SELINUX=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 - SELinux is fully disabled.
SELINUX=disabled
# SELINUXTYPE= type of policy in use. Possible values are:
#    targeted - Only targeted network daemons are protected.
#    strict - Full SELinux protection.
SELINUXTYPE=targeted

  Afterwards we must reboot the system:

  shutdown -r now

6 Install Some Software

  First we import the GPG keys for software packages:

  rpm --import /usr/share/rhn/RPM-GPG-KEY*

作者:till on Wed    责编:豆豆技术应用

正在加载评论...