ubuntu环境下nginx源码编译安装

1、更新系统

sudo apt-get update && sudo apt-get upgrade

2、安装nginx的依赖包  zlib pcre openssl(可以源码安装也可以直接系统安装)

sudo apt-get install libpcre3 libpcre3-dev zlib1g-dev libssl-dev build-essential

3、下载openssl源码包

wget http://www.openssl.org/source/openssl-1.0.2a.tar.gz

sudo tar -zxvf openssl-1.0.2a.tar.gz -C /usr/local/src/

cd /usr/local/src/openssl-1.0.2a/

sudo ./config

sudo make && sudo make install

4、下载nginx源码包

wget  http://nginx.org/download/nginx-1.8.0.tar.gz

sudo tar -zxvf nginx-1.8.0.tar.gz -C /usr/local/src/

cd /usr/local/src/nginx-1.8.0

sudo ./configure --prefix=/usr/local/nginx --with-openssl=/usr/include/openssl

sudo make && sudo make install

5、配置nginx 开机服务。

默认这么安装好以后每次检查配置、重启之类的操作略麻烦,所以我们模仿 Ubuntu 14.04 官方源,给系统设置个 nginx 服务,方便我们检查配置、启动重启关闭 Nginx 以及开机自动启动 Nginx

sudo vim /etc/init.d/nginx

插入如下内容:

  1 #!/bin/sh
  2
  3 ### BEGIN INIT INFO
  4 # Provides:          nginx
  5 # Required-Start:    $local_fs $remote_fs $network $syslog
  6 # Required-Stop:     $local_fs $remote_fs $network $syslog
  7 # Default-Start:     2 3 4 5
  8 # Default-Stop:      0 1 6
  9 # Short-Description: starts the nginx web server
 10 # Description:       starts nginx using start-stop-daemon
 11 ### END INIT INFO
 12
 13 PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin
 14 DAEMON=/usr/sbin/nginx
 15 NAME=nginx
 16 DESC=nginx
 17
 18 # Include nginx defaults if available
 19 if [ -f /etc/default/nginx ]; then
 20    . /etc/default/nginx
 21 fi
 22
 23 test -x $DAEMON || exit 0
 24
 25 set -e
 26
 27 . /lib/lsb/init-functions
 28
 29 test_nginx_config() {
 30    if $DAEMON -t $DAEMON_OPTS >/dev/null 2>&1; then
 31       return 0
 32    else
 33       $DAEMON -t $DAEMON_OPTS
 34       return $?
 35    fi
 36 }
 37
 38 case "$1" in
 39    start)
 40       echo -n "Starting $DESC: "
 41       test_nginx_config
 42       # Check if the ULIMIT is set in /etc/default/nginx
 43       if [ -n "$ULIMIT" ]; then
 44          # Set the ulimits
 45          ulimit $ULIMIT
 46       fi
 47       start-stop-daemon --start --quiet --pidfile /var/run/$NAME.pid  48           --exec $DAEMON -- $DAEMON_OPTS || true
 49       echo "$NAME."
 50       ;;
 51
 52    stop)
 53       echo -n "Stopping $DESC: "
 54       start-stop-daemon --stop --quiet --pidfile /var/run/$NAME.pid  55           --exec $DAEMON || true
 56       echo "$NAME."
 57       ;;
 58
 59    restart|force-reload)
 60       echo -n "Restarting $DESC: "
 61       start-stop-daemon --stop --quiet --pidfile  62           /var/run/$NAME.pid --exec $DAEMON || true
 63       sleep 1
 64       test_nginx_config
 65       # Check if the ULIMIT is set in /etc/default/nginx
 66       if [ -n "$ULIMIT" ]; then
 67          # Set the ulimits
 68          ulimit $ULIMIT
 69       fi
 70       start-stop-daemon --start --quiet --pidfile  71           /var/run/$NAME.pid --exec $DAEMON -- $DAEMON_OPTS || true
 72       echo "$NAME."
 73       ;;
 74
 75    reload)
 76       echo -n "Reloading $DESC configuration: "
 77       test_nginx_config
 78       start-stop-daemon --stop --signal HUP --quiet --pidfile /var/run/$NAME.pid  79           --exec $DAEMON || true
 80       echo "$NAME."
 81       ;;
 82
 83    configtest|testconfig)
 84       echo -n "Testing $DESC configuration: "
 85       if test_nginx_config; then
 86          echo "$NAME."
 87       else
 88          exit $?
 89       fi
 90       ;;
 91
 92    status)
 93       status_of_proc -p /var/run/$NAME.pid "$DAEMON" nginx && exit 0 || exit $?
 94       ;;
 95    *)
 96       echo "Usage: $NAME {start|stop|restart|reload|force-reload|status|configtest}" >&2
 97       exit 1
 98       ;;
 99 esac
