Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

LNMP-Nginx deployment (suitable for newcomers)

2025-01-19 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Servers >

Share

Shulou(Shulou.com)06/02 Report--

I. Installation Support Library (Two Ways)

Quick Install Support Library

yum install pcre-devel pcre openssl-devel

Compile installation support libraries (recommended)

Install PCRE (regular)

wget tar zxvf pcre-8.42.tar.gz cd pcre-8.42/./ configure --prefix=/usr/local/pcremake && make installln -sv /usr/local/pcre/lib/libpcre.so.1 /usr/lib64/libpcre.so.1ln -sv /usr/local/pcre/lib/libpcre.so.1.2.9 /usr/lib64/libpcre.so.1.2.9

Install OPENSSL (ssl)

wget https://www.openssl.org/source/openssl-1.1.0i.tar.gztar zxvf openssl-1.1.0i.tar.gzcd openssl-1.1.0i/yum install perl./ config --prefix=/usr/local/opensslmake make install

Install zlib (Gzip dependency)

wget http://www.zlib.net/zlib-1.2.11.tar.gztar zxvf zlib-1.2.11.tar.gzcd zlib-1.2.11/./ configure --prefix=/usr/local/zlibmakemake install

Second, Nginx installation:

Download Nginx source package:

wget http://nginx.org/download/nginx-1.14.0.tar.gz

Create User:

groupadd wwwuseradd -g www www -s /sbin/nologin

Create directory:

mkdir -p /data/{www,logs,mysql}chmod +w /data/wwwchown -R www:www /data/www/

Compile and install Nginx:

tar zxvf nginx-1.14.0.tar.gzcd nginx-1.14.0/./ configure --prefix=/usr/local/nginx \--user=www --group=www \--with-http_ssl_module \--with-http_realip_module \--with-http_sub_module \--with-http_gzip_static_module \--with-http_stub_status_module \--with-http_v2_module \--with-openssl=/usr/local/src/openssl-1.1.0i \--with-zlib=/usr/local/src/zlib-1.2.11 \--with-pcre=/usr/local/src/pcre-8.42 \--with-streammake && make install

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Servers

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report