Linux下安装Nginx
Posted 伍叶春-程序员笔记
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux下安装Nginx相关的知识,希望对你有一定的参考价值。
一、下载: 1、wget wget http://nginx.org/download/nginx-1.8.1.tar.gz 2、tar -zxvf nginx-1.8.1.tar.gz 3、cd nginx-1.8.1 二、安装依赖模块: 4、yum -y install gcc gcc-c++ autoconf automake make 5、yum -y install zlib zlib-devel openssl openssl--devel pcre pcre-devel 6、yum -y install openssl openssl-devel
三、编译安装 7、./configure --prefix=/usr/local/nginx-1.8.1 --with-http_ssl_module --with-http_spdy_ module --with-http_stub_status_module --with-pcre 8、make 9、make install 10、cd /usr/local/nginx-1.8.1/sbin
四、启动: 11、./nginx 五、常用命令 ./nginx -s reload 重启 ./nginx -v 加载 ./nginx -s stop 停止 ./nginx -t 查看配置是否正确
以上是关于Linux下安装Nginx的主要内容,如果未能解决你的问题,请参考以下文章