-
在Linux系统上部署LNMP环境
资源介绍
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