加入收藏 | 设为首页 | 会员中心 | 我要投稿 十堰站长网 (https://www.0719zz.com/)- 混合云存储、网络、视频终端、云计算、媒体处理!
当前位置: 首页 > 运营中心 > LNMP > 正文

Docker如何快速搭建LNMP环境

发布时间:2023-02-20 09:50:55 所属栏目:LNMP 来源:互联网
导读:本文实例讲述了Centos7.3服务器搭建LNMP环境的方法。分享给大家供大家参考,具体如下: 需求:在Centos7.3下搭建LNMP环境 1. 关闭防火墙和selinux 打开文件selinux vim /etc/sysconfig/selinux 将文件中SELINUX=enforcing改为disabled,然后执行setenforce 0
  本文实例讲述了Centos7.3服务器搭建LNMP环境的方法。分享给大家供大家参考,具体如下:
 
  需求:在Centos7.3下搭建LNMP环境
 
  1. 关闭防火墙和selinux
 
  打开文件selinux
 

  vim /etc/sysconfig/selinux
  将文件中SELINUX=enforcing改为disabled,然后执行”setenforce 0″不用重启地关闭selinux。

  SELINUX=disabled
  关闭放火墙
 
  systemctl stop firewalld.service
  2.安装软件
 
  2.1 MYSQL安装
  wget http://repo.mysql.com/mysql-community-release-el7-5.noarch.rpm
  安装mysql-community-release-el7-5.noarch.rpm包
 
  rpm -ivh mysql-community-release-el7-5.noarch.rpm
 
  sudo yum install -y mysql-server
 
  sudo chown -R root:root /var/lib/mysql
  
  systemctl restart mysql.service
 
  mysql -u root
  mysql > use mysql;
  mysql > update user set password=password(‘123456‘) where user='root';
  mysql > flush privilgegs;
  mysql > exit;
  2.2 nginx安装
 
  下载对应当前系统版本的nginx包
 
  复制代码代码如下:
  wget http://nginx.org/packages/centos/7/noarch/RPMS/nginx-release-centos-7-0.el7.ngx.noarch.rpm
  建立nginx的yum仓库(默认yum是没有nginx的)
 
  rpm -ivh nginx-release-centos-7-0.el7.ngx.noarch.rpm

  ​yum install -y nginx
  nginx启动

  systemctl start nginx.service
  2.3 安装php
 
  rpm 安装 Php7 相应的 yum源

  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
  安装php7.0
 
  
  yum install -y php70w
  安装php扩展
  复制代码代码如下:
  yum install -y  php70w-mysql.x86_64   php70w-gd.x86_64   php70w-ldap.x86_64   php70w-mbstring.x86_64  php70w-mcrypt.x86_64
  安装PHP FPM
 
  yum install -y php70w-fpm
  3. 修改配置文件
 
  3.1修改Nginx配置文件
 
  nginx配置文件位置:(/etc/nginx/conf.d/default.conf)
 
 
  vim /etc/nginx/conf.d/default.conf
  修改 root目录,可自定义
 
 
  root  /forest/nginxDir/html;
 
  location ~.php$ {
   root  /forest/nginxDir/html;
  ​ fastcgi_pass 127.0.0.1:9000;
  ​ fastcgi_index index.php;
  ​fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
  ​ include  fastcgi_params;
  }
  3.2 修改php-fpm配置文件
 
  php-fpm配置文件位置:(/etc/php-fpm.d/www.conf)
 
  user =nginx
  group=nginx
  4.放入测试文件
 
  cd /forest/nginxDir/html
  echo 'hello eric' >index.php
  5.启动服务
 
  5.1 启动nginx服务:
 
  systemctl start nginx.service


  systemctl status nginx
  看到以下字眼说明启动成功!
 
  ​Active: active (running) since 六 2016-11-19 13:40:04 CST; 50min ago
 
  5.2 启动PHP-FPM:

  systemctl start php-fpm.service

  systemctl status php-fpm.service
  看到以下字眼说明启动成功!
 
  ​Active: active (running) since 六 2016-11-19 14:14:33 CST; 18min ago
 
  6.测试
 
  在浏览器打开192.168.44.129:80/index.php

(编辑:十堰站长网)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读