RHEL7原始碼安裝Apache服務
Apache 是世界使用排名第一的 Web 伺服器軟體。它可以執行在幾乎所有廣泛使用的計算機平臺上,由於其跨平臺和安全性被廣泛使用,是最流行的 Web 伺服器端軟體之一。 |
下載安裝包
[root@chao tools]# wget --2020-05-28 15:28:00-- 正在解析主機 mirror.bit.edu.cn (mirror.bit.edu.cn)... 202.204.80.77, 219.143.204.117, 2001:da8:204:1205::22 正在連線 mirror.bit.edu.cn (mirror.bit.edu.cn)|202.204.80.77|:443... 已連線。 已發出 HTTP 請求,正在等待回應... 200 OK 長度:9348230 (8.9M) [application/octet-stream] 正在儲存至: “httpd-2.4.43.tar.gz” 100%[=========================================================================================================>] 9,348,230 204KB/s 用時 51s 2020-05-28 15:28:57 (180 KB/s) - 已儲存 “httpd-2.4.43.tar.gz” [9348230/9348230]) [root@chao tools]# ls httpd-2.4.43.tar.gz
安裝依賴元件
[root@chao yum.repos.d]# yum install apr apr-util apr-devel apr-util-devel pcre pcre-devel 已載入外掛:fastestmirror, langpacks 123 | 3.6 kB 00:00:00 Loading mirror speeds from cached hostfile 正在解決依賴關係 --> 正在檢查事務 ---> 軟體包 apr.x86_64.0.1.4.8-3.el7 將被 安裝 ---> 軟體包 apr-devel.x86_64.0.1.4.8-3.el7 將被 安裝 ---> 軟體包 apr-util.x86_64.0.1.5.2-6.el7 將被 安裝 ---> 軟體包 apr-util-devel.x86_64.0.1.5.2-6.el7 將被 安裝 --> 正在處理依賴關係 openldap-devel(x86-64),它被軟體包 apr-util-devel-1.5.2-6.el7.x86_64 需要 --> 正在處理依賴關係 libdb-devel(x86-64),它被軟體包 apr-util-devel-1.5.2-6.el7.x86_64 需要 --> 正在處理依賴關係 expat-devel(x86-64),它被軟體包 apr-util-devel-1.5.2-6.el7.x86_64 需要 --> 正在檢查事務 ---> 軟體包 expat-devel.x86_64.0.2.1.0-10.el7_3 將被 安裝 ---> 軟體包 libdb-devel.x86_64.0.5.3.21-20.el7 將被 安裝 ---> 軟體包 openldap-devel.x86_64.0.2.4.44-5.el7 將被 安裝 --> 正在處理依賴關係 cyrus-sasl-devel(x86-64),它被軟體包 openldap-devel-2.4.44-5.el7.x86_64 需要 --> 正在檢查事務 ---> 軟體包 cyrus-sasl-devel.x86_64.0.2.1.26-21.el7 將被 安裝 --> 解決依賴關係完成 ......
安裝編譯環境
[root@chao httpd-2.4.43]# yum install -y gcc gcc-cc c++ 已載入外掛:fastestmirror, langpacks Loading mirror speeds from cached hostfile 沒有可用軟體包 gcc-cc。 沒有可用軟體包 c++。 正在解決依賴關係 --> 正在檢查事務 ---> 軟體包 gcc.x86_64.0.4.8.5-16.el7 將被 安裝 --> 正在處理依賴關係 cpp = 4.8.5-16.el7,它被軟體包 gcc-4.8.5-16.el7.x86_64 需要 ......
編譯安裝
[root@chao tools]# ls httpd-2.4.43.tar.gz [root@chao tools]# tar xf httpd-2.4.43.tar.gz [root@chao tools]# ls httpd-2.4.43 httpd-2.4.43.tar.gz [root@chao tools]# cd httpd-2.4.43/ [root@chao httpd-2.4.43]# ./configure --prefix=/usr/local/apache2 --enable-rewrite --enable-so checking for chosen layout... Apache checking for working mkdir -p... yes checking for grep that handles long lines and -e... /usr/bin/grep checking for egrep... /usr/bin/grep -E checking build system type... x86_64-pc-linux-gnu checking host system type... x86_64-pc-linux-gnu checking target system type... x86_64-pc-linux-gnu configure: configure: Configuring Apache Portable Runtime library... configure: checking for APR... yes setting CC to "gcc" setting CPP to "gcc -E" setting CFLAGS to " -pthread" setting CPPFLAGS to " -DLINUX -D_REENTRANT -D_GNU_SOURCE" setting LDFLAGS to " " ...... config.status: creating include/ap_config_auto.h config.status: executing default commands configure: summary of build options: Server Version: 2.4.43 Install prefix: /usr/local/apache2 C compiler: gcc -std=gnu99 CFLAGS: -pthread CPPFLAGS: -DLINUX -D_REENTRANT -D_GNU_SOURCE LDFLAGS: LIBS: C preprocessor: gcc -E
執行make
[root@chao httpd-2.4.43]# make
執行make install
[root@chao httpd-2.4.43]# make install
開放防火牆埠
[root@chao ~]# firewall-cmd --zone=public --add-port=80/tcp --permanent success [root@chao ~]# firewall-cmd --reload success
開啟apache服務
[root@chao ~]# /usr/local/apache2/bin/apachectl start
測試
原文地址:
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/31559985/viewspace-2695838/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- centos7.2原始碼安裝Apache2.4CentOS原始碼Apache
- 『學了就忘』Linux服務管理 — 79、原始碼包安裝的服務管理Linux原始碼
- Centos7下原始碼編譯安裝apacheCentOS原始碼編譯Apache
- 從原始碼安裝 Apache 1.3 和 PHP 4 (轉)原始碼ApachePHP
- Ubuntu 16.04原始碼編譯安裝Apache 2.4.25教程Ubuntu原始碼編譯Apache
- 編寫安裝配置mail服務指令碼AI指令碼
- 原始碼安裝apache(附遇到的問題及解決)原始碼Apache
- RHEL7服務管理工具systemctl
- Laravel-admin 原始碼分析系列 1——註冊服務與安裝分析Laravel原始碼
- RHEL7相關--安裝/命令
- 指令碼安裝apache+php指令碼ApachePHP
- http服務原始碼分析HTTP原始碼
- http 服務原始碼分析HTTP原始碼
- docker 安裝nacos服務Docker
- 安裝RabbitMQ Server服務MQServer
- Docker安裝Mysql服務DockerMySql
- RaspberryPI ssh 服務安裝
- Nginx服務安裝配置Nginx
- RabbitMQ服務安裝配置MQ
- windows 安裝Nginx服務WindowsNginx
- ftp服務端安裝FTP服務端
- 快速安裝Docker服務Docker
- 在Centos環境下安裝相容Apache2.4高版本SVN服務CentOSApache
- 服務端常見服務安裝及配置服務端
- 使用unbound在RHEL7上搭建DNS服務DNS
- rhel7安裝python3Python
- rhel7 安裝11g rac
- LAMP原始碼安裝+wordpress安裝LAMP原始碼
- Apache安裝Apache
- dubbo服務者原始碼分期原始碼
- Dubbo原始碼之服務引用原始碼
- Laravel原始碼解析 — 服務容器Laravel原始碼
- Dubbo服務暴露原始碼解析②原始碼
- DNS解析服務(bind)安裝DNS
- yum安裝vsftpd服務FTP
- Centos 7安裝VNC服務CentOSVNC
- .net 安裝remoting服務REM
- Windows服務建立及安裝Windows