安装Nginx

 、安装pcre

 cd /usr/local/src

 mkdir /usr/local/pcre

 tar zxvf pcre-8.36.tar.gz

 cd pcre-8.36

 ./configure --prefix=/usr/local/pcre

 make && make install

 、安装openssl

 cd /usr/local/src

 mkdir /usr/local/openssl

 tar zxvf openssl-1.0.1h.tar.gz

 cd openssl-1.0.1h

 ./config --prefix=/usr/local/openssl

 make && make install

 vi /etc/profile

 export PATH=$PATH:/usr/local/openssl/bin

 :wq!

 source /etc/profile

 、安装zlib

 cd /usr/local/src

 mkdir /usr/local/zlib

 tar zxvf zlib-1.2..tar.gz

 cd zlib-1.2.

 ./configure --prefix=/usr/local/zlib

 make && make install

 、安装Nginx

 groupadd www

 useradd -g www www -s /bin/false

 cd /usr/local/src

 tar zxvf nginx-1.8..tar.gz

 cd nginx-1.8.

 mkdir -p /export/servers/nginx

 ./configure --prefix=/export/servers/nginx --without-http_memcached_module --user=www --group=www --with-http_stub_status_module --with-http_ssl_module --with-http_gzip_static_module --with-openssl=/usr/local/src/openssl-1.0.1h --with-zlib=/usr/local/src/zlib-1.2. --with-pcre=/usr/local/src/pcre-8.36

 注意:--with-openssl=/usr/local/src/openssl-1.0.1h --with-zlib=/usr/local/src/zlib-1.2. --with-pcre=/usr/local/src/pcre-.36指向的是源码包解压的路径,而不是安装的路径,否则会报错

 make && make install

 /export/servers/nginx/sbin/nginx #启动Nginx

 设置nginx开机启动

 vi /etc/rc.d/init.d/nginx  #编辑启动文件添加下面内容

 ############################################################

 #!/bin/sh

 #

 # nginx - this script starts and stops the nginx daemon

 #

 # chkconfig: -  

 # description: Nginx is an HTTP(S) server, HTTP(S) reverse \

 # proxy and IMAP/POP3 proxy server

 # processname: nginx

 # config: /etc/nginx/nginx.conf

 # config: /usr/local/nginx/conf/nginx.conf

 # pidfile: /usr/local/nginx/logs/nginx.pid

 # Source function library.

 . /etc/rc.d/init.d/functions

 # Source networking configuration.

 . /etc/sysconfig/network

 # Check that networking is up.

 [ "$NETWORKING" = "no" ] && exit 

 nginx="/export/servers/nginx/sbin/nginx"

 prog=$(basename $nginx)

 NGINX_CONF_FILE="/export/servers/nginx/conf/nginx.conf"

 [ -f /etc/sysconfig/nginx ] && . /etc/sysconfig/nginx

 lockfile=/var/lock/subsys/nginx

 make_dirs() {

 # make required directories

 user=`$nginx -V >& | grep "configure arguments:" | sed 's/[^*]*--user=\([^ ]*\).*/\1/g' -`

 if [ -z "`grep $user /etc/passwd`" ]; then

 useradd -M -s /bin/nologin $user

 fi

 options=`$nginx -V >& | grep 'configure arguments:'`

 for opt in $options; do

 if [ `echo $opt | grep '.*-temp-path'` ]; then

 value=`echo $opt | cut -d "=" -f `

 if [ ! -d "$value" ]; then

 # echo "creating" $value

 mkdir -p $value && chown -R $user $value

 fi

 fi

 done

 }

 start() {

 [ -x $nginx ] || exit 

 [ -f $NGINX_CONF_FILE ] || exit 

 make_dirs

 echo -n $"Starting $prog: "

 daemon $nginx -c $NGINX_CONF_FILE

 retval=$?

 echo

 [ $retval -eq  ] && touch $lockfile

 return $retval

 }

 stop() {

 echo -n $"Stopping $prog: "

 killproc $prog -QUIT

 retval=$?

 echo

 [ $retval -eq  ] && rm -f $lockfile

 return $retval

 }

 restart() {

 #configtest || return $?

 stop

 sleep 

 start

 }

 reload() {

 #configtest || return $?

 echo -n $"Reloading $prog: "

 killproc $nginx -HUP

 RETVAL=$?

 echo

 }

 force_reload() {

 restart

 }

 configtest() {

 $nginx -t -c $NGINX_CONF_FILE

 }

 rh_status() {

 status $prog

 }

 rh_status_q() {

 rh_status >/dev/null >&

 }

 case "$1" in

 start)

 rh_status_q && exit 

 $

 ;;

 stop)

 rh_status_q || exit 

 $

 ;;

 restart|configtest)

 $

 ;;

 reload)

 rh_status_q || exit 

 $

 ;;

 force-reload)

 force_reload

 ;;

 status)

 rh_status

 ;;

 condrestart|try-restart)

 rh_status_q || exit 

 ;;

 *)

 echo $"Usage: $0 {start|stop|status|restart|condrestart|try-restart|reload|force-reload|configtest}"

 exit 

 esac

 ############################################################

 :wq! #保存退出

 chmod  /etc/rc.d/init.d/nginx #赋予文件执行权限

 chkconfig nginx on #设置开机启动

 /etc/rc.d/init.d/nginx restart #重启

 log_format custom_log '[$status] || $time_local || $remote_addr || $http_x_forwarded_for || $request || $query_string || $body_bytes_sent || $http_referer || $request_time || $http_user_agent || $http_cookie || $host || up_addr:$upstream_addr || up_resp:$upstream_response_time || up_status:$upstream_status || $server_addr ';

