Heim  >  Artikel  >  Backend-Entwicklung  >  Linux笔记(60)——详解apache集成php

Linux笔记(60)——详解apache集成php

WBOY
WBOYOriginal
2016-07-29 08:58:03900Durchsuche

安装php源码包

关于apache的安装,参考Linux笔记(58)——详解apache源码包安装

安装php

安装依赖包

如果直接编译安装php,会报错,因为它依赖的一些包我们没有安装,它依赖libxml2,libxml2-devel这两个

我们要先安装这两个包,用以下方法安装:

方法一:要求有相应的rpm包

<code>rpm -ivh libxml2-<span>2.6</span><span>.23</span>-<span>1.2</span><span>.i</span>386<span>.rpm</span>rpm -ivh libxml2-devel-<span>2.6</span><span>.23</span>-<span>1.2</span><span>.i</span>386<span>.rpm</span></code>

方法二:使用yum安装

<code>yum <span>-y</span> install libxml2
yum <span>-y</span> install libxml2<span>-devel</span></code>

安装php

然后真正开始安装php:先下载源码包,依次执行以下命令:

<code>tar <span>-zxvf</span> php<span>-</span><span>5.6</span><span>.19</span><span>.</span>tar<span>.</span>gz
cd php<span>-</span><span>5.6</span><span>.19</span><span>.</span>/configure <span>--</span>prefix<span>=</span>/usr/<span>local</span>/php <span>--</span><span>with</span><span>-apxs2</span><span>=</span>/usr/<span>local</span>/apache/bin/apxs 
make <span>&&</span> make install</code>

注意:上面命令中的–with-apxs2:apxs是安装apache时就有的工具,是用于拓展模块的工具,因此为了将php和apache集成起来,在安装php时需要指定apxs路径

安装完之后,查看apache的配置文件httpd.conf就会发现多了这一句(原本是没有这一句的):

Linux笔记(60)——详解apache集成php

配置

安装完成之后,在apache配置文件httpd.conf,查找AddType,加上这两句:

Linux笔记(60)——详解apache集成php

找到DirectoryIndex,在末尾加上index.php

Linux笔记(60)——详解apache集成php

从源码包解压出来的目录下可以找到以下两个文件

Linux笔记(60)——详解apache集成php

一个是用于开发环境,一个用于生产环境。复制其中一个到/usr/local/php/lib下,并重命名为php.ini

至此,php的安装和集成都已经完成了

测试

创建一个index.php

Linux笔记(60)——详解apache集成php

访问一下,出现php信息页面,说明php安装成功,并且和apache集成成功了:

Linux笔记(60)——详解apache集成php

').addClass('pre-numbering').hide(); $(this).addClass('has-numbering').parent().append($numbering); for (i = 1; i ').text(i)); }; $numbering.fadeIn(1700); }); });

以上就介绍了Linux笔记(60)——详解apache集成php,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn