一、安装依赖包和开发工具:

yum install vim vim-enhanced wget zip unzip telnet ntsysv compat* apr* nasm* gcc gcc* gcc-c++ ntp make imake cmake automake autoconf python-devel zlib zlib-devel glibc glibc-devel glib2 libxml glib2-devel libxml2 libxml2-devel bzip2 bzip2-devel libXpm libXpm-devel libidn libidn-devel libtool libtool-ltdl-devel* libmcrypt libmcrypt-devel libevent-devel libmcrypt* libicu-devel libxslt-devel postgresql-devel curl curl-devel perl perl-Net-SSLeay pcre pcre-devel ncurses ncurses-devel openssl openssl-devel openldap openldap-devel openldap-clients openldap-servers krb5 krb5-devel e2fsprogs e2fsprogs-devel libjpeg libpng libjpeg-devel libjpeg-6b libjpeg-devel-6b libpng-devel libtiff-devel freetype freetype-devel fontconfig-devel gd gd-devel kernel screen sysstat flex bison nss_ldap pam-devel compat-libstdc++-

二、清除系统中的httpd痕迹

yum remove httpd
rm -rvf /etc/httpd
rm /usr/bin/pod2man

三、创建www用户和用户组:

groupadd www
useradd -s /sbin/nologin -g www www

四、解压nginx模块包:

tar zxvf zlib-.tar.gz -C /usr/src
tar zxvf pcre-8.12.tar.gz -C /usr/src
tar zxvf openssl-.tar.gz -C /usr/src

五、解压、配置、编译、安装nginx_1.9:

tar zxvf nginx-.tar.gz -C /usr/src/
cd /usr/src/nginx-/
./configure --prefix=/usr/local/nginx \
--user=www \
--group=www \
--sbin-path=/usr/local/nginx/sbin/nginx \
--conf-path=/usr/local/nginx/conf/nginx.conf \
--error-log-path=/home/www/log/error.log \
--http-log-path=/home/www/log/access.log \
--pid-path=/home/www/pid/nginx.pid \
--lock-path=/home/www/pid/nginx.lock \
--with-mail \
--with-file-aio \
--with-http_ssl_module \
--with-http_flv_module \
--with-http_dav_module \
--with-http_sub_module \
--with-http_spdy_module \
--with-http_realip_module \
--with-http_addition_module \
--with-http_gunzip_module \
--with-http_gzip_static_module \
--with-http_stub_status_module \
--with-zlib=/usr/src/zlib- \
--with-pcre=/usr/src/pcre-8.12 \
--with-openssl=/usr/src/openssl- \
--without-select_module \
--without-poll_module \
--http-client-body-temp-path=/tmp/clientbody \
--http-proxy-temp-path=/tmp/proxy \
--http-fastcgi-temp-path=/tmp/fastcgi \
--http-uwsgi-temp-path=/tmp/uwsgi \
--http-scgi-temp-path=/tmp/scgi
make
make install

六、编辑nginx.conf配置文件:

cp /usr/local/nginx/conf/nginx.conf /usr/local/nginx/conf/nginx.conf.bak
ln -s /usr/local/nginx/conf/nginx.conf /etc/nginx.conf
vim /etc/nginx.conf
user www www;
worker_processes auto;
pid /home/www/pid/nginx.pid;
worker_rlimit_nofile ;

events
    {
        use epoll;
        worker_connections ;
        multi_accept on;
    }
