我正在 VPS 上设置 CentOS 6 服务器。我之前使用过 Apache,但从未使用过 CentOS 6。
我想就这样吧?
sudo yum install httpd -y
sudo yum install mod_ssl -y
(然后使用chkconfig
将其设置为在启动时运行并在 下开始配置详细信息/etc/httpd/conf
。)
还有更多吗?关于进去,我应该知道什么特别的事情吗?我应该提防任何陷阱吗?
我正在 VPS 上设置 CentOS 6 服务器。我之前使用过 Apache,但从未使用过 CentOS 6。
我想就这样吧?
sudo yum install httpd -y
sudo yum install mod_ssl -y
(然后使用chkconfig
将其设置为在启动时运行并在 下开始配置详细信息/etc/httpd/conf
。)
还有更多吗?关于进去,我应该知道什么特别的事情吗?我应该提防任何陷阱吗?
yum install -y mod_ssl 就足够了。它将安装所有必需的依赖项(包括 httpd)。
安装后:chkconfig httpd on