zoukankan      html  css  js  c++  java
  • Linux环境Nginx安装

    1、Nginx下载

    http://nginx.org/download/nginx-1.16.1.tar.gz

    2、依赖环境

    2.1 安装gcc环境

    [root@test1 soft]# yum install -y gcc-c++

    2.2 安装PCRE库,用于解析正则表达式

    [root@test1 soft]# yum install -y pcre pcre-devel

    2.3 zlib压缩和解压缩依赖

    [root@test1 soft]# yum install -y zlib zlib-devel

    2.4 SSL 安全的加密的套接字协议层,用于HTTP安全传输,也就是https

    [root@test1 soft]# yum install -y openssl openssl-devel

    3、Nginx安装

    3.1 解压文件

    [root@test1 soft]# tar -zxvf nginx-1.16.1.tar.gz

    3.2 执行./configure

    [root@test1 nginx-1.16.1]# ./configure --prefix=/usr/local/nginx --conf-path=/usr/local/nginx/nginx.conf

    3.3 执行make

    [root@test1 nginx-1.16.1]# make

    3.4 执行make install

    [root@test1 nginx-1.16.1]# make install

    4、Nginx配置及启动

    4.1 Nginx启动

    进入到/usr/local/nginx/sbin目录执行

    [root@test1 sbin]# ./nginx 

    查看nginx进程已经运行起来了

    浏览器中输入http://172.16.43.41/,能看到下面这个页面说明nginx已经启动成功了。

    4.2 Nginx停止

    [root@test1 sbin]# ./nginx -s stop

    4.3 Nginx重新加载

    [root@test1 sbin]# ./nginx -s reload
  • 相关阅读:
    dns解析后ping的居然不是自己的ip
    Ubuntu修改默认使用的bash
    安装 libbpg
    libnccl安装
    安装opencv
    tcpdump使用
    jQuery类操作
    jQuery对象和DOM对象的相互转换
    jQuery入口函数
    什么是外边距重叠?重叠的结果是什么?
  • 原文地址:https://www.cnblogs.com/shileibrave/p/14573392.html
Copyright © 2011-2022 走看看