http
    {
        include mime.types;
        default_type application/octet-stream;
        charset UTF-;
        server_names_hash_bucket_size ;
        client_header_buffer_size 32k;
        large_client_header_buffers  32k;
        client_max_body_size 50m;
        client_body_buffer_size 128k;
        sendfile on;
        tcp_nopush on;
        keepalive_timeout ;
        server_tokens off;
        tcp_nodelay on;

    # Proxy
        proxy_set_header Host $host;
        proxy_set_header X-Real-IP $remote_addr;
        proxy_set_header REMOTE-HOST $remote_addr;
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;

    # Fastcgi
        fastcgi_connect_timeout ;
        fastcgi_send_timeout ;
        fastcgi_read_timeout ;
        fastcgi_buffer_size 64k;
        fastcgi_buffers  64k;
        fastcgi_busy_buffers_size 128k;
        fastcgi_temp_file_write_size 256k;

    # Gzip Compression
        gzip on;
        gzip_buffers  8k;
        gzip_comp_level ;
        gzip_http_version 1.1;
        gzip_min_length ;
        gzip_proxied any;
        gzip_vary on;
        gzip_types

    # MIME Type
        text/xml application/xml application/atom+xml application/rss+xml application/xhtml+xml image/svg+xml
        text/javascript application/javascript application/x-javascript
        text/x-json application/json application/x-web-app-manifest+json
        text/css text/plain text/x-component
        font/opentype application/x-font-ttf application/vnd.ms-fontobject
        image/x-icon;
        gzip_disable  "msie6";

    # Cache
        open_file_cache max= inactive=20s;
        open_file_cache_valid 30s;
        open_file_cache_min_uses ;
        open_file_cache_errors on;

    # Log Format
        log_format access    '[$time_iso8601] "$remote_addr" "$http_x_forwarded_for"'
                    '"$request" "$request_body" "$http_cookie"'
                    '"$upstream_addr" "$upstream_status"'
                    '"$http_referer" "$status"'
                    '"$body_bytes_sent" "$http_user_agent"';

################################################## default ##################################################

    server
        {
            listen  default;
            server_name 127.0.0.1;
            access_log /home/www/log/access.log access;
            error_log /home/www/log/error.log error;
            root /home/www/html/;
            index index.html index.htm index.php;

            location ~ [^/]\.php(/|$)
            {
                fastcgi_pass unix:/dev/shm/php-cgi.sock;
                fastcgi_index index.php;
                include fastcgi.conf;
            }
            location /nginx_status
            {
                stub_status on;
                access_log off;
                allow 127.0.0.1;
                deny all;
            }
            location ~ .*\.(gif|jpg|jpeg|png|bmp|swf|flv|ico)$
            {
                expires 30d;
                access_log off;
            }
            location ~ .*\.(js|css)?$
            {
                expires 7d;
                access_log off;
            }
            if (!-e $request_filename)
            {
                rewrite  ^(.*)$  /index.php?s=$  last;
                break;
            }
        }

################################################## vhost ##################################################

    include vhost/*.conf;
    }

七、创建nginx相关目录,并修改权限:

mkdir -p /home/www/html
chown -R www:www /home/www/

八、测试启动nginx服务:

ln -s /usr/local/nginx/sbin/nginx /usr/bin/nginx
nginx -t
nginx -c /usr/local/nginx/conf/nginx.conf
ps -aux | grep nginx
netstat -anptu | grep 

九、编写nginx启动脚本:

vim /etc/init.d/nginx
#!/bin/sh
# chkconfig:
# Description:        Start and Stop Nginx
# Provides:        nginx
# Default-Start:
# Default-Stop:
PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin
NAME=nginx
NGINX_BIN=/usr/local/nginx/sbin/$NAME
CONFIGFILE=/usr/local/nginx/conf/$NAME.conf
PIDFILE=/home/www/pid/$NAME.pid
SCRIPTNAME=/etc/init.d/$NAME
case "$1" in
start)
echo -n "Starting $NAME... "
if netstat -tnpl | grep -q nginx;then
echo "$NAME (pid `pidof $NAME`) already running."
exit
fi
$NGINX_BIN -c $CONFIGFILE
 ] ; then
echo " failed"
exit
else
echo " done"
fi
;;
stop)
echo -n "Stoping $NAME... "
if ! netstat -tnpl | grep -q nginx; then
echo "$NAME is not running."
exit
fi
$NGINX_BIN -s stop
 ] ; then
echo " failed. Use force-quit"
exit
else
echo " done"
fi
;;
status)
if netstat -tnpl | grep -q nginx; then
PID=`pidof nginx`
echo "$NAME (pid $PID) is running..."
else
echo "$NAME is stopped"
exit
fi
;;
force-quit)
echo -n "Terminating $NAME... "
if ! netstat -tnpl | grep -q nginx; then
echo "$NAME is not running."
exit
fi
kill `pidof $NAME`
 ] ; then
echo " failed"
exit
else
echo " done"
fi
;;
restart)
$SCRIPTNAME stop
sleep
$SCRIPTNAME start
;;
reload)
echo -n "Reload service $NAME... "
if netstat -tnpl | grep -q nginx; then
$NGINX_BIN -s reload
echo " done"
else
echo "$NAME is not running, can't reload."
exit
fi
;;
configtest)
echo -n "Test $NAME configure files... "
$NGINX_BIN -t
;;
*)
echo "Usage: $SCRIPTNAME {start|stop|force-quit|restart|reload|status|configtest}"
exit
;;
esac

十、添加nginx系统服务:

chmod a+x /etc/init.d/nginx
chkconfig --add nginx
chkconfig --level  nginx on
chkconfig --list | grep nginx

十一、重新启动nginx服务:

service nginx restart
ps -aux | grep nginx
netstat -anptu | grep 

十二、测试:

vim /home/www/html/index.html
This is test nginx!!!
nginx server test is ok!!!
chown www:www /home/www/html/index.html

十三、防火墙开启80端口:

iptables -A INPUT -p tcp --dport  -j ACCEPT

CentOS_7.2安装Nginx_1.9的更多相关文章

  1. Linux(CentOS_7.6)安装Nginx

    1.安装依赖 12 yum -y install gcc zlib zlib-devel pcre-devel openssl openssl-devel 2.下载Nginx并解压 1234567 c ...

  2. CentOS_7.2安装Redis_3.0

    一.安装依赖包和开发工具: yum install vim vim-enhanced wget zip unzip telnet ntsysv compat* apr* nasm* gcc gcc* ...

  3. CentOS_7.2安装PHP_5.6

    一.安装依赖包和开发工具: yum install vim vim-enhanced wget zip unzip telnet ntsysv compat* apr* nasm* gcc gcc* ...

  4. CentOS_7.2安装MySQL_5.7

    一.安装依赖包和开发工具: yum install vim vim-enhanced wget zip unzip telnet ntsysv compat* apr* nasm* gcc gcc* ...

  5. CentOS_7下安装PHP7.3

    安装mysql:https://www.cnblogs.com/jiangml/p/10402390.html 下载PHP安装包: 官网:http://www.php.net/downloads.ph ...

  6. CentOS_7下安装MySQL

    卸载旧版本MySQl: 下载MySQ: MySQl官网:https://dev.mysql.com/downloads/mysql/ 版本自选,操作系统选Linux-Generic,64位系统或者32 ...

  7. CentOS_7下安装Nginx服务

    安装make: yum -y install gcc automake autoconf libtool make make是一个命令工具,是一个解释makefile中指令的命令工具.它可以简化编译过 ...

  8. 【CentOS_7】安装nginx

    1,下载 [root@VM_0_7_centos local]# wget http://nginx.org/download/nginx-1.14.2.tar.gz ---- ::-- http:/ ...

  9. [CentOS_7.4]Linux编译安装ffmpeg

    [CentOS_7.4]Linux编译安装ffmpeg   安装过程: 下载安装源,配置,编译,安装,设置环境变量. # wget http://www.ffmpeg.org/releases/ffm ...

随机推荐

  1. ftp相关资料

    一.ftp状态码 110  重新启动标记应答.在这种情况下文本是确定的,它必须是:MARK   yyyy=mmmm,其中yyyy是用户进程数据流标记,mmmm是服务器标记.      120     ...

  2. JavaScript高级程序设计 读书笔记 第二章

    <script>元素 直接在页面中嵌入JavaSript代码或包含外部JavaSript文件. 在代码中任何地方不能出现</script>,可通过转义字符'\'解决. 在XHT ...

  3. centos6.x开机卡死

    问题描述: centos6.x开机卡死在进度条处 远程登录,查看系统日志,看看卡在哪儿 通过远程连接,tail -fn 20 /var/log/messages 发现报错: init: prefdm ...

  4. SAML 2.0 setup steps, 效果图

    Steps of setting up SAML SSO. 效果图 # Registry a Identity Provider services in:(Might need purchase) I ...

  5. Java SE 基础:常用关键字

    Java SE 基础:常用关键字 常用关键字表

  6. WebForm简单控件,复合控件

    简单控件: 1.Label 会被编译成span标签 属性: Text:文本内容 CssClass:CSS样式 Enlabled:是否可用 Visible:是否可见 __________________ ...

  7. wcf 同时支持webhttp 和 引用方式

    wcf 实现参考 http://www.cnblogs.com/mingmingruyuedlut/p/4223116.html 兼容两种方式 1.修改服务端webconfig <system. ...

  8. css优先级问题

    关于CSS specificityCSS 的specificity 特性或称非凡性,它是衡量一个衡量CSS值优先级的一个标准,既然作为标准,就具有一套相关的判定规定及计算方式,specificity用 ...

  9. 微信小程序-视图列表渲染

    wx:for 在组件上使用wx:for控制属性绑定一个数组,即可使用数组中各项的数据重复渲染该组件. 默认数组的当前项的下标变量名默认为index,数组当前项的变量名默认为item <view ...

  10. 图解MySQL5.5详细安装与配置过程

    MySQL是一个开源的关系型数据库管理系统,原由瑞典MySQL AB公司开发,目前属于Oracle公司旗下.MySQL是目前世界上开源数据库中最受欢迎的产品之一,是应用最为广泛的开源数据库.MySQL ...