A. 剛剛centos用源碼安裝了apache,但是啟動時發生了這樣的錯誤。。。
1、APACHE安裝/LAMP/httpd-2.4.9目錄
2、apr安裝/LAMP/apr-1.4.6目錄
3、apr-util安裝/LAMP/apr-util-1.5.3目錄
4、pcre安裝/LAMP/pcre-8.30目錄
進行pcre安裝./configuremake提示:
libtool:compile:unrecognized option:'-DHAVE_CONFIG_H『
libtool:compile:Try "libtool --help "for more information.
make[1]:***:[pcrecpp.1o] 錯誤1
make[1]:Leaving directory '/LAMP/pcre-8.30'
make:***[all]錯誤2
經網路能libtoolgcc沒安裝
5、/LAMP/httpd-2.4.9進行./configure --prefix=/usr/local/apache -enable-moles=so --enable-rewrite提示:
checking for pcre-config....flase
configure:error:pcre-congif for libpcre not found.PCRE is required and avialable from
我問題:
1、libtool安裝
2、經執行rpm -q pcre顯示:pcre-6.6-6.e15說明pcre已經安裝版本低緣故吧
3、經執行rpm -q gcc顯示:gcc-4.1.2-52.e15_8.1說明gcc已經安裝版本低呢
本CENTOS安裝APACHE碰疑問請高手指點並盡量詳細謝謝
就是/usr/local/apache2/bin/apachectl start 或者/usr/local/apache2/bin/httpdstart 他都提示在/usr/local/httpd/下找不到配置文件
B. Linux中,怎麼下載Apache,Mysql,php這些源碼安裝包
現在基本都不用這么安裝了,直接安裝個工具包,什麼都有了!!!phpstudy,中國的!網路下,就有下載地址!!!
C. 源碼安裝apache報錯如下,求助
如下:
ab.o: In function `main':
/APP/software/httpd-2.4.4/support/ab.c:2273: undefined reference to `TLSv1_2_client_method'
/APP/software/httpd-2.4.4/support/ab.c:2271: undefined reference to `TLSv1_1_client_method'
collect2: ld returned 1 exit status
make[2]: *** [ab] Error 1
make[2]: Leaving directory `/APP/software/httpd-2.4.4/support'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/APP/software/httpd-2.4.4/support'
make: *** [all-recursive] Error 1
D. 如何使用apache源代碼安裝
進入該文件夾並依次執行:
/configure --prefix=/work/installed/apr-util --with-apr=/work/installed/apr
make
make install
E. 如何將apache源碼打成rpm安裝包
這些命令一半都是製作rpm包和tar.gz調試時用的,一般的用戶不會用到這些命令 一半安裝rpm包時用命令: rpm -ivh XX.rpm 卸載命令: rpm -e XX.rpm 安裝和卸載過程其實就已經執行了上面的命令,至於具體執行那些命令
F. apache用源代碼安裝好 還是 apt-get
在 Linux 系統中,使用 apt-get 獲取軟體並安裝自動化更高一些。但是有些驅動程序是沒有現成的,是必須需要自行從網上下載後,再和系統的內核一起進行編譯。如果是從網上下載源代碼來進行編譯的話,用戶操作起來就得麻煩一些。
G. 編譯安裝apache遇到很多麻煩唉
實體機能ping通虛擬機嘛,它倆在一個網段嘛,如果互相能通信,web應該是可以訪問的!
H. 伺服器的apache安裝後怎麼設置網站源碼後面那些
運行 Terminal,輸入命令:復制代碼 代碼如下:ssh username@ip,然後輸入密碼。2. 安裝 Apache 軟體:復制代碼 代碼如下:yum install httpd3. 設置 Apache 在伺服器啟動時運行:復制代碼 代碼如下:chkconfig --levels 235 httpd on4. 在 Apache 配置文件中配置域名:復制代碼 代碼如下:vi /etc/httpd/conf/httpd.conf,找到 ServerName ,添加「域名:80」,保存並退出。5. 重啟 Apache:復制代碼 代碼如下:service httpd restart6. 瀏覽器中訪問第4步配置的域名,如果出現「Apache 2 Test Page powered by CentOS」的頁面,說明配置成功。
I. Linux編譯安裝apache httpd2.4 make報錯
缺少pcre-8.41.tar.gz包,找一個pcre和你httpd對應得版本安裝
./configure --prefix=/usr/local/pcre
make && make install
安裝好了之後,加上參數--with-pcre=/usr/local/pcre 如下所示
./configure --prefix=/usr/local/apache2 --with-apr=/usr/local/apr --with-apr-util=/usr/local/apr-util/ --with-pcre=/usr/local/pcre