linux 安装 nginx
1、安装必备工具:
$ yum -y install gcc gcc-c++ autoconf automake
$ yum -y install zlib zlib-devel openssl openssl-devel pcre-devel
说明:
pcre: 用来作地址重写的功能。
zlib:nginx 的gzip模块,传输数据打包,省流量(但消耗资源)。
openssl:提供ssl加密协议。
二、Nginx编译安装:
1、下载Nginx:http://nginx.org/en/download.html
安装目录一般都放在:/usr/local/nginx下
2、解压编译:
$ tar -zxvf nginx-1.9.2.tar.gz/
$ mv nginx-1.9.2 nginx
$ cd /usr/local/nginx
$./configure –prefix=/usr/local/nginx //预编译
3、安装:
$ make && make install
第一次安装出现问题: conf/koi-win' and
/usr/local/nginx/conf/koi-win’ are the same file
然后就重新安装一遍 在预编译的时候用命令
./configure –prefix=/usr/local/nginx
改为
./configure –prefix=/usr/local/nginx –conf-path=/usr/local/nginx/nginx.conf
成功安装了。
4、启动:
确保系统的 80 端口没被其他程序占用,
$ nginx -c /etc/nginx/nginx.conf
检查是否启动成功:
netstat -ano|grep 80 有结果输入说明启动成功
打开浏览器访问此机器的 IP,如果浏览器出现 Welcome to nginx! 则表示 Nginx 已经安装并运行成功。
').addClass('pre-numbering').hide(); $(this).addClass('has-numbering').parent().append($numbering); for (i = 1; i ').text(i)); }; $numbering.fadeIn(1700); }); });以上就介绍了linux 安装 nginx,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。