centos7.2 搭建lnmp环境(转)

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了centos7.2 搭建lnmp环境(转)相关的知识,希望对你有一定的参考价值。

一.nginx安装

1.下载对应当前系统版本的nginx包(package)

? wget http://nginx.org/packages/centos/7/noarch/RPMS/nginx-release-centos-7-0.el7.ngx.noarch.rpm

2.建立nginx的yum仓库(默认yum是没有nginx的)

? rpm -ivh nginx-release-centos-7-0.el7.ngx.noarch.rpm

3.下载并安装nginx

? yum install nginx

4.nginx启动(nginx安装目录下-/usr/sbin/)

systemctl start nginx.service

ps:一些其它nginx相关命令:

nginx相关配置文件:

? 默认的配置文件在 /etc/nginx/conf.d 路径下,使用该配置已经可以正确地运行nginx;

? 如需要自定义,修改其下的 default.conf 等文件即可;

在浏览器地址栏中输入部署nginx环境的机器的IP,如果一切正常,应该能看到如下字样的内容。

Welcome to nginx!

If you see this page, the nginx web server is successfully installed andworking. Further configuration is required.

For online documentation and support please refer tonginx.org.Commercial support is available atnginx.com.

Thank you for using nginx.

第二步:mysql安装

1.先下载mysql的repo源;相关命令:

wget http://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

4.重置密码

? 更改用户权限:

sudo chown -R root:root /var/lib/mysql

? 重启服务:

systemctl restart mysql.service

? 登录,并修改密码:

1
2
3
4
5
6
7
mysql -u root
 
? mysql > use mysql;
 
? mysql > update user set password=password(‘123456‘) where user=‘root‘;
 
? mysql > exit;

第三步:安装php

1.查看当前安装的php版本( yum list installed | grep php)

? 如果存在php安装包先删除之前版本  用yum remove 移除 php相关的包

2.rpm 安装 Php7 相应的 yum源

1
2
3
? rpm -Uvh https://mirror.webtatic.com/yum/el7/epel-release.rpm
 
? rpm -Uvh https://mirror.webtatic.com/yum/el7/webtatic-release.rpm

3.安装php7.1

yum install php71w

4.安装php扩展

php71w-mysql.x8664  mysql扩展(作为依赖同时安装 php71w-pdo.x8664)

php71w-gd.x86_64  GD库,是php处理图形的扩展库,GD库提供了一系列用来处理图片的API,使用GD库可以处理图片,或者生成图片。

php71w-ldap.x86_64 "轻量级目录访问协议",是一个用于访问"目录服务器"(Directory Servers)的协议;

php71w-mbstring.x86_64 mbstring扩展库用于处理多字节字符串,PHP内置的字符串长度函数strlen无法正确处理中文字符串,它得到的只是字符串所占的字节数。对于GB2312的中文编码,strlen得到的值是汉字个数的2倍,而对于UTF-8编码的中文,就是1~3倍的差异了。采用mb_strlen函数可以较好地解决这个问题。

php71w-mcrypt.x86_64 Mcrypt扩展库可以实现加密解密功能,就是既能将明文加密,也可以密文还原。

5.安装PHP FPM

? yum install php71w-fpm

关于 php-fpm

? PHP-FPM其实是PHP源代码的一个补丁,旨在将FastCGI进程管理整合进PHP包中。必须将它patch到你的PHP源代码中,在编译安装PHP后才可以使用。

? 现在我们可以在最新的PHP 5.3.2的源码树里下载得到直接整合了PHP-FPM的分支,据说下个版本会融合进PHP的主分支去。相对Spawn-FCGI,PHP-FPM在CPU和内存方面的控制都更胜一筹,而且前者很容易崩溃,必须用crontab进行监控,而PHP-FPM则没有这种烦恼。

? PHP5.3.3已经集成php-fpm了,不再是第三方的包了。PHP-FPM提供了更好的PHP进程管理方式,可以有效控制内存和进程、可以平滑重载PHP配置,比spawn-fcgi具有更多优点,所以被PHP官方收录了。在./configure的时候带 –enable-fpm参数即可开启PHP-FPM。

使用PHP-FPM来控制PHP-CGI的FastCGI进程

第四步:配置nginx

修改配置文件之前记得备份

1.nginx配置文件位置:(/etc/nginx/conf.d/default.conf)

? 修改web root目录(如果没有需求也可以不用修改,使用默认即可):

root /wwwdata/html;

? 配置php解析,修改 下面代码中黑色加粗部分:

1
2
3
4
5
6
7
8
9
10
11
? location ~.php$ {
 
? fastcgi_pass 127.0.0.1:9000;
 
? fastcgi_index index.php;
 
?fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
 
? include    fastcgi_params;
 
? }

2.php-fpm配置文件位置:(/etc/php-fpm.d/www.conf)

? 修改

user =nginx

? group=nginx

3.启动nginx服务:

systemctl start nginx.service

? 如需设置开机自启使用以下命令:

sudo systemctl enable nginx.service

? 查看启动状态:

systemctl status nginx  

看到以下字眼说明启动成功!

?Active: active (running) since 六 2016-11-19 13:40:04 CST; 50min ago

4.启动PHP-FPM:

systemctl start php-fpm.service
?

 如需设置开机自启试用以下命令:

sudo systemctl enable php-fpm.service

? 查看启动状态:

systemctl status php-fpm.service 

看到以下字眼说明启动成功!

?Active: active (running) since 六 2016-11-19 14:14:33 CST; 18min ago

至此,php+mysql+nginx 环境搭建完成!

 

附 mysql远程连接 命令

 grant usage on *.* to ‘fred‘@‘localhost‘ identified by ‘fred‘;//创建用户fred密码ferd
    select host,user,password from mysql.user where user=‘fred‘;//查看记录  
    grant all privileges on *.* to [email protected]‘%‘identified by ‘fred‘;//设置可以远程访问

 

以上是关于centos7.2 搭建lnmp环境(转)的主要内容,如果未能解决你的问题,请参考以下文章

基于Docker搭建LNMP环境(转)

Centos7.2搭建LNMP

CentOS源码安装搭建LNMP全过程(包括nginx,mysql,php,svn)转

搭建 LNMP 环境

CentOS 7 yum安装LAMP,LNMP并搭建WordPress个人博客网站

CentOS7一键编译安装LNMP环境