php71w mysql是什么_CentOS7.3搭建LNMP环境(Nginx10.1+MariaDB5.5+PHP7.1)

阿里云(ECS) CentOS7.3搭建LNMP环境(Nginx 1.10.2 + MariaDB 5.5.52 + PHP 7.1.8)

一、安装 Nginx

1. 使用 yum 安装 Nginx:# yum install -y nginx

2. 启动 Nginx:# systemctl start nginx

3. 设置 Nginx 随系统自动启动:# systemctl enable nginx

4. 查看 Nginx 状态:# systemctl status nginx

成功安装后,会看到如下信息:

● nginx.service - The nginx HTTP and reverse proxy server

Loaded: loaded (/usr/lib/systemd/system/nginx.service; enabled; vendor preset: disabled)

Active: active (running) since Mon 2017-08-21 20:33:53 CST; 16s ago

二、安装MySQL(MariaDB)

1. 安装 MariaDB(MariaDB是MySQL的一个分支):# yum install -y mariadb-server

2. 启动 MariaDB:# systemctl start mariadb

3. 设置 MariaDB:# mysql_secure_installation

Enter current password for root (enter for none):初始root密码为空,直接回车

Set root password? [Y/n] 是否设置root密码,输入:y

New password:设置数据库密码

Re-enter new password:确认数据库新密码

Remove anonymous users? [Y/n]是否移除匿名用户,输入:y

Disallow root login remotely? [Y/n]是否禁止root用户远程登录,输入:y

Remove test database and access to it? [Y/n]是否删除测试用的数据库,输入:y

Reload privilege tables now? [Y/n]是否重新加载权限表,输入:y

4. 设置 MariaDB 随系统自动启动:# systemctl enable mariadb

三、安装PHP7.1

1. 配置PHP源:# rpm -Uvh https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm

# rpm -Uvh https://mirror.webtatic.com/yum/el7/webtatic-release.rpm

2. 安装扩展:# yum install -y mod_php71w php71w-bcmath php71w-cli php71w-common php71w-devel php71w-fpm php71w-gd php71w-mbstring php71w-mcrypt php71w-mysql php71w-snmp php71w-xml php71w-process php71w-ldap net-snmp net-snmp-devel net-snmp-utils rrdtool

3. 查看是否安装成功:# php -v

成功安装后,会看到如下信息:

PHP 7.1.8 (cli) (built: Aug 9 2017 19:19:49) ( NTS )Copyright (c) 1997-2017 The PHP Group

Zend Engine v3.1.0, Copyright (c) 1998-2017 Zend Technologies`

4. 启动 php-fpm:# systemctl start php-fpm

5. 设置 php-fpm 随系统自动启动:# systemctl enable php-fpm

6. 查看 php-fpm 状态:# service php-fpm status

成功安装后,会看到如下信息:

● php-fpm.service - The PHP FastCGI Process Manager

Loaded: loaded (/usr/lib/systemd/system/php-fpm.service; enabled; vendor preset: disabled)

Active: active (running) since Sat 2017-08-21 20:54:05 CST; 23s ago

四、配置 Nginx 站点

1. 创建网站根目录:# mkdir -p /home/youwww

2. 建立测试文件:# vim /home/youwww/phpinfo.php

3. 输入如下内容:<?php phpinfo(); ?>

4. 保存并退出:# :wq

5. 创建配置文件:# vim /etc/nginx/conf.d/default.conf

6. 修改为:

server {

listen       80; #监听80端口

# server_name www.youwebsite.com; # 绑定域名(域名解析成后去掉 # 注释)

root /home/youwww; #设置站点根目录

location / {

index index.html index.htm index.php; #设置首页文件,越前优先级越高

}

location ~ \.php$ {

root /home/youwww; #设置站点根目录

fastcgi_pass 127.0.0.1:9000; #默认使用9000端口和PHP通信

fastcgi_index index.php;

fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;

include fastcgi_params;

}

}

7. 重启服务:# systemctl reload nginx

备注1:使用80端口时,打开PHP测试页时会显示错误提示 The page you are looking for is not found.

解决办法1:使用其他端口,如:8000、8080

解决办法2:修改 /etc/nginx/nginx.conf 文件,注释掉 listen 80 default_server; -> # listen 80 default_server;

备注2:查看 Nginx 状态时,如果遇到错误提示Failed to read PID from file /run/nginx.pid: Invalid argument因为 nginx 启动需要一点点时间,而 systemd 在 nginx 完成启动前就去读取 pid file 造成读取 pid 失败。解决方法很简单,让 systemd 在执行 ExecStart 的指令后等待一点点时间即可。

如果你的 nginx 启动需要时间更长,可以把 sleep 时间改长一点 (参考资料:https://www.v2ex.com/t/300986):# mkdir -p /etc/systemd/system/nginx.service.d

# printf "[Service]\nExecStartPost=/bin/sleep 0.1\n" > /etc/systemd/system/nginx.service.d/override.conf

# systemctl daemon-reload

# systemctl restart nginx

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值