linux系统为Centos 64位
第一步:从 https://tengine.taobao.org/download.html
上下载相应的版本,或者
1 | wget https://nginx.org/download/nginx-1.5.9.tar.gz |
第二步:解压 tar -zxvf nginx-1.5.9.tar.gz
第三步:安装必要的软件
1 | yum -y install pcre-devel openssl openssl-devel |
第四步:设置一下配置信息
1 | ./configure --prefix=/data/nginx --with-http_stub_status_module --with-http_ssl_module --with-file-aio --with-http_realip_module |
,或者不执行此步,直接默认配置
第四步:
make
编译 (make的过程是把各种语言写的源码文件,变成可执行文件和各种库文件)
make install
安装 (make install
是把这些编译出来的可执行文件和库文件复制到合适的地方)
第五步:将nginx放在启动命令中
vi /etc/profile
将
1 | nginx |
放在/etc/profile
尾部后,执行source /etc/profile
#第六步:启动nginx或者检查nginx配置
nginx / nginx -t