IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 系统运维 -> macos 安装nginx -> 正文阅读

[系统运维]macos 安装nginx

网上大部分文章都是yum(Linux)或者用brew安装。本人机器macos 10.15.2,刚开始使用brew安装不成功,于是选择离线安装。安装Nginx需要用到pcre和openssl,需要提前准备这两个文件。

1.安装openssl

到官网下载安装包,解压后切换到openssl的目录,执行以下命令:

./config --prefix=/usr/local/openssl

看到以下信息表示配置成功。

**********************************************************************
***                                                                ***
***   OpenSSL has been successfully configured                     ***
***                                                                ***
***   If you encounter a problem while building, please open an    ***
***   issue on GitHub <https://github.com/openssl/openssl/issues>  ***
***   and include the output from the following command:           ***
***                                                                ***
***       perl configdata.pm --dump                                ***
***                                                                ***
***   (If you are new to OpenSSL, you might want to consult the    ***
***   'Troubleshooting' section in the INSTALL file first)         ***
***                                                                ***
**********************************************************************

然后执行以下命令:

make && make install

接着是漫长的等待。如果提示权限:

Cannot create directory /usr/local/openssl: Permission denied

执行以下命令:

sudo chown -R $(whoami) /usr/local/

2.安装pcre

仍然采用离线的方式安装,到下面的地址下载安装包:

ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-8.36.zip

解压后,切换到解压后的目录输入以下命令:

./configure --prefix=/usr/local/pcre --enable-utf8 --enable-unicode-properties

3.安装nginx

到nginx官网下载安装包解压,并切换到安装目录,执行以下命令:

./configure --prefix=/usr/local/nginx

然后屏幕呼呼啦啦一堆代码,最后几行如下:

/configure: error: the HTTP rewrite module requires the PCRE library.
You can either disable the module by using --without-http_rewrite_module
option, or install the PCRE library into the system, or build the PCRE library
statically from the source with nginx by using --with-pcre=<path> option.

啊哈,出错了,提示缺少pcre库,刚才明明已经安装了,说明姿势不对,换个姿势重来。上面的命令不完整,需要指定pcre的目录和openssl的目录,但是这个目录不是安装后的目录,而是刚开始解压的后的位置。执行以下命令(注意with):

./configure --prefix=/usr/local/nginx --with-pcre=/Users/imac/software/pcre-8.36 --with-openssl=/Users/imac/software/openssl-1.1.1n

出现以下内容说明成功

Configuration summary
  + using PCRE library: /Users/imac/software/pcre-8.36
  + using OpenSSL library: /Users/imac/software/openssl-1.1.1n
  + using system zlib library

  nginx path prefix: "/usr/local/nginx"
  nginx binary file: "/usr/local/nginx/sbin/nginx"
  nginx modules path: "/usr/local/nginx/modules"
  nginx configuration prefix: "/usr/local/nginx/conf"
  nginx configuration file: "/usr/local/nginx/conf/nginx.conf"
  nginx pid file: "/usr/local/nginx/logs/nginx.pid"
  nginx error log file: "/usr/local/nginx/logs/error.log"
  nginx http access log file: "/usr/local/nginx/logs/access.log"
  nginx http client request body temporary files: "client_body_temp"
  nginx http proxy temporary files: "proxy_temp"
  nginx http fastcgi temporary files: "fastcgi_temp"
  nginx http uwsgi temporary files: "uwsgi_temp"
  nginx http scgi temporary files: "scgi_temp"

执行以下命令:

make && make install

安装成功以后会在/usr/local下出现nginx目录

4、启动nginx

切换到/usr/local/nginx目录,执行以下命令

cd /usr/local/nginx

访问localhost,出现以下界面说明启动成功:

?

如果是用brew安装出现404,请切换源之后再安装:

brew install nginx
==> Downloading https://mirrors.ustc.edu.cn/homebrew-bottles/bottles/openssl%401
#=#=#                                                                         
curl: (22) The requested URL returned error: 404 
Error: Failed to download resource "openssl@1.1"
Download failed: https://mirrors.ustc.edu.cn/homebrew-bottles/bottles/openssl%401.1-1.1.1g.catalina.bottle.tar.gz

清华源最近好像有问题,请参考另一篇文章macos中brew切换到阿里源_Apple_羊先森的博客-CSDN博客macos中brew切换到阿里源https://blog.csdn.net/caicaimaomao/article/details/123662715

  系统运维 最新文章
配置小型公司网络WLAN基本业务(AC通过三层
如何在交付运维过程中建立风险底线意识,提
快速传输大文件,怎么通过网络传大文件给对
从游戏服务端角度分析移动同步(状态同步)
MySQL使用MyCat实现分库分表
如何用DWDM射频光纤技术实现200公里外的站点
国内顺畅下载k8s.gcr.io的镜像
自动化测试appium
ctfshow ssrf
Linux操作系统学习之实用指令(Centos7/8均
上一篇文章      下一篇文章      查看所有文章
加:2022-03-24 00:59:27  更:2022-03-24 01:01:24 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/15 23:57:45-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码