gomefinance

Nginx1.8 安装说明的更多相关文章

  1. nginx1.8安装nginx_concat_module及400错误解决办法

    nginx安装concat模块可以合并js,css等静态资源,减少http请求 在nginx源码目录执行命令: ./configure --user=www --group=www --prefix= ...

  2. [原创] zabbix学习之旅一:源码安装

    zabbix是一个基于WEB界面的提供分布式系统监视以及网络监视功能的企业级的开源解决方案.zabbix能监视各种网络参数,保证服务器系统的安全运营:并提供灵活的通知机制以让系统管理员快速定位/解决存 ...

  3. linux下安装nginx与配置

    linux系统为Centos 64位 第一步:从http://nginx.org/download/上下载相应的版本(或者wget http://nginx.org/download/nginx-1. ...

  4. 运用Zabbix实现内网服务器状态及局域网状况监控(3) —— Zabbix服务端安装

    1. Zabbix服务端安装,基于LNMP PHP5.5+Nginx1.9安装配置:http://www.cnblogs.com/vurtne-lu/p/7707536.html MySQL5.5编译 ...

  5. Nginx(一):linux下安装nginx与配置

    linux系统为Centos 64位 准备目录 [root@instance-3lm099to ~]# mkdir /usr/local/nginx [root@instance-3lm099to ~ ...

  6. 编译安装php、nginx

    以centos6.6为例 1.安装以及配置php 首先在官网下载源码包http://php.net/downloads.php 这里下载php-7.1.16 .tar.gzcd php-7.1.16 ...

  7. 在linux系统下安装两个nginx以及启动、停止、重起

    如果没有安装过nginx请看:linux下nginx部署以及配置详解 1.第一个nginx已经安装完成后,现在安装第二个nginx 启动:sudo /usr/sbin/nginx3 重起:sudo / ...

  8. yum 快速LAMP/LNMP 安装(centos7+mysql5.7+apache+php5.6 (缺点:好多模块没有加载)

    1.安装Apache 安装centos7默认自带(Apache2.4.6)版本 yum -y install httpd 2.开启apache服务 systemctl start httpd.serv ...

  9. Centos7架设NMP服务器笔记

    安装centos7.3 1.从mirrors.163.com下载7.3 2.准备虚拟机vitualbox,网络我使用的桥接到无线网卡,直接连我到路由器,IP自动分配(本来想搞静态IP的,搞了好久没成功 ...

随机推荐

  1. A simple windows programm in c

    A simple windows programm in c        The following programm is a minimal windows program. It opens ...

  2. yii2 框架中的即点即改入库

    视图层 <td><span class='num'  id="<?php echo $value['goods_attr_id']?>">< ...

  3. APP图标设计小技巧:在iOS上快速获得APP图标的真实预览图

    严格来说,这并不是一篇关于前端开发的文章,因为涉及到的知识非常浅.这只是一个向设计狮们分享的小经验,只是其中用到了一些前端内容. 最近接了个私活,了解到一个初创公司正在高价悬赏Logo(主要用于APP ...

  4. 伪类 :after 清除浮动的原理和方法

    浮动元素容器的clearing问题1. 问题的由来有这样一种情形:在一个容器(container)中,有两个浮动的子元素.<div>        <div style=" ...

  5. Qt 编码问题QTextCodec

    在学习计算机语言的时候, 关于字体编码问题, 一直是大家开始学习新语言比较头痛的问题, 在这边总结一下关于Qt图形框架开发的编码问题. 一般在Window开发环境里,是GBK编码,在Linux开发环境 ...

  6. CSS Fonts(字体)

    CSS Fonts(字体) 一.serif和sans-serif字体之间的区别 注意: 在计算机屏幕上,sans-serif字体被认为是比serif字体容易阅读. 二.CSS字型 在CSS中,有两种类 ...

  7. Thinkphp5.0实战开发二------自动生成目录结构

    序言 ThinkPHP5.0 具备自动创建功能,可以用来自动生成需要的模块及目录结构和文件等,自动生成主要调用\think\Build 类库.ThinkPHP5.0中模块文件夹在application ...

  8. 20145103JAVA第二次实验报告

    实验二 Java面向对象程序设计 实验内容 1.初步掌握单元测试和TDD 2.理解并掌握面向对象三要素:封装.继承.多态 3.初步掌握UML建模 4.熟悉S.O.L.I.D原则 5.了解设计模式 实验 ...

  9. 20145302张薇《Java程序设计》第三周学习总结

    20145302张薇<Java程序设计>第三周学习总结 教材学习内容总结 第四章 定义类 一个原始码中有多少类就会有多少.class文档. 标准类 使用java.util.scanner让 ...

  10. 5309 《Java程序设计》第6周学习总结

    教材学习内容总结 输入与输出 InputStream与OutputStream 从应用程序角度来看,如果要将数据从来源取出,可以使用输入串流:如果要将数据写入目的地,可以使用输出串流.在Java中,输 ...