标签:软件 enable war evel 创建 tls module soft nss
NGINX 之 安装方法 一wget http://nginx.org/download/nginx-1.6.3.tar.gz
[root@localhost software]# useradd www -s /sbin/nologin -M #不能登陆,不带家目录
[root@localhost software]# groupadd www #创建组
[root@localhost software]# yum -y install pcre pcre-devel gcc-c++ zlib-devel zlib open-ssl openssl-devel
[root@localhost software]# tar -zxvf nginx-1.6.3.tar.gz
[root@localhost software]# cd nginx-1.6.3
[root@localhost nginx-1.6.3]# ./configure --user=www --group=www --with-http_ssl_module --prefix=/app/nginx-1.6.3
[root@localhost nginx-1.6.3]# make && make install
[root@localhost nginx-1.6.3]# ll /app/nginx-1.6.3/ #安装成功
总用量 16
drwxr-xr-x 2 root root 4096 7月 16 11:32 conf
drwxr-xr-x 2 root root 4096 7月 16 11:32 html
drwxr-xr-x 2 root root 4096 7月 16 11:32 logs
drwxr-xr-x 2 root root 4096 7月 16 11:32 sbin
[root@localhost nginx-1.6.3]# ./sbin/nginx -V
nginx version: nginx/1.6.3
built by gcc 4.4.7 20120313 (Red Hat 4.4.7-18) (GCC)
TLS SNI support enabled
configure arguments: --user=www --group=www --with-http_ssl_module --prefix=/app/nginx-1.6.3
标签:软件 enable war evel 创建 tls module soft nss
原文地址:http://blog.51cto.com/12965094/2144041