下面将一步步在 CentOS 7 下 PHP 7,MySQL 5.7 和 Nginx 1.8 的安装与配置。首先我的 CentOS 版本是7.0.1406
[root@lnmp ~]# lsb_release -a
LSB Version: :core-4.1-amd64:core-4.1-noarch
Distributor ID: CentOS
Description: CentOS Linux release 7.0.1406 (Core)
Release: 7.0.1406
Codename: Core
如果服务器是其他版本 CentOS,应该也是大同小异。下面首先安装 Nginx
Nginx 1.8 安装
这里将用 yum 来安装 Nginx。首先更新一下 yum repo, 以便可以安装到对应的最新版本 nginx。
http://nginx.org/packages/centos/7/noarch/RPMS/
可以通过变换上面的地址找到和自己服务器对应版本的 repo 的 rpm。
[root@lnmp ~]# rpm -Uvh http://nginx.org/packages/centos/7/noarch/RPMS/nginx-release-centos-7-0.el7.ngx.noarch.rpm
国内的网络有时会出现404的情况,是因为国内将dns转向了 nginx.org.cn
[root@lnmp ~]# ping nginx.org
PING nginx.org.cn (74.82.63.136) 56(84) bytes of data.
如果上面已经安装成功,则忽略。如果上面那步出现404安装不成功,则要修改 hosts 加入 206.251.255.63 nginx.org,保存后再继续上面那步 rpm 安装
安装好 yum repo 之后,接下来用 yum 安装 nginx
[root@lnmp ~]# yum install nginx
好了,Nginx 已经安装完成,版本是 1.8.1
[root@lnmp ~]# nginx -v
nginx version: nginx/1.8.1
现在设置让 Nginx 在随开机自动启动
[root@lnmp ~]# systemctl enable nginx
ln -s '/usr/lib/systemd/system/nginx.service' '/etc/systemd/system/multi-user.target.wants/nginx.service'
这里是用 systemctl 而不是惯常用的 service 命令。其中切换到 systemd 来系统和服务进行管理是 CentOS 7 中一个主要的改变,但它也向后兼容SysV启动脚本,所以也是可以用 service 命令进行启动的。
立即启动 Nginx
[root@lnmp ~]# systemctl start nginx
再看看 Nignx 状态
[root@lnmp ~]# systemctl status nginx
nginx.service - nginx - high performance web server
Loaded: loaded (/usr/lib/systemd/system/nginx.service; enabled)
Active: active (running) since Thu 2016-04-07 22:46:29 CST; 4s ago
Nginx 已经成功启动。这里再打开网页来验证一下,输入服务器 ip:
不出意外的话可以看到 Nginx 欢迎页面。好了,Nginx 已经安装完毕并且正常工作了。顺便提一下,也可以到这来直接安装对应的 rpm:
http://nginx.org/packages/centos/7/x86_64/RPMS/
接下来安装 MySQL
MySQL 5.7 的安装
这里同样用 yum 安装 MySQL. 可以从以下地址中找到对应的 yum repo:
http://dev.mysql.com/doc/refman/5.7/en/linux-installation-yum-repo.html
[root@lnmp ~]# rpm -Uvh http://dev.mysql.com/get/mysql57-community-release-el7-7.noarch.rpm
接着安装 MySQL
[root@lnmp ~]# yum install mysql-community-server mysql-community-devel
如果服务器在国内,速度还真有点慢,请耐心等待。
MySQL安装完成后配置文件会在这个路径 /etc/my.cnf 可以根据实际需要修改里边的选项。这里暂时不做任何修改,但有个选项是要注意的,因为后面配置 PHP 的时候讲会用到:
socket=/var/lib/mysql/mysql.sock
看看下 MySQL 的状态
[root@lnmp ~]# systemctl status mysqld
mysqld.service - MySQL Server
Loaded: loaded (/usr/lib/systemd/system/mysqld.service; enabled)
Active: inactive (dead)
可以看到 MySQL 安装的时候就已经加到自动启动服务中了。现在立即启动 MySQL
[root@lnmp ~]# systemctl start mysqld
MySQL 5.7 和之前版本很大区别是在安装后会自动为 root@localhost 用户设置一个随机初始密码,之前的版本密码为空的。那如何找到这个初始密码呢?网上很多文章说初始密码在这个文件中 /root/.mysql_secret 我不清楚早前的版本是不是这样,但 MySQL 5.7.11 并不然,而是保持到 error log 文件中。可以通过下面方法找到 MySQL 5.7 root 的初始密码
[root@lnmp ~]# grep 'temporary password' /var/log/mysqld.log
2016-04-07T15:39:59.942230Z 1 [Note] A temporary password is generated for root@localhost: MD>E%iusV5s:
其中 MD>E%iusV5s: 就是密码。现在立即用这个密码登录 MySQL 并且修改密码
[root@lnmp ~]# mysql -uroot -p
Enter password:
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 3
Server version: 5.7.11
MySQL 5.7 版本对密码的安全性要求很严格,必须至少包含1个大写字母、1个小写字母、1个数字和1个特殊字符,长度不得小于8个字符。通过以下命令修改密码:
mysql> ALTER USER 'root'@'localhost' IDENTIFIED BY 'Lnmp.cn8';
Query OK, 0 rows affected (0.00 sec)
其中 Lnmp.cn8 就是新密码。好了 MySQL 5.7 已经安装完成,退出 MySQL 命令行接着安装 PHP 7
mysql> quit
PHP 7 安装
PHP 7 在15年年底推出,PHP官方说的比 PHP 5 快2倍,就为这个,这个鲜必须尝。不过有个很值得注意的地方是,虽然 PHP 7 增加了不少新特性,但也很多地方是向后不兼容的,例如 mysql 扩展,在 PHP 7 中已经被删除。 这些向后不兼容导致很多程序在 PHP 7 中运行不了,例如 Discuz。但其实也不需要特别担心,因为我们可以在同一服务器上安装多个版本的 PHP。
现在最新版本是7.0.5。先把源码下载到 /usr/local/src
[root@lnmp ~]# cd /usr/local/src
[root@lnmp src]# wget -c http://cn2.php.net/distributions/php-7.0.5.tar.gz
接着解压
[root@lnmp src]# tar -zxvf php-7.0.5.tar.gz
再进入解压后的文件夹
[root@lnmp src]# cd php-7.0.5/
这里将只安装一些常用的扩展,大家可以根据自己的实际需要进行增减,可以通过以下密令查看PHP安装是具体有有些扩展和选项:
[root@lnmp ~]# ./configure --help
有接近300个选项。
安装之前要先安装那些准备装的扩展要用到的软件模块
[root@lnmp ~]# yum -y install libjpeg libjpeg-devel libpng libpng-devel freetype freetype-devel libxml2 libxml2-devel zlib zlib-devel curl curl-devel openssl openssl-devel
接下来 configure PHP 7
[root@lnmp ~]# ./configure --prefix=/usr/local/php-7.0.5 --enable-fpm --with-fpm-user=nginx --with-fpm-group=nginx --with-mysqli --with-pdo-mysql --with-zlib --with-curl --with-gd --with-jpeg-dir --with-png-dir --with-freetype-dir --with-openssl --enable-mbstring --enable-ftp --enable-zip
上面已经提到,PHP 7 已经删除了 MySQL 扩展,所以 -with-mysql 不再是一个有效的选项。这里用 MySQLi 或 PDO 代替。
其中 --prefix 是安装目录,上面提到在同一个服务器安装多个 PHP 版本,这个 --prefix 设定是很有必要的。至于其他扩展大家按实际增减。
如果 configure 成功的话,将会看到以下类似字样:
+--------------------------------------------------------------------+ | License: | | This software is subject to the PHP License, available in this | | distribution in the file LICENSE. By continuing this installation | | process, you are bound by the terms of this license agreement. | | If you do not agree with the terms of this license, you must abort | | the installation process at this point. | +--------------------------------------------------------------------+ Thank you for using PHP.
输入 make 密令继续安装
[root@lnmp php-7.0.5]# make
看服务器配置,这步可能要花点时间
make 完成后接着 make install
[root@lnmp php-7.0.5]# make install
好,PHP 7 已经安装完成,下面进行配置
先是将 php.ini 文件复制到响应的位置
[root@lnmp php-7.0.5]# cp php.ini-development /usr/local/php-7.0.5/lib/php.ini
php.ini 路径应该放在 PREFIX/lib 文件夹,除非在安装的时候通过这个选项修改
--with-config-file-path=PATH
如果安装 PHP 时没有指明 --prefix ,那么就 php.ini 路径就是 /usr/local/lib/php.ini 。刚才安装时有指明 --prefix ,所以是 /usr/local/php-7.0.5/lib/php.ini
然后根据实际自己需要修改 php.ini。
[root@lnmp ~]# vim /usr/local/php-7.0.5/lib/php.ini
查找 mysqli.default_socket,修改成:
mysqli.default_socket = /var/lib/mysql/mysql.sock
其中 /var/lib/mysql/mysql.sock 就是上面安装 MySQL 时提到的。这个值必须填,否则会出现如下错误:
Warning: mysqli_connect(): (HY000/2002): No such file or directory
修改时区,查找 date.timezone,改成(主要将前面的 ; 去掉,这个是注释用的):
date.timezone = PRC
好了,PHP 7 已经安装好,下面验证一下
[root@lnmp php-7.0.5]# /usr/local/php-7.0.5/bin/php -v
PHP 7.0.5 (cli) (built: Apr 8 2016 00:08:04) ( NTS )
Copyright (c) 1997-2016 The PHP Group
Zend Engine v3.0.0, Copyright (c) 1998-2016 Zend Technologies
[root@lnmp php-7.0.5]#
再查看下已经安装的模块
[root@lnmp php-7.0.5]# /usr/local/php-7.0.5/bin/php -m
[PHP Modules]
Core
ctype
curl
date
dom
fileinfo
filter
ftp
gd
hash
iconv
json
libxml
mbstring
mysqli
mysqlnd
openssl
pcre
PDO
pdo_sqlite
Phar
posix
Reflection
session
SimpleXML
SPL
sqlite3
standard
tokenizer
xml
xmlreader
xmlwriter
zip
zlib
[Zend Modules]
[root@lnmp php-7.0.5]#
安装好后,为了以后升级方便,将 /usr/local/php-7.0.5 软链到 /usr/local/php
[root@lnmp php-7.0.5]# ln -s /usr/local/php-7.0.5 /usr/local/php
然后用到 PHP 路径,就用 /usr/local/php
同时为了方便使用,将一些常用的可执行文件(例如 php, pecl, pear 和 phpize)软链到 PATH 环境变量中。
[root@lnmp php-7.0.5]# ln -s /usr/local/php/bin/php /usr/sbin/php
[root@lnmp php-7.0.5]# ln -s /usr/local/php/bin/pecl /usr/sbin/pecl
[root@lnmp php-7.0.5]# ln -s /usr/local/php/bin/pear /usr/sbin/pear
[root@lnmp php-7.0.5]# ln -s /usr/local/php/bin/phpize /usr/sbin/phpize
现在就可以省去路径直接用 php 命令
[root@lnmp php-7.0.5]# php -v
PHP 7.0.5 (cli) (built: Apr 8 2016 00:08:04) ( NTS )
Copyright (c) 1997-2016 The PHP Group
Zend Engine v3.0.0, Copyright (c) 1998-2016 Zend Technologies
[root@lnmp php-7.0.5]#
接下来配置 php-fpm。copy php-fpm 的配置文档
[root@lnmp php-7.0.5]# cp /usr/local/php-7.0.5/etc/php-fpm.conf.default /usr/local/php-7.0.5/etc/php-fpm.conf
[root@lnmp php-7.0.5]# cp /usr/local/php-7.0.5/etc/php-fpm.d/www.conf.default /usr/local/php-7.0.5/etc/php-fpm.d/www.conf
这两个文件根据自己的实际需要修改,一般不用作修改,但还是要检查下
[root@lnmp php-7.0.5]# vim /usr/local/php-7.0.5/etc/php-fpm.d/www.conf
查找 user 和 group 看看是不是安装时指定的 nginx 。
如果是 nobody
user = nobody
group = nobody
则改成
user = nginx
group = nginx
其中要留意以下这个值
listen = 127.0.0.1:9000
这里使用 9000 端口,这个选项在配置 Nginx 网站时要用到的。
配置 php-fpm 启动服务脚本
[root@lnmp php-7.0.5]# cp sapi/fpm/php-fpm.service /usr/lib/systemd/system/php-fpm-705.service
命名为 php-fpm-705.service 是为了方便后面升级,但要创建 php-fpm.service 的软链
[root@lnmp php-7.0.5]# ln -s /usr/lib/systemd/system/php-fpm-705.service /usr/lib/systemd/system/php-fpm.service
修改启动脚本,把里边 prefix 相关的内容用实际路径代替(如果已经是正确的绝对路径,那就不需要修改)
[root@lnmp php-7.0.5]# vim /usr/lib/systemd/system/php-fpm.service
将
PIDFile=${prefix}/var/run/php-fpm.pid
ExecStart=${exec_prefix}/sbin/php-fpm --nodaemonize --fpm-config ${prefix}/etc/php-fpm.conf
修改成
PIDFile=/usr/local/php-7.0.5/var/run/php-fpm.pid
ExecStart=/usr/local/php-7.0.5/sbin/php-fpm --nodaemonize --fpm-config /usr/local/php-7.0.5/etc/php-fpm.conf
重新载入 systemd
[root@lnmp php-7.0.5]# systemctl daemon-reload
让 php-fpm 随机启动
[root@lnmp php-7.0.5]# systemctl enable php-fpm
ln -s '/usr/lib/systemd/system/php-fpm.service' '/etc/systemd/system/multi-user.target.wants/php-fpm.service'
立即启动 php-fpm
[root@lnmp php-7.0.5]# systemctl start php-fpm
查看状态
[root@lnmp php-7.0.5]# systemctl status php-fpm
php-fpm.service - The PHP FastCGI Process Manager
Loaded: loaded (/usr/lib/systemd/system/php-fpm.service; enabled)
Active: active (running) since Fri 2016-04-08 00:50:54 CST; 3s ago
Main PID: 13609 (php-fpm)
CGroup: /system.slice/php-fpm.service
├─13609 php-fpm: master process (/usr/local/php-7.0.5/etc/php-fpm.conf)
├─13610 php-fpm: pool www
└─13611 php-fpm: pool www
Apr 08 00:50:54 lnmp.cn systemd[1]: Started The PHP FastCGI Process Manager.
好,php-fpm 已经成功启动,那就立即建个网站看看
配置 Nginx 站点
先建立一个 lnmp 站点,路径是 /www/lnmp/web
[root@lnmp php-7.0.5]# mkdir -p /www/lnmp/web
并准备好 phpinfo 测试文件
[root@lnmp php-7.0.5]# vim /www/lnmp/web/phpinfo.php
输入如下内容保存:
<?php
phpinfo();
每个站点建一个 Nginx 配置文件放到 /etc/nginx/conf.d/ 中
[root@lnmp php-7.0.5]# cd /etc/nginx/conf.d/
[root@lnmp conf.d]# vim lnmp.cn.conf
在 lnmp.cn.conf 中加入以下内容然后保存
server {
listen 80;
server_name www.lnmp.cn;
root /www/lnmp/web;
location / {
index index.php index.html index.htm;
}
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;
}
}
其中 server_name www.lnmp.cn; 中的 www.lnmp.cn 改成你自己的域名
其中 root /www/lnmp/web; 就是刚才创建的站点目录
其中 fastcgi_pass 127.0.0.1:9000; 就是上面配置 php-fpm 提到要留意的值
修改配置后一定要记得 reload nginx 才能生效
[root@lnmp conf.d]# systemctl reload nginx
好了,大功告成,就打开刚才的域名验证下(前提是域名已经指向配置好的服务器 IP)