1. 程式人生 > >Apache服務部署

Apache服務部署

環境 force start 安裝軟件 tables art etc top 部署

部署服務的一般步驟:

1.準備環境

  關閉防火墻: service iptables stop(chkconfig iptables off)

  關閉selinux: setenforce 0(/etc/sysconfig/selinux -> selinux=disabled)

  配置IP地址

2.安裝軟件包

3.修改配置文件

4.重啟服務

部署apache服務

apache提供網頁訪問服務

步驟:

yum install httpd –y

vim /etc/httpd/conf/httpd.conf

Listen 80(http默認80端口)

DocumentRoot “/var/www/html”(默認頁面為其下的index.html)

hostname 域名, vim /etc/hosts ->修改對應域名(需要DNS解析)

service httpd restart

Apache服務部署