100
101 exit 0

6、设置文件权限并增加到系统服务

sudo chmod +x ./nginx
sudo update-rc.d nginx defaults

7、启动nginx

sudo /etc/init.d/nginx

时间: 2024-10-11 12:53:31

ubuntu环境下nginx源码编译安装的相关文章

Ubuntu系统下OpenDaylight源码编译安装

操作系统:Linux x64 / Ubuntu 14.04 研究领域:软件定义网络SDN (Software-defined Networking) 开发组件:OpenDaylight 声明:转载请注明出处及本文链接 一.环境搭建 1. Java+Apache Maven基本开发环境搭建.详见相应的前面两篇文档: <Linux Ubuntu系统下Java开发环境搭建> <Linux Ubuntu系统下Apache Maven的安装和配置> 2. 安装用来获取OpenDaylight

LAMP环境官方最新源码编译安装

前言 Linux+Apache+Mysql/MariaDB+Perl/PHP/Python一组常用来搭建动态网站或者服务器的开源软件,本身都是各自独立的程序,但是因为常被放在一起使用,拥有了越来越高的兼容度,共同组成了一个强大的Web应用程序平台.随着开源潮流的蓬勃发展,开放源代码的LAMP已经与J2EE和.Net商业软件形成三足鼎立之势,并且该软件开发的项目在软件方面的投资成本较低,因此受到整个IT界的关注.从网站的流量上来说,70%以上的访问流量是LAMP来提供的,LAMP是最强大的网站解决

Nginx源码编译安装选项

[Nginx源码编译过程] make是用来编译的,它从Makefile中读取指令,然后编译. make install是用来安装的,它也从Makefile中读取指令,安装到指定的位置. configure命令是用来检测你的安装平台的目标特征的.它定义了系统的各个方面,包括nginx的被允许使用的连接处理的方法,比如它会检测你是不是有CC或GCC,并不是需要CC或GCC,它是个shell脚本,执行结束时,它会创建一个Makefile文件. [Nginx的configure命令支持以下参数] --p

Nginx 源码编译安装

Nginx 源码编译安装环境 Centos7 Nginx1.8.1    下载地址:http://nginx.org/download/ 选择自己想要的版本 我这边使用1.8.1,下载地址:http://nginx.org/download/nginx-1.8.1.tar.gz 1.编译前安装环境 [[email protected]_30 ~]# yum groupinstall "Development Tools" -y                #安装开发工具包 [[ema

nginx 源码编译安装并编写服务启动脚本

1. 使用xshell将nginx源码包上传到server 2. 安装依赖的软件包工具 zlib-devel?? pcre-devel?? gcc? gcc-c++ yum -y install zlib-devel pcere-devel gcc gcc-c++ 验证一下: 3. 指定nginx的运行用户 (创建nginx用户不使其登录系统.-M不创建宿主目录) [[email protected] ~]# useradd -s /sbin/nologin -M nginx 4. 编译安装ng

生产场景:实战nginx源码编译安装

生产场景:nginx实战安装 一.准备环境: 1.1 操作系统:centos 6.7     安装常用软件 yum install tree telnet dos2unix sysstat lrzsz nc nmap zip unzip -y 1.2 官网下载ngnx源码包nginx-1.12.2.tar.gz,并隐藏nginx版本号和修改nginx软件名 下载nginx源码包nginx-1.12.2.tar.gz,并隐藏nginx版本号和修改nginx软件名(此步骤省略). 二.开始安装ngi

Ubuntu 14.04 LTS 下使用源码编译安装 Sagemath 6.7 x64 (小结)

下载源码包 系统的最低要求: 6GB 硬盘 : 2GB RAM. 命令行工具: A C/C++ compiler: Since Sage builds its own GCC if needed, a wide variety of C/C++ compilers is supported.Many GCC versions work, from as old as version 3.4.3 to the most recent release. Clang also works. On So

centos下mysql源码编译安装和主备异步配置

安装机器:10.11.1.193.10.11.1.194 主备同步方式:异步同步 mysql版本:mysql community5.6.28 下载源码并解压: tar -zxf mysql-5.6.28.tar.gz cmake安装: 安装编译所需环境: sudo yum install make gcc-c++ cmake bison-develncurses-devel libaio libaio-devel net-tools perl 编译安装mysql cmake-DCMAKE_INS

实战Nginx源码编译安装与配置

实验环境:RHEL7.0    server1.example.com  172.25.254.1 实验内容:   1.准备                      2. 安装                      3.配置                      4.添加https                      5.虚拟主机                      6.<<nginx 监控小插件>>网站信息统计                      7.