2013-03-24 95 views
-1

我想從linux上安裝PHP。使PHP與紅帽子5上的httpd一起使用linux linux

我如何使它與當前活動的httpd服務一起工作?我不想爲相同的目的安裝apachectl。

根據這本書我在那裏讀書的命令給出:

./configure --prefix=/usr/local/php \ 
--with-mysqli=/usr/local/mysql/bin/mysql_config \ 
--with-apxs2=/usr/local/apache2/bin/apxs 

make 

make install 

我如何使PHP從源安裝,只有我的httpd服務? 我的httpd.conf文件位於:/etc/httpd/conf/httpd.conf位置..

PS:我是linux環境的新手。

任何幫助讚賞!

回答

0

試試這個,在命令行運行:

updatedb 
locate apxs 

比增加apxs路徑configure

./configure --prefix=/usr/local/php \ 
--with-mysqli=/usr/local/mysql/bin/mysql_config \ 
--with-apxs2=[full_path]apxs 

如果updatedblocate沒有安裝,運行yast和安裝包findutils-locate。之後,updatedblocate將會在您的系統上。

相關問題