企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
1.环境准备 yum -y install gcc gcc-c++ autoconf automake make ![](https://box.kancloud.cn/2015-10-13_561c56d25b42c.jpg) yum -y install zlib zlib-devel openssl openssl--devel pcre pcre-devel  ![](https://box.kancloud.cn/2015-10-13_561c56d27552f.jpg) **不执行以上两项安装的话,就可能会遇到下面我的安装过程中遇到的情况:** 到此页面下载自己想要的版本: [http://nginx.org/en/download.html](http://nginx.org/en/download.html) 左侧为Linux版本,右侧为Windows版本 ![](https://box.kancloud.cn/2015-10-13_561c56d281771.jpg) 使用以下命令下载文件:wget [http://nginx.org/download/nginx-1.7.4.tar.gz](http://nginx.org/download/nginx-1.7.4.tar.gz) ![](https://box.kancloud.cn/2015-10-13_561c56d290513.jpg) 解压文件:tar -zxvf nginx-1.7.4.tar.gz  ![](https://box.kancloud.cn/2015-10-13_561c56d2a2bd5.jpg) 切换目录:cd nginx-1.7.4 配置:./configure ![](https://box.kancloud.cn/2015-10-13_561c56d2ad099.jpg) 提示以下信息:./configure: error: the HTTP rewrite module requires the PCRE library. You can either disable the module by using --without-http_rewrite_module option, or install the PCRE library into the system, or build the PCRE library statically from the source with nginx by using --with-pcre= option. ![](https://box.kancloud.cn/2015-10-13_561c56d2be915.jpg) 需要安装pcre ,他作用是让ngnix支持rewrite功能 使用命令安装:yum install pcre-devel.i686 ![](https://box.kancloud.cn/2015-10-13_561c56d2ce4ab.jpg) 输入y,回车 ![](https://box.kancloud.cn/2015-10-13_561c56d2dcae1.jpg) 最后提示Complete,说明安装成功: ![](https://box.kancloud.cn/2015-10-13_561c56d2e987b.jpg) 再执行./configure 还是提示同样的错误; 执行命令查找PCRE的安装位置:file -name pcre 得到的是:./auto/lib/pcre ![](image/561a694609188.jpg) 根据提示在后面添加参数指定Path 执行命令:./configure --with-pcre=./auto/lib/pcre 提示如下信息: ./configure: error: the HTTP gzip module requires the zlib library. You can either disable the module by using --without-http_gzip_module option, or install the zlib library into the system, or build the zlib library statically from the source with nginx by using --with-zlib= option. 还缺少zlib library信息! 执行以下命令安装:yum -y install make zlib zlib-devel gcc-c++ libtool 安装成功之后,再执行命令:./configure --with-pcre=./auto/lib/pcre 最后的提示信息如下: ![](https://box.kancloud.cn/2015-10-13_561c56d306a0c.jpg) 应该是配置成功了,执行以下命令安装: make && make install 提示以下错误: ![](https://box.kancloud.cn/2015-10-13_561c56d315db2.jpg) 该装的都装了,还是无法安装,最后执行以下命令解决问题: yum -y install zlib zlib-devel openssl openssl--devel pcre pcre-devel 执行之后再执行:./configure 再执行:make && make install 安装完成! ![](https://box.kancloud.cn/2015-10-13_561c56d32408a.jpg) 记住上图中的一些目录位置! 修改配置文件: 切换目录:cd /usr/local/nginx/conf 修改文件:vi nginx.conf 主要是修改server配置节的内容,按字母i进入编辑模式 ![](https://box.kancloud.cn/2015-10-13_561c56d339bf6.jpg) 按ESC键,退出编辑模式,按冒号键“:”进入命令模式,输入“wq”然后回车,保存并退出; 切换到sbin目录:cd /usr/local/nginx/sbin 启动Nginx:./nginx 开放防火墙端口: /sbin/iptables -I INPUT -p tcp --dport 88 -j ACCEPT /etc/init.d/iptables save 打开浏览器,输入以下地址访问吧: [http://你的服务器IP:88/](http://xn--ip-0p3cl7jf7fo83a16x:88/) 看到以下信息了吗? ![](https://box.kancloud.cn/2015-10-13_561c56d3479f9.jpg) 我是看到了,看不到的朋友继续努力吧! 注意:我在虚拟机中安装的时候遇到了类似以下错误: ./configure auto/unix: No such file or directory 当我使用“mkdir auto/unix”之后,还是提示类似的错误,但目录名又变了。 纠结了好久,后来发现是解压的时候就有好多文件没有解压出来,判断应该是安装包压缩文件坏了, 所以解压的时候就少了好多的文件或目录,重新下载一个解压安装问题就解决了。 **配置Nginx开机启动**,vi /etc/rc.d/rc.local 在文件末尾添加“/usr/local/nginx/sbin/nginx” **Nginx常用命令:** 重新加载配置文件:/usr/local/nginx/sbin/nginx -s reload 停止Nginx服务:/usr/local/nginx/sbin/nginx -s stop 其它Nginx命令: **[plain]** [view plain](http://blog.csdn.net/testcs_dn/article/details/39233569# "view plain")[copy](http://blog.csdn.net/testcs_dn/article/details/39233569# "copy")[![](https://box.kancloud.cn/2015-10-13_561c56d3593bb.png)](https://code.csdn.net/snippets/489687 "在CODE上查看代码片")[![](https://box.kancloud.cn/2015-10-13_561c56d363c1b.svg)](https://code.csdn.net/snippets/489687/fork "派生到我的代码片") 1. /usr/local/nginx/sbin/nginx -h   2. nginx version: nginx/1.7.5   3. Usage: nginx [-?hvVtq] [-s signal] [-c filename] [-p prefix] [-g directives]   4.    5. Options:   6.   -?,-h         : this help   7.   -v            : show version and exit   8.   -V            : show version and configure options then exit   9.   -t            : test configuration and exit   10.   -q            : suppress non-error messages during configuration testing   11.   -s signal     : send signal to a master process: stop, quit, reopen, reload   12.   -p prefix     : set prefix path (default: /usr/local/nginx/)   13.   -c filename   : set configuration file (default: conf/nginx.conf)   14.   -g directives : set global directives out of configuration file   **文件权限问题:** 有可能因为目录、文件权限过高,导致Nginx无权访问文件,可以通过以下命令修改权限: chmod -R 777 ./uploadfile