一、nginx简介
Nginx ("engine x") 是一个高性能的 HTTP 和 反向代理 服务器,也是一个 IMAP/POP3/SMTP 服务器。Nginx作为负载均衡服务器:Nginx 既可以在内部直接支持 Rails 和 PHP 程序对外进行服务,也可以支持作为 HTTP代理服务器对外进行服务。nginx网站国内的用户有:百度、新浪、网易、腾讯等等。
二、Nginx的安装
下载Nginx(http://nginx.org/en/download.html),最新的好像是nginx-1.9.3。
下载:wget http://nginx.org/download/nginx-1.9.3.tar.gz
安装:在安装前安装ngxin所需的模块,以及编译c,c++的软件

编译安装
make
make install
启动Nginx
cd sbin
./nginx
企业网站系统的升级版本eetoday 现能智能化安装且带有小型论坛的企业网站系统,其具有的功能包括:在线聊天,成功案例,公司新闻, 公司产品(公司产品目录可无限级扩展), 公司活动, 行业文章, 企业招聘, 资料下载, 公司论坛,MVC的购物车功能,其用了smarty模板,而且集成了淘宝的即时结算功能,产品搜索功能,及后台管理及添加次级目录功能。且全部可以在后台进行管理。 现又增加了即时聊天,无限
重新启动
cd sbin
./nginx -s reload
三、安装出现的问题
如果启动时出现如下问题时
1:端口被占用

说明:80端口已被占用
netstat -anp | grep 80 查询占用80端口的进程
杀死该进程
kill -s 9 pid(进程id)
2:错误为:./configure: error: the HTTP rewrite module requires thePCRE library.
解决办法:安装pcre-devel模块
yum -y install pcre-devel
3:错误提示:./configure: error: the HTTP cache module requires md5functions from
OpenSSL library. You can either disable the module by using --without-http- cache option, or install the OpenSSL library into the system, or build the OpenSSL
library statically from the source with nginx by using--with-http_ssl_module -- with-openssl=
版权声明:本文为博主原创文章,未经博主允许不得转载。
以上就介绍了Nginx在Linux下的安装部署,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。









