編譯需要編譯環境,開發環境,開發庫,開發工具。
常用的編譯環境有c、c++、perl、java、python5種
c環境的編譯器:gcc(GNU C Complier)
c++環境的編譯器:g++
make(進行編譯的動作)編譯命令:c、c++的統一專案管理工具,編譯時有可能呼叫gcc也有可能呼叫g++。使用makefile檔案定義make按何種次序去編譯源程式檔案中的源程式
原始碼安裝三部曲(常見):
1.指定安裝路徑,例如 – prefix=/opt/nginx-1.12
2.啟用或禁用某項功能, 例如 --enable-ssl
3.和其它軟體關聯,例如–with-pcre
4.檢查安裝環境,例如是否有編譯器 gcc,是否滿足軟體的依賴需求
5.檢測通過後生成Makefile檔案
1.執行make命令進行編譯, 可以使用-j指定CPU核心數進行編譯
2.按Makefile檔案進行編譯, 編譯成可執行二進位制檔案
3.生成各類模組和主程式
1.按Makefile定義好的路徑拷貝至安裝目錄中
上面介紹的原始碼三部曲不能百分百通用於所有原始碼包, 也就是說原始碼包的安裝並非存在標準安裝步驟,但是大部分原始碼安裝都是類似的步驟
建議:
拿到原始碼包解壓後,然後進入到目錄找相關的幫助檔案,通常會以INSTALL或者README為檔名
a,如果安裝時不是使用的預設路徑,則必須要修改PATH環境變數,以能夠識別此程式的二進位制檔案路徑;
修改/etc/profile檔案或在/etc/profile.d/目錄建立一個以.sh為字尾的檔案,在裡面定義export PATH=$PATH:/path/to/somewhere
增添環境變數,使得nginx原始碼包命令服務使用的更加方便。
b,預設情況下,系統搜尋庫檔案的路徑只有/lib,/usr/lib
增添額外庫檔案搜尋路徑方法:
在/etc/ld.so.conf.d/中建立以.conf為字尾名的檔案,而後把要增添的路徑直接寫至此檔案中。此時庫檔案增添的搜尋路徑重新啟動後有效,若要使用增添的路徑立即生效則要使用ldconfig命令
ldconfig:通知系統重新搜尋庫檔案
/etc/ld.so.conf和/etc/ls.so.conf.d/*.conf //組態檔
/etc/ld.so.cache //快取檔案
-v //顯示重新搜尋庫的過程
-p //列印出系統啟動時自動載入並快取到記憶體中的可用庫檔名及檔案路徑對映關係
c,標頭檔案:輸出給系統
預設:系統在/usr/include中找標頭檔案,若要增添標頭檔案搜尋路徑,使用連結進行
man檔案路徑:安裝在–prefix指定的目錄下的man目錄
//1.基礎環境準備 [root@localhost ~]# yum -y install gcc gcc-c++ make wget
//2.下載原始碼包(原始碼包一定要上官方站點下載,其他站點不安全) [root@localhost ~]# cd /usr/src
[root@localhost src]# wget http://nginx.org/download/nginx-1.12.2.tar.gz
//3.解壓原始碼包,並進入相應目錄 [root@localhost src]# tar xf nginx-1.12.2.tar.gz
[root@localhost src]# cd nginx-1.12.2
//4.設定相關的選項,並生成Makefile [root@localhost nginx-1.12.2]# ./configure --help|head
help選項:
–help | print this message |
---|---|
–prefix=PATH | set installation prefix |
–sbin-path=PATH | set nginx binary pathname |
–modules-path=PATH | set modules path |
–conf-path=PATH | set nginx.conf pathname |
–error-log-path=PATH | set error log pathname |
–pid-path=PATH | set nginx.pid pathname |
–lock-path=PATH | set nginx.lock pathname |
//後面的內容省略了,使用 ./configure --help 命令檢視可以使用的選項
//一般常用的有 --prefix=PREFIX 這個選項的意思是定義軟體包安裝到哪裡
//建議,原始碼包都是安裝在/opt/目錄下
error-1checking for C compiler … not found ./configure: error: C compiler cc is not found
//解決方案
[root@localhost ~]# yum -y install gcc gcc-c++ make
error-2./configure: error: the HTTP rewrite module requires the PCRE library.
You can either disable the module by using --without-http_rewrite_module
option, or install the PCRE library into the system, or build the PCRE library
statically from the source with nginx by using --with-pcre=
//解決方案
[root@localhost ~]# yum install -y pcre-devel
error-3./configure: error: the HTTP gzip module requires the zlib library.
You can either disable the module by using --without-
http_gzip_module option, or install the zlib library into the
system, or build the zlib library statically from the source with
nginx by using --with-zlib=
//解決方案:
[root@localhost ~]# yum -y install zlib-devel
error-4./configure: error: SSL modules require the OpenSSL library.
You can either do not enable the modules, or install the OpenSSL
library into the system, or build the OpenSSL library statically
from the source with nginx by using --with-openssl=
//解決方案
[root@localhost ~]# yum -y install openssl-devel
[root@localhost ~]# wget http://103.95.217.6/nginx.org/download/nginx-1.18.0.tar.gz
我們首先需要安裝gcc的編譯器,通過命令dnf -y install gcc,否則後續的編譯檔案無法進行。
1,執行configure組態檔,
[root@localhost nginx-1.18.0]# ./configure --prefix=/usr/local/nginx
./configure: error: the HTTP gzip module requires the zlib library.
You can either disable the module by using --without-http_gzip_module
option, or install the zlib library into the system, or build the zlib library
statically from the source with nginx by using --with-zlib=option.
安裝zlib所需要的庫:dnf -y install zlib-devel
2,執行make命令與make install安裝命令;
安裝成功:
3,執行命令,檢視網頁。進入nginx的sbin目錄下。
[root@localhost ~]# mv apr-1.6.5.tar.gz apr-util-1.6.1.tar.gz httpd-2.4.46.tar.gz /usr/local/
1,資料解壓完後應該看到這三個資料夾。
我們首先需要安裝gcc的編譯器,通過命令dnf -y install gcc,否則後續的編譯檔案無法進行。
2,首先我們進入apr-1.6.5這個資料夾中,進行編譯安裝;
(注:如果不安裝這個apr代理,在編譯httpd中的./configure檔案時則會出現以下錯誤)
Apache2.4報錯checking for APR… no configure: error: APR not found. Please read the documentation.
所以需要進行編譯Apr代理
編譯命令:
ttar -zxf apr-1.6.5.tar.gz
cd apr-1.6.5
./configure --prefix=/usr/local/apr
make && make install
編譯Apr會出現一個問題,在configure指令碼檔案中定義了一個目錄,這個目錄變數需要註釋掉,否則出現以下錯誤:
config.status: executing libtool commands
rm: cannot remove ‘libtoolT’: No such file or directory
3,其次我們在進行編譯時又會爆出apr-util的錯誤,所以我們又需要對apr-uitl進行編譯安裝:
checking for APR-util… no
configure: error: APR-util not found. Please read the documentation.
tar -zxf apr-util-1.3.12.tar.gz
cd apr-util-1.3.12
./configure --prefix=/usr/local/apr-util -with-apr=/usr/local/apr/bin/apr
make && make install
xml/apr_xml.c:35:10: 致命錯誤:expat.h:沒有那個檔案或目錄
#include <expat.h>
^~~~~~~~~
編譯中斷。
make[1]: *** [/root/apr-util-1.6.1/build/rules.mk:206:xml/apr_xml.lo] 錯誤 1
make[1]: 離開目錄「/root/apr-util-1.6.1」
make: *** [/root/apr-util-1.6.1/build/rules.mk:118:all-recursive] 錯誤 1
dnf -y install expat-devel安裝這個庫檔案。
還可能會報出缺少pcre包,也是同樣的安裝pcre的包組。
4,將apr和apr-util依賴包組安裝完成後,就開始我們的Apache的安裝了
[root@localhost httpd-2.4.46]./configure --prefix=/usr/local/apache --with-apr=/usr/local/apr --with-apr-util=/usr/local/apr-util
[root@localhost httpd-2.4.46] make
[root@localhost httpd-2.4.46] make install