-1

我正在尝试从 linux 上的源代码安装 php。

我怎样才能使它与我当前活动的 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

如何仅使用我的 httpd 服务从源代码安装 php?我的 httpd.conf 文件位于:/etc/httpd/conf/httpd.conf 位置..

PS:我是linux环境的新手。

任何帮助表示赞赏!

4

1 回答 1

0

试试这个,在命令行上运行:

updatedb
locate apxs

而不是添加apxs路径configure

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

如果未安装,请运行updatedb并安装包。之后,将在您的系统上。locateyastfindutils-locateupdatedblocate

于 2013-03-24T10:29:15.773 回答