環境(Environment)
|
|
|
作業系統:CentOS 6.8伺服器:Apache 2.4.29 | 其他關鍵依賴函式庫:apr 1.6.3、apr-util 1.6.1、pcre-8.41 |
#指令(Command ) |
解壓縮指令 |
|
|
#指令格式
指令說明 |
指令參數解釋 |
|
tar zxvf [dir1] -C [dir2] |
將dir1下的檔案解壓縮到dir2指定的目錄下 |
無 |
rpm -qa [software-name]
rpm -e --nodeps [software-full-name]
卸載指定名稱的軟體
--nodeps:不做軟體之間的依賴檢查
|
./configure --prefix=[dir] --with-[lib]#無 |
--prefix:指定安裝目錄--with-[ lib]:依賴(個人理解) |
|
|
Apache安裝
編譯安裝(make install)
|
問題(problem)
|
|
發生時間 |
| 錯誤內容
解決方案(個人) |
解決方案(網路)權重 |
|
|
#Apache 安裝時 |
error :Cannot use an external APR with the bundled APR-util |
#對apr-util重新進行編譯安裝Google |
|
|
#Apache 安裝時 |
error:Did not find pcre-config script at [dir] |
將pcre2替換為pcre,然後進行編譯安裝Google |
低 |
|
pcre安裝時 |
error: You need a C Compiler for C Support |
##Googleyum install -y gcc gcc-c |
#低 |
|
Apache 安裝時 |
|
|
|
|
|
|
error:pcre-config for libpcre not found |
在./configure 設定時使用--with-pcre=[dir]指定pcre安裝目錄 |
#重新安裝或第一次安裝pcre |
低 |
Apache 安裝時error:no acceptable C complier found in $PATH##### ####Google######yum -y install gcc######高#############apr-util 安裝時######(一部分錯誤提示)###error:'apr_xml_parser' has no memebr named 'xp'#########Google######yum install expat-devel######低########yum install expat-devel######低###### ######Apache 安裝時######(一部分錯誤提示)###error:openssl version is too old#########Google#######yum install openssl- develyum update openssl######高###############第一次寫這個總結,如有不對之處,歡迎dalao指出(給dalao遞女裝)。 ######