搭建 LINUX LALP环境

第一步 停用httpd

systemctl stop httpd

第二步 安装依赖包

yum -y install gcc   pcre-devel      zlib *

第三步 解压文件

tar -xf '/home/ligang/桌面/lnmp_soft/nginx-1.12.2.tar.gz'

进去

cd '/home/ligang/桌面/lnmp_soft/nginx-1.12.2'

安装文件

./configure --user=nginx --group=nginx       

安装 ./configure --user=nginx `
出现报错啦

./configure: error: invalid option "-"                ./配置:错误:无效选项“—”

解决

./configure --user=nginx --grou                        这是正确的       由于我的粗心少打命令啦   打啦自己一巴掌

安装 make make install

第四步 安装依赖包

yum -y install php       php-mysql             php-fpm

第五步 起服务

systemctl restart mriadb   

出现报错

Failed to restart mriadb.service: Unit mriadb.service failed to load: No such file or directory.
[root@localhost nginx-1.12.2]# systemctl restart mriadb

解决报错
先看看是不是命令是否打错
已解决 是自己的命令打错啦 打自己一巴掌

 systemctl restart mariadb                 这是正确的命令

第六步 查看80端口 是否开启 或被nginx 占用

#netstat -nuplt | grep 80
p        0      0 0.0.0.0:80              0.0.0.0:*               LISTEN      9237/nginx: master 

第七步

#firewall-cmd --set-default-zone=trusted             关闭防火墙           意思: success   成功

第八步关闭 setenforce

#setenforce 0
setenforce: SELinux is disabled                        意思 :setenforce:selinux被禁用

第九步 修改配置文件

#vim /usr/local/nginx/conf/nginx.conf
location / {
          root   html;
           index  index.php  index.html   index.htm;
 location  ~  \.php$  {
           root           html;
           fastcgi_pass   127.0.0.1:9000;    #将请求转发给本机9000端口,PHP解释器
           fastcgi_index  index.php;
           #fastcgi_param   SCRIPT_FILENAME  $document_root$fastcgi_script_name;
           include        fastcgi.conf;
       }

第十步 重启nginx服务

/usr/local/nginx/sbin/nginx -s reload

第十一步 创建php页面,测试是否能解析

# vim /usr/local/nginx/html/index.php

重启

#/usr/local/nginx/sbin/nginx -s reload

第十二步 搜狐 IP 127.0.0.1/upload/install
搭建 LINUX LALP环境_第1张图片

你可能感兴趣的:(搭建 LINUX LALP环境)