溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

如何使用CentOS 7.4搭建Apache網(wǎng)站服務(wù)

發(fā)布時間:2020-05-27 23:18:39 來源:億速云 閱讀:272 作者:鴿子 欄目:系統(tǒng)運維

一、安裝Apache服務(wù)

關(guān)于安裝Apache詳細配置及原理概述請參考:CentOS 7.4搭建Apache網(wǎng)站服務(wù)

[root@centos01 ~]# mount /dev/cdrom /mnt/      <!--掛載LAMP光盤-->
[root@centos01 ~]# cp /mnt/* /usr/src/       <!--將mnt目錄下的程序包拷貝到/usr/src/-->
[root@centos01 ~]# mount /dev/cdrom /mnt/     <!--切換操作系統(tǒng)光盤-->
[root@centos01 ~]# rm -rf /etc/yum.repos.d/CentOS-*   <!--刪除系統(tǒng)自動yum-->
[root@centos01 ~]# tar zxvf /usr/src/httpd-2.2.17.tar.gz -C /usr/src/  <!--解壓縮Apache包-->
[root@centos01 ~]# cd /usr/src/httpd-2.2.17/    <!--進入Apache目錄-->
[root@centos01 httpd-2.2.17]# ./configure 
--prefix=/usr/local/httpd 
--enable-so 
--enable-rewrite 
--enable-charset-lite 
--enable-cgi          <!--配置httpd-->
[root@centos01 httpd-2.2.17]# make && make install      <!--編輯和安裝httpd-->
[root@centos01 ~]# ln -s /usr/local/httpd/bin/* /usr/local/bin/     <!--優(yōu)化程序執(zhí)行命令-->
[root@centos01 ~]# cp /usr/local/httpd/bin/apachectl /etc/init.d/httpd <!--生成apahce服務(wù)-->
[root@centos01 ~]# chmod +x /etc/init.d/httpd       <!--添加執(zhí)行權(quán)限-->
[root@centos01 ~]# vim /etc/init.d/httpd     <!--修改Apache服務(wù)控制文件-->
#chkconfig:35 80 20 
#description:apache 
[root@centos01 ~]# chkconfig --add httpd       <!--添加為系統(tǒng)服務(wù)-->
[root@centos01 ~]# chkconfig --level 35 httpd on  <!--設(shè)置開機自動啟動-->
[root@centos01 ~]# vim /usr/local/httpd/conf/httpd.conf    <!--修改Apache主配置文件-->
98 ServerName 192.168.100.10:80     <!--修改服務(wù)器IP地址-->
[root@centos01 ~]# systemctl start httpd     <!--啟動Apache服務(wù)-->
[root@centos01 ~]# netstat -anptu | grep 80   <!--監(jiān)聽Apache端口號-->
tcp6       0      0 :::80                   :::*                    LISTEN      53682/httpd         

向AI問一下細節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI