首页
学习
活动
专区
工具
TVP
发布
精选内容/技术社群/优惠产品,尽在小程序
立即前往

linux安装nginx-1.14

简介

安装 nginx 的时候,依赖包是不用安装的,只要有源码就可以了。(包安装太多会引起冲突)

安装脚本

#!/bin/bash

# author : Jalright

# date : 2020-02-24

# modify the version variable ,there you need !

nginx_version="1.14.2"

openssl_version="1.1.1d"

zlib_version="1.2.11"

pcre_version="8.44"

# the default install path , you can change it here

install_path="/usr/local/nginx"

# check file if exists , if not exit script.

function checkFile() {

if [ ! -f "$1" ]; then

echo "$1 is not exitst"

exit 1

fi

}

# install complie tools

yum -y install gcc gcc-c++ make wget tar

# temp dir

mkdir -p /tmp/make_nginx

cd /tmp/make_nginx

# download nginx

wget -c -t 0 -T 1200 http://nginx.org/download/nginx-${nginx_version}.tar.gz

checkFile nginx-${nginx_version}.tar.gz

# download openssl

wget -c -t 0 -T 1200 https://www.openssl.org/source/openssl-${openssl_version}.tar.gz

checkFile openssl-${openssl_version}.tar.gz

# download zlib for gizp

wget -c -t 0 -T 1200 http://zlib.net/zlib-${zlib_version}.tar.gz

checkFile zlib-${zlib_version}.tar.gz

# download pcre for regular expression

wget -c -t 0 -T 1200 ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-${pcre_version}.tar.gz

checkFile pcre-${pcre_version}.tar.gz

# Don't need install the dependent packages , we juse need source code .

# When we compile nginx , it will compile with other dependent source code auto.

tar zxf openssl-${openssl_version}.tar.gz

tar zxf zlib-${zlib_version}.tar.gz

tar zxf pcre-${pcre_version}.tar.gz

tar zxf nginx-${nginx_version}.tar.gz

cd nginx-${nginx_version}

# default compile with http2 module 、ssl、status ... If you need other module , you can modify it here.

./configure --prefix=${install_path} --user=www --group=www --with-http_ssl_module --with-http_v2_module --with-http_gzip_static_module --with-http_stub_status_module --with-openssl=../openssl-${openssl_version} --with-pcre=../pcre-${pcre_version} --with-zlib=../zlib-${zlib_version}

make

make install

# crete work user

useradd -M -s /sbin/nologin www

总结

可以根据实际需求,简单修改一下脚本即可。不修改就是用默认的

  • 发表于:
  • 原文链接https://kuaibao.qq.com/s/20200601A02KCN00?refer=cp_1026
  • 腾讯「腾讯云开发者社区」是腾讯内容开放平台帐号(企鹅号)传播渠道之一,根据《腾讯内容开放平台服务协议》转载发布内容。
  • 如有侵权,请联系 cloudcommunity@tencent.com 删除。

扫码

添加站长 进交流群

领取专属 10元无门槛券

私享最新 技术干货

扫码加入开发者社群
领券