> CentOS > CentOS教程 >

CentOS6.5安装Nginx1.10.2

官网下载当前最稳定版本1.10.2

nginx-1.10.2.tar.gz

安装Nginx依赖包

  • GCC 
    nginx是C语言开发。
# yum install gcc-c++ 
  • PCRE  PCRE(Perl Compatible Regular Expressions)是一个Perl库,包括 perl 兼容的正则表达式库。nginx的http模块使用pcre来解析正则表达式。
# yum install -y pcre pcre-devel
  • zlib  zlib库提供了很多种压缩和解压缩的方式。nginx使用zlib对http包的内容进行gzip。
# yum install -y zlib zlib-devel
  • openssl  OpenSSL 是一个强大的安全套接字层密码库,囊括主要的密码算法、常用的密钥和证书封装管理功能及SSL协议,并提供丰富的应用程序供测试或其它目的使用。nginx不仅支持http协议,还支持https(即在ssl协议上传输http)。
# yum install -y openssl openssl-devel

安装

  • 将压缩包拷贝到/root/Downloads目录下

  • 解压到本目录

# tar zxvf  nginx-1.10.2.tar.gz 
  • 通过configure命令,进行编译前的属性配置。
# cd nginx-1.10.2
# ./configure \
--prefix=/usr/local/nginx \
--pid-path=/var/run/nginx/nginx.pid \
--lock-path=/var/lock/nginx.lock \
--error-log-path=/var/log/nginx/error.log \
--http-log-path=/var/log/nginx/access.log \
--with-http_gzip_static_module \
--http-client-body-temp-path=/var/tmp/nginx/client \
--http-proxy-temp-path=/var/tmp/nginx/proxy \
--http-fastcgi-temp-path=/var/tmp/nginx/fastcgi \
--http-uwsgi-temp-path=/var/tmp/nginx/uwsgi \
--http-scgi-temp-path=/var/tmp/nginx/scgi
  • prefix指定Nginx的安装目录

  • 需要手动在/var/tmp/目录下,创建nginx文件夹

# cd /var/tmp/
# mkdir nginx
  • 切回到nginx-1.10.2的目录
# cd /root/Downloads/nginx-1.10.2
  • 编译(之前通过configure命令,生成了一个Makefile文件)
# make
  • 安装
# make install

启动

  • 进入Nginx安装目录
# cd /usr/local/nginx/
  • 进入程序执行目录
# cd sbin
  • 命令
# ./nginx               // 启动
# ./nginx -s stop       // 停止
# ./nginx -s reload     // 重新读取配置
  • 可通过 http://ip 查看是否启动成功
(责任编辑:IT)