加入QQ群一起学习成长:307360805
下载地址:http://nginx.org/
我这里选择的是稳定版本
复制链接,利用wget下载
wget http://nginx.org/download/nginx-1.10.1.tar.gz
没有安装的可以执行:yum -y install wget
解压:tar zxvf nginx-1.10.1.tar.gz
进入目录:cd nginx-1.10.1
安装到/usr/local/nginx,我的安装包是下载到了/usr/local/src目录下
./configure--prefix=/usr/local/nginx
其中会出现几个错误
C compiler cc is not found:缺少C库
安装C库和devel一起安装
yum -y install make gcc gcc-c++ ncurses-devel
缺少PCRE库
./configure: error: the HTTP rewrite module requires the PCRE library.
安装PCRE库和devel一起安装
yum install -y pcre-deve
缺少
./configure: error: the HTTP gzip module requires the zlib library.
安装
yum install -y zlib-devel
接下来
make
make install
也可以 make && make install
cd /usr/local/nginx可以看到如下目录:
conf :配置文件
html :网页
logs :日志文件
sbin:主要二进制进程文件
启动
./sbin/nginx