一、Nginx介绍:
Nginx (engine x) 是一个高性能的HTTP和反向代理web服务器。Nginx是由伊戈尔·赛索耶夫为俄罗斯访问量第二的Rambler.ru站点(俄文:Рамблер)开发的,第一个公开版本0.1.0发布于2004年10月4日。
其将源代码以类BSD许可证的形式发布,因它的稳定性、丰富的功能集、实例配置文件和低系统资源的消耗而闻名。2011年6月1日,nginx 1.0.4发布。
Nginx是一款轻量级的Web 服务器/反向代理服务器及电子邮件(IMAP/POP3)代理服务器,在BSD-like 协议下发行。其特点是占有内存少,并发能力强,事实上nginx的并发能力确实在同类型的网页服务器中表现较好,中国大陆使用nginx网站用户有:百度、京东、新浪、网易、腾讯、淘宝等。
二、安装
1. 下载
下载适合版本的nginx,下载地址http://nginx.org/en/download.html,我下载的是nginx-1.14.2.tar.gz版本,上传到服务器,解压
tar -zxvf nginx-1.14.2.tar.gz
结果如图所示
2. 安装依赖环境
由于niginx底层源码是c语言写的,需要确认gcc g++开发类库是否安装好,默认已经安装。
安装make:
yum -y install gcc automake autoconf libtool
安装g++:
yum install gcc gcc-c++
3. 安装PCRE库
cd /opt
wget ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-8.39.tar.gz
tar -zxvf pcre-8.37.tar.gz
cd pcre-8.34
./configure
make
make install
4. 安装zlib库
cd /opt
wget http://zlib.net/zlib-1.2.11.tar.gz
tar -zxvf zlib-1.2.11.tar.gz
cd zlib-1.2.11
./configure
make
make install
5.安装openssl
cd /opt
wget https://www.openssl.org/source/openssl-1.0.1t.tar.gz
tar -zxvf openssl-1.0.1t.tar.gz
cd openssl-1.0.1t
make
make install
6、安装nginx
cd /opt/nginx-1.14.2
./configure
make
make install
7.启动nginx
注意此时启动是在/usr/local/nginx/sbin目录下,切记
cd /usr/local/nginx/sbin/
./nginx
8.访问测试
转载原文链接:http://www.atguigu.com/jszy/14357.html
特别声明:以上内容(如有图片或视频亦包括在内)为自媒体平台“网易号”用户上传并发布,本平台仅提供信息存储服务。
Notice: The content above (including the pictures and videos if any) is uploaded and posted by a user of NetEase Hao, which is a social media platform and only provides information storage services.