码迷,mamicode.com
首页 > 系统相关 > 详细

ubuntu 安装 nginx

时间:2020-07-08 19:36:30      阅读:95      评论:0      收藏:0      [点我收藏+]

标签:nload   tar   logs   html   htm   备忘   学习   ubunt   conf   

1、nginx 安装需要4个软件(openssl-fips-2.0.10.tar.gz、zlib-1.2.11.tar.gz、pcre-8.44.tar.gz、nginx-1.18.0.tar.gz)

   (1)依次下载、安装

     http://www.openssl.org/source/openssl-fips-2.0.10.tar.gz

     http://zlib.net/zlib-1.2.11.tar.gz

     https://ftp.pcre.org/pub/pcre/pcre-8.44.tar.gz

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

     (2) openssl安装

    tar -xzvf openssl-fips-2.0.10.tar.gz
cd openssl-fips-2.0.10
./config && make && make install
(3) pcre安装
  tar -xzvf pcre-8.44.tar.gz
  cd pcre-8.44
./configure && make && make install

     (4)zlib安装

          tar -xzvf zlib-1.2.11.tar.gz

          cd zlib-1.2.11

          ./configure && make && make install

  (5) nginx安装

   tar -xzvf nginx-1.18.0.tar.gz
cd nginx-1.10.2
./configure && make && make install

2、配置参照 我的另一篇博客 windows 下配置 ubuntu,地址 https://www.cnblogs.com/spqin/p/12996576.html
  备注:使用 whereis nginx 查看 nginx的安装位置,再进行配置

3、启动命令

/usr/local/nginx/sbin/nginx


学习备忘,节约时间。





ubuntu 安装 nginx

标签:nload   tar   logs   html   htm   备忘   学习   ubunt   conf   

原文地址:https://www.cnblogs.com/spqin/p/13106737.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!