|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
欢迎大家来到仓酷云论坛!1.情况筹办
yum-yinstallgccgcc-c++autoconfautomakemake
yum-yinstallzlibzlib-developensslopenssl--develpcrepcre-devel
不实行以上两项装置的话,便可能会碰到上面我的装置过程当中碰到的情形:
到此页面下载本人想要的版本:
http://nginx.org/en/download.html
左边为Linux版本,右边为Windows版本
利用以下下令下载文件:wgethttp://nginx.org/download/nginx-1.7.4.tar.gz
解压文件:tar-zxvfnginx-1.7.4.tar.gz
切换目次:cdnginx-1.7.4
设置:./configure
提醒以下信息:./configure:error:theHTTPrewritemodulerequiresthePCRElibrary.
Youcaneitherdisablethemodulebyusing--without-http_rewrite_module
option,orinstallthePCRElibraryintothesystem,orbuildthePCRElibrary
staticallyfromthesourcewithnginxbyusing--with-pcre=<path>option.
需要装置pcre,他感化是让ngnix撑持rewrite功效
利用下令装置:yuminstallpcre-devel.i686
输出y,回车
最初提醒Complete,申明装置乐成:
再实行./configure
仍是提醒一样的毛病;
实行下令查找PCRE的装置地位:file-namepcre
失掉的是:./auto/lib/pcre
依据提醒在前面增加参数指定Path
实行下令:./configure--with-pcre=./auto/lib/pcre
提醒以下信息:
./configure:error:theHTTPgzipmodulerequiresthezliblibrary.
Youcaneitherdisablethemodulebyusing--without-http_gzip_module
option,orinstallthezliblibraryintothesystem,orbuildthezliblibrary
staticallyfromthesourcewithnginxbyusing--with-zlib=<path>option.
还短少zliblibrary信息!
实行以下下令装置:yum-yinstallmakezlibzlib-develgcc-c++libtool
装置乐成以后,再实行下令:./configure--with-pcre=./auto/lib/pcre
最初的提醒信息以下:
应当是设置乐成了,实行以下下令装置:
make&&makeinstall
提醒以下毛病:
该装的都装了,仍是没法装置,最初实行以下下令办理成绩:
yum-yinstallzlibzlib-developensslopenssl--develpcrepcre-devel
实行以后再实行:./configure
再实行:make&&makeinstall
装置完成!
记着上图中的一些目次地位!
修正设置文件:
切换目次:cd/usr/local/nginx/conf
修正文件:vinginx.conf
次要是修正server设置节的内容,按字母i进进编纂形式
按ESC键,加入编纂形式,按冒号键“:”进进下令形式,输出“wq”然后回车,保留并加入;
切换到sbin目次:cd/usr/local/nginx/sbin
启动Nginx:./nginx
开放防火墙端口:
/sbin/iptables-IINPUT-ptcp--dport88-jACCEPT
/etc/init.d/iptablessave
翻开扫瞄器,输出以下地点会见吧:
http://你的办事器IP:88/
看到以下信息了吗?
我是看到了,看不到的伴侣持续勉力吧!
注重:我在假造机中装置的时分碰到了相似以下毛病:
./configureauto/unix:Nosuchfileordirectory
当我利用“mkdirauto/unix”以后,仍是提醒相似的毛病,但目次名又变了。
纠结了很久,厥后发明是解压的时分就有很多多少文件没有解压出来,判别应当是装置包紧缩文件坏了,
以是解压的时分就少了很多多少的文件或目次,从头下载一个解压装置成绩就办理了。
设置Nginx开机启动,vi/etc/rc.d/rc.local
在文件开端增加“/usr/local/nginx/sbin/nginx”
如果您觉得本篇CentOSLinux教程讲得好,请记得点击右边漂浮的分享程序,把好文章分享给你的小伙伴们! |
|