linux 下安装php Apache mysql

linux 下安装php Apache mysql


一、安装Apache

1.下载页面 https://httpd.apache.org/download.cgi#apache24

安装文件链接         http://apache.fayea.com//httpd/httpd-2.4.23.tar.gz

安装这个版本apache需要安装 APR   APR-Util PCRE 这几个依赖包

见安装说明:http://httpd.apache.org/docs/2.4/install.html

装好几依赖包后

解压httpd-2.4.23.tar.gz

tar -zxvf httpd-2.4.23.tar.gz

可用 ./configure --help 命令看配置安装项

 ./configure --prefix=http-PATH --with-apr=apr-PATH --with-apr-util=apr-util-PATH --with-pcre=pcre-PATH

指令说明

http-PATH  : 安装apache的目标文件夹,可以自己新建一个目标文件夹,放置安装的文件

apr-PATH : 安装apr的目录

apr-util-PATH : 安装apr-util的目录

pcre-PATH : 安装pcre的目录


接着执行

make 

make install   -- 该命令安装文件到指定的 http-PATH 目录


安装完apache后,修改配置文件 httpd.conf

添加

AddType application/x-httpd-php .php

AddType application/x-httpd-php-source .phps


修改

Require all granted
Allow from all


修改防火墙开80端口

/sbin/iptables -I INPUT -p tcp --dport 80 -j ACCEPT

/etc/rc.d/init.d/iptables save

/etc/init.d/iptables restart

查看

/etc/init.d/iptables status

vi /etc/sysconfig/iptables


启动apache

./apachectl start

停止

./apachectl stop


如有报错:

Server unable to read htaccess file, denying access to be safe

可参考解决

http://stackoverflow.com/questions/31365981/server-unable-to-read-htaccess-file-denying-access-to-be-safe


二、mysql安装


三、php安装

./configure  --prefix=php-PATH --with-mysql=mysql-DIR --with-apxs2=FILE 

FILE : apache安装文件里对应的apxs路径加文件名



你可能感兴趣的:(linux,mysql,php)