centos7.2 安装lnmp环境 (非集成)
发表于2017/7/13 22:20:12 42人阅读
关于PHP-fpm
Nginx本身不能处理PHP,它只是个web服务器,当接收到请求后,如果是PHP请求,则发给PHP解释器处理,并把结果返回给客户端。
Nginx一般是把请求发fastcgi管理进程处理,fascgi管理进程选择cgi子进程处理结果并返回被Nginx。
PHP-FPM是一个PHP FastCGI管理器,是只用于PHP的。
PHP在 5.3.3 之后已经讲PHP-fpm写入PHP源码核心了。所以已经不需要另外下载了。
为什么选择5.6.30这个版本,因为学习,不是研究。诚然,7.0新增了很多PHP的新特性,性能上面也有些提升,如果是研究,倒是可以折腾一番,后面得空再讲7.0的版本以及如何在各个PHP版本之间切换。
打开PHP的官网:http://PHP.net/,查看PHP的版本列表
右击,复制链接地址,在远程主机登录,下载该软件(我选的是Australia的主机mirror下载的)
#wgethttp://au1.PHP.net/get/PHP-5.6.30.tar.gz/from/this/mirror
#mvmirror PHP-5.6.30.tar.gz
#tarzxvf PHP-5.6.30.tar#cd PHP-5.6.30
安装libxml2相关组件
#yuminstalllibxml2
#yuminstalllibxml2-devel -y
安装curl相关组件
#yuminstallcurl curl-devel
安装libpng相关组件
libpng
#yuminstalllibpng-devel
安装freetype相关组件
#yuminstallfreetype-devel
安装libxslt相关组件
#yuminstalllibxslt-devel
#yum install openssl openssl-devel
#ln -s /usr/lib64/libssl.so /usr/lib/
配置安装
进入到目录,我们需要在安装的时候将安装目录配置到/usr/local/PHP/里
#./configure --prefix=/usr/local/PHP --with-curl --with-freetype-dir--with-gd --with-gettext --with-iconv-dir--with-kerberos --with-libdir=lib64 --with-libxml-dir--with-MysqL --with-MysqLi --with-openssl --with-pcre-regex --with-pdo-MysqL --with-pdo-sqlite --with-pear --with-png-dir--with-xmlrpc --with-xsl --with-zlib --enable-fpm --enable-bcmath --enable-libxml --enable-inline-optimization --enable-gd-native-ttf --enable-mbregex --enable-mbstring --enable-opcache --enable-pcntl --enable-shmop --enable-soap --enable-sockets --enable-sysvsem --enable-xml --enable-zip
好的,当我们看到下面这句话的时候,说明你的PHP已经配置完成啦!
接下来我们只需要编译安装即可完成PHP的安装
#make&&makeinstall
看到这句话,表明安装完成!
为了保险起见,我们make test一把,看看是否真的成功了。
配置相关
PHP.ini配置
安装目录有2个文件:PHP.ini-development和PHP.ini-production
PHP.ini-production 线上版本使用
PHP.ini-development 开发版本使用
我们选择development进行配置
#cpPHP.ini-development /usr/local/PHP/lib/PHP.ini
PHP-fpm配置
#cp-R ./sapi/fpm/PHP-fpm.conf /usr/local/PHP/etc/PHP-fpm.conf
拷贝启用文件
#cp-R ./sapi/fpm/PHP-fpm /etc/init.d/PHP-fpm(已弃用,详细的见注1)
启动
查看PHP是否启动成功
#psaux |grepPHP
看到这些,表明你的PHP已经启动成功啦!
重启及关闭
#kill-9进程号
vi /usr/local/Nginx/conf/Nginx.conf
location ~ \.PHP$ {
root html;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.PHP;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
源码编译Nginx
yum -y installgccgcc-c++pcre-develzlibzlib-devel
cd /usr/src/
wgetftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-8.39.tar.gz
tar zxvf pcre-8.39.tar.gz
wget http://zlib.net/zlib-1.2.11.tar.gz
tar zxvf zlib-1.2.11.tar.gz
第二步:下载Nginx并解压
wget http://Nginx.org/download/Nginx-1.11.13.tar.gz
tar -zxvf ./Nginx-1.11.13.tar.gz
cd Nginx-1.11.13
第三步:
./configure --prefix=/usr/local/Nginx/ --with-pcre=/usr/src/pcre-8.39 --with-zlib=/usr/src/zlib-1.2.11
第四步make && make install
Nginx启动方式
安装MysqL
检测MysqL是否卸载干净
rpm-aq|grep-iMysqL
MysqL安装
1.先下载MysqL的repo源;相关命令:
wgethttp://repo.mysql.com/mysql-community-release-el7-5.noarch.rpm
2.安装MysqL-community-release-el7-5.noarch.rpm包
(安装这个包后,会获得两个MysqL的yum repo源:/etc/yum.repos.d/MysqL-community.repo,/etc/yum.repos.d/MysqL-community-source.repo)
rpm -ivh MysqL-community-release-el7-5.noarch.rpm
3.安装MysqL
sudo yum install MysqL-server
重启服务:
systemctl restart MysqL.service
use MysqL;
update user set password=password('root') where user='root';
设置外部连接权限,密码
grant all privileges on *.* to 'root'@'%' identified by 'jiacheng123.';
更新:flush privileges;
原文链接:https://www.f2er.com/centos/376505.html