登录 注册
当前位置:主页 > 资源下载 > 50 > 在Linux系统上部署LNMP环境

在Linux系统上部署LNMP环境

  • 更新:2024-06-28 13:47:32
  • 大小:61KB
  • 推荐:★★★★★
  • 来源:网友上传分享
  • 类别:Web开发 - 开发技术
  • 格式:DOCX

资源介绍

lnmp搭建 一、nginx安装 1、 yum -y install gcc gcc-c++ gd gd2 gd-devel gd2-devel autoconf automake zlib zlib-devel openssl openssl-devel pcre-devel 2、groupadd www 添加分组www 3、useradd -s /sbin/nologin -g www -M www 添加用户www 4、把tar包传输到home目录下 tar zxvf 解压 tar包 5、切换到pcre目录下 ./configure --prefix=/usr/local/pcre(压缩包 目录) 6、make && make install 7、切换到nginx目录下 8、./configure --user=www --group=www --prefix=/usr/local/nginx --with-http_stub_status_module --with-http_ssl_module --with-pcre=/home/tar/pcre-8.35 --with-http_realip_module --with-http_image_filter_module 9、make make install