搭建php7+nginx很容易,没有什么坑,但是在配置redis的时候遇到了很多的坑。参照网上的前辈教程,然后根据自己的实际操作,这里梳理记载下,希望对有些入坑的小伙伴提供些帮助
一、搭建php7
修改 yum 源
[root@localhost ~]# rpm -Uvh https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm
[root@localhost ~]# rpm -Uvh https://mirror.webtatic.com/yum/el7/webtatic-release.rpm
[root@localhost ~]# rpm -Uvh http://dev.mysql.com/get/mysql57-community-release-el7-9.noarch.rpm
Webtatic:https://webtatic.com
MySQL:https://dev.mysql.com/downloa...
二、安装 Nginx、MySQL、PHP
[root@localhost~]# yum -y install nginx
[root@localhost~]# yum -y install mysql-community-server
[root@localhost~]# yum -y install php70w-devel php70w.x86_64php70w-cli.x86_64php70w-common.x86_64php70w-gd.x86_64php70w-ldap.x86_64php70w-mbstring.x86_64php70w-mcrypt.x86_64php70w-pdo.x86_64php70w-mysqlnd php70w-fpm php70w-opcache php70w-pecl-redis php70w-pecl-mongo
三、配置
1.配置 MySQL
MySQL安装完成之后,在/var/log/mysqld.log 文件中给root生成了一个默认密码,通过下面的方式找到root 默认密码,
[root@localhost~]# systemctl start mysqld # 启动 MySQL
[root@localhost~]# grep'temporary password'/var/log/mysqld.log # 查找默认密码
2018-01-17T13:58:16.806931Z1[Note] A temporary password is generatedforroot@localhost: iacFXpWt-6gJ
①登录MySQL进行修改:
登录MySQL:
[root@localhost~]# mysql -uroot -p'iacFXpWt-6gJ'
修改root 默认密码:
mysql> ALTERUSER'root'@'localhost'IDENTIFIED BY'MyPass1!';
或者:
mysql>setpasswordfor'root'@'localhost'=password('123abc');
注:
MySQL5.7默认安装了密码安全检查插件(validate_password),默认密码检查策略要求密码必须包含:大小写字母、数字和特殊符号,并且长度不能少于8位。否则会提示ERROR 1819 (HY000): Your password does not satisfy the current policy
详见 MySQL 官网密码策略详细说明:https://dev.mysql.com/doc/ref...
配置默认编码为utf8:
修改/etc/my.cnf配置文件,在[mysqld]下添加编码配置,配置完成后重启:
[root@localhost ~]# vim /etc/my.cnf[mysqld]character_set_server=utf8init_connect='SET NAMES utf8'
[root@localhost ~]# systemctl restart mysqld # 重启 MySQL
设置开机启动:
[root@localhost~]# systemctl enable mysqld
2、配置 Nginx
1.安装完成以后查看自己防火墙是否开启,如果已开启,我们需要修改防火墙配置,开启Nginx外网端口访问。
[root@localhost~]# systemctl status firewalld
如果显示active (running),则需要调整防火墙规则的配置。
修改/etc/firewalld/zones/public.xml文件,在zone一节中增加
保存后重新加载firewalld服务:
[root@localhost~]# vim /etc/firewalld/zones/public.xml
<zoon>
...
<service name="nginx"/>
<zone>
[root@localhost~]# systemctl reload firewalld
2.修改Nginx配置:
[root@localhost~]# vim /etc/nginx/nginx.conf
在server {}里添加:
location/ {
#定义首页索引文件的名称indexindex.php index.html index.htm;
}
# PHP 脚本请求全部转发到 FastCGI处理. 使用FastCGI默认配置
.location~.php${
fastcgi_pass127.0.0.1:9000;
fastcgi_indexindex.php;
fastcgi_paramSCRIPT_FILENAME$document_root$fastcgi_script_name;
includefastcgi_params;
}
配置完成重启Nginx:
[root@localhost~]# systemctl start nginx # 启动 Nginx
注:本文只是简单配置Nginx,具体更多配置请自行百度。
设置开机启动:
[root@localhost~]# systemctl enable nginx
默认配置文件路径:
配置文件:/etc/my.cnf
日志文件:/var/log/mysqld.log
服务启动脚本:/usr/lib/systemd/system/mysqld.service
socket 文件:/var/run/mysqld/mysqld.pid
3、设置开机启动php-fpm:
[root@localhost~]# systemctl enable php-fpm[root@localhost~]# systemctl start php-fpm # 启动 php-fpm
至此,参照别人的教程已经完了。地址:https://segmentfault.com/a/1190000009012613
4、简单的查看版本信息命令
[root@localhost~]# php -v #查看php版本信息
[root@localhost~]# nginx -v #查看nginx版本信息
补充:查看phpinfo信息
创建一个php文件,命名自定义,我以test.php,可以先写好使用ftp上传服务器,也可以直接创建文件,自行选择,我使用的是写好上传。文件内容如下:
<?php
phpinfo();
?>
[root@localhost~]# cd /home.html #进入test.php文件所在目录
[root@localhost~] # php test.php #执行php文件
php的搭建已经完成,下面就是redis的搭建。放在下一篇文章描写:centos7 下搭建 php7+nginx+redis的记录(下)