Linux下安装配置PHP环境(上)---Apache2

2019独角兽企业重金招聘Python工程师标准>>> hot3.png

参考来源地址:

http://www.linuxidc.com/Linux/2015-05/118062.htm

http://chenzhou123520.iteye.com/blog/1817563

http://cuisuqiang.iteye.com/blog/2068794

http://cuisuqiang.iteye.com/blog/2070460

...还有几个被我关闭了

下面记录下我的安装过程:

安装Apache2.4.29
1、到官网下载  http://httpd.apache.org/download.cgi   
2、解压
   tar  -zxvf httpd-2.4.29.tar.gz
3、建立目标文件夹(注意以下所有操作都时在root用户下执行的)
   mkdir /usr/local/apache2
   也就是说等下安装的apache2要安装到这个文件夹里面
4、配置
   回到原来解压之后产生的文件夹
   ./configure --prefix=/usr/local/apache2 --enable-module=shared
   要加上后面的参数,否则无法使用php,-enable-module=shared表示Apache可以动态的加载模块
这一步,检查编辑环境时出现出现了很多问题:
第一个错误为:
checking for APR... no
configure: error: APR not found.  Please read the documentation.

5,解决办法开始:===============================================
1.下载所需软件包:
wget http://archive.apache.org/dist/apr/apr-1.4.5.tar.gz  
wget http://archive.apache.org/dist/apr/apr-util-1.3.12.tar.gz   
2.编译安装:
yum remove apr-util-devel apr apr-util-mysql apr-docs apr-devel apr-util apr-util-docs 
具体步骤如下:
a:解决apr not found问题>>>>>>
[root@localhost apache]# tar -zxf apr-1.4.5.tar.gz  
[root@localhost apache]# cd  apr-1.4.5  
[root@localhost apr-1.4.5]# ./configure --prefix=/usr/local/apr  
[root@localhost apr-1.4.5]# make && make install  
 
b:解决APR-util not found问题>>>>
[root@localhost apache]# tar -zxf apr-util-1.3.12.tar.gz  
[root@localhost test]# cd apr-util-1.3.12  
[root@localhost apr-util-1.3.12]# ./configure --prefix=/usr/local/apr-util -with- apr=/usr/local/apr/bin/apr-1-config  
[root@localhost apr-util-1.3.12]# make && make install 

c:解决pcre问题>>>>>>>>>

先去官网下载pcre的安装包
如果通过FTP的方式,下载地址为:ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/
如果通过http的方式,下载地址为:http://sourceforge.net/projects/pcre/files/pcre/
linux对应的安装包名称为:pcre-8.38.tar.gz
[root@localhost apache]#tar -zxf pcre-8.38.tar.gz  
[root@localhost apache]#cd pcre-8.38  
[root@localhost pcre-8.38]#./configure --prefix=/usr/local/pcre  
[root@localhost pcre-8.38]#make && make install 

解决方法结束=====================================================

6,返回到apache2.4.29的解压目录下:/home/apache/httpd-2.4.29/

[root@localhost httpd-2.4.29]# ./configure --prefix=/usr/local/apache2 --enable-so -enable-proxy -enable-proxy_http=shared--enable-module=so --enable-mods-shared=all --enable-proxy-ajp=shared  --enable-proxy-balancer -with-mpm=worker --with-apr=/usr/local/apr --with-apr-util=/usr/local/apr-util/ --with-pcre=/usr/local/pcre  

[root@localhost httpd-2.4.29]#  make  

[root@localhost httpd-2.4.29]# make install

7、启动,重启和停止 ,先切换到安装完成后的目录/usr/local/apache2/bin
    ./apachectl -k start
    ./apachectl -k restart
    ./apachectl -k stop  
8、配置文件(满足最基本的配置)
     编辑 /usr/local/apache2/conf/httpd.conf 文件     
     找到:
    AddType  application/x-compress .Z
    AddType application/x-gzip .gz .tgz
    在后面添加:
    AddType application/x-httpd-php .php(使Apcche支持PHP)
    AddType application/x-httpd-php-source .php5   
    找到:
   
    DirectoryIndex index.html
   

    添加:
   
    DirectoryIndex index.html index.php
   
   
    找到:
    #ServerName www.example.com:80
    修改为:
    ServerName 127.0.0.1:80或者ServerName localhost:80
    记得要去掉前面的“#”    
9、测试
由于我是在虚拟机里装的所以我在本地输入虚拟机的ip测试:
在浏览器里输入http://10.206.14.129/
如果出现It Works!说明成功。

有图有真相:

Linux下安装配置PHP环境(上)---Apache2_第1张图片

10、修改默认的Web站点目录
默认的目录为  "/usr/local/apache2/htdocs",修改apache的配置文件httpd.conf,比如在新建一个 /home/gyw/WebSite的目录作为apache的站点目录
找到DocumentRoot这一行修改为:DocumentRoot "/home/gyw/WebSite"
找到 这一行修改为: 
测试:修改到文件夹出现错误:
“You don't have permission to access /index.html on this server.”
解决方法:
更改文件权限;chmod 755 index.html
打开apache配置文件httpd.conf,找到这么一段:

    Options FollowSymLinks
    AllowOverride None
    Order deny,allow
    deny from all
    Satisfy all

 

转载于:https://my.oschina.net/fengJeen/blog/1588419

你可能感兴趣的:(Linux下安装配置PHP环境(上)---Apache2)