让php在Red Hat 5 linux上使用httpd

时间:2013-03-24 10:17:37

标签: php mysql apache rhel

我正在尝试从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环境的新手。

任何帮助表示赞赏!!

1 个答案:

答案 0 :(得分: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将出现在您的系统上。