centosmini安装nginxnginx/1.14.0

1.自行到nginx官网下载nginx-1.14.0 http://nginx.org/
2.上传到/home下,解压

tar  -xvf  /home/nginx-1.14.0.tar.gz  -C /usr/local/

3.安装依赖包openssl,zlib,pcre

yum  install  -y  zlib
yum -y install pcre    
#openssl我是从网上下载的源码安装的,也放在/home下
tar  -xvf  openssl-1.1.1-pre8.tar.gz
cd openssl-1.1.1-pcre
./config  shared zlib --prefix=/usr/local/openssl/  && make && make  install   #在openssl-1.1.1-pre8目录下执行配置编译安装
./config  -t #执行完安装后执行这一步
make  depend
cd  /usr/local/
ln -s openssl  ssl    #建立软连接
vi  /etc/ld.so.conf 
    /usr/local/openssl/lib/   #加入这行代码
ldconfig
vi /etc/profile/
    export OPENSSL=/usr/local/openssl/bin
    export PATH=$OPENSSL:$PATH:$HOME/bin
source  /etc/profile/   #加进环境变量

4.配置编译安装nginx

mv  nginx1.14.0/  nginx
cd nginx
./configure    #以下是配置的结果

configure结果

make && make install  #以下是编译和安装的结果,虽然有报错,但是不影响!

这里写图片描述
5.将nginx加进系统服务和开机启动

vi  /etc/init.d/nginx   #新建一个nginx文件,并给与可执行权限
#! /bin/bash
# chkconfig: 35 85 15
# description: Nginx is an HTTP(S) server, HTTP(S) reverse
set -e
PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin
DESC="nginx daemon"
NAME=nginx
DAEMON=/usr/local/nginx/sbin/$NAME
SCRIPTNAME=/etc/init.d/$NAME
test -x $DAEMON || exit 0
d_start(){
    $DAEMON || echo -n " already running"
}
d_stop() {
    $DAEMON -s quit || echo -n " not running"
}
d_reload() {
    $DAEMON -s reload || echo -n " counld not reload"
}
case "$1" in
start)
    echo -n "Starting $DESC:$NAME"
    d_start
    echo "."
;;
stop)
    echo -n "Stopping $DESC:$NAME"
    d_stop
    echo "."
;;
reload)
    echo -n "Reloading $DESC configuration..."
    d_reload
    echo "reloaded."
;;
restart)
   echo -n "Restarting $DESC: $NAME"
    d_stop
    sleep 2
    d_start
    echo "."
;;
*)
    echo "Usage: $SCRIPTNAME {start|stop|restart|reload}" >&2
    exit 3
;;
esac
exit 0
chkconfig  --add  nginx
systemctl  enable  nginx.service
service nginx start   #以下是启动成功的截图

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值