Linux学习之Ubuntu 20.04在github下载源码安装Openresty 1.19.3.1

参考的博文:《在 Ubuntu 上使用源码安装 OpenResty》
《OpenResty 安装安装详解-Ubuntu》
《Linux学习之CentOS 7源码安装openresty》

https://openresty.org/en/download.html是官网下载网址,页面往下拉有下载的链接。

https://github.com/openresty/openresty是github上的链接。

可以点击上图中tags进入有不同版本的页面。

sudo cat /etc/issue可以看到操作系统的版本是Ubuntu 20.04.4 LTSsudo lsb_release -r可以看到版本是20.04sudo uname -r可以看到内核版本是5.5.19sudo make -v可以看到版本是GNU Make 4.2.1

sudo apt-get install -y libpcre3-dev libssl-dev perl build-essential curl zlib1g-dev libreadline-dev libncurses5-dev libpcre3-dev安装依赖包。

安装完成之后如下:

sudo wget https://github.com/openresty/openresty/archive/refs/tags/v1.19.3.1.tar.gz下载源码压缩包。

sudo mkdir /openrestycode新建一个/openrestycode放置解压出来的源码。

sudo tar zxf v1.19.3.1.tar.gz -C /openrestycode/把源码解压到/openrestycode里边,然后使用ls -l /openrestycode看一下/openrestycode里边的文件。

cd /openrestycode/openresty-1.19.3.1/进入到/openrestycode/openresty-1.19.3.1/里边,ls -l看一下当前目录的文件信息。

sudo make执行。

发现报错如下:

bash 复制代码
rm: cannot remove '*.tar.bz2': No such file or directory
./util/mirror-tarballs: line 891: unix2dos: command not found
make: *** [Makefile:4: all] Error 1

sudo apt-get install dos2unix安装。

sudo make再次执行,发现又报错:

bash 复制代码
rm: cannot remove '*.tar.bz2': No such file or directory
unix2dos: converting file README-windows.txt to DOS format...
./util/mirror-tarballs: line 913: hg: command not found
make: *** [Makefile:4: all] Error 1

sudo apt-get install -y apt-file安装apt-file

sudo apt-file update更新。

sudo apt-file search hg输出了Finding relevant cache files to search ...E: The cache is empty. You need to run "apt-file update" first.

上边使用sudo apt-file search hg解决不了我的问题,我只能使用sed -n '913p' ./util/mirror-tarballs' ./util/mirror-tarballs看一下./util/mirror-tarballs第913行是什么内容,然后把hg clone粘贴到百度上查找一下,结果看到了博文《【ubuntu】hg clone使用》

想要使用sudo apt-get install mercurial安装mercurial却又提示E: You don't have enough free space in /var/cache/apt/archives/.

有看一篇博文《ubuntu "you don't have enough free space in /var/cache/apt/archives'错误解决》,找到一个大型文件删除了。

sudo apt-get install -y mercurial免确认安装mercurial

安装完成如下:

cd /openrestycode/openresty-1.19.3.1/进入到源码目录里边,sudo make再次执行编译。

完成之后如下:

cd openresty-1.19.3.1/进入到目录。

sudo ./configure --with-http_gzip_static_module --with-http_v2_module --with-http_stub_status_module --with-luajit --with-http_iconv_module进行配置。

完成如下如所示:

sudo make进行编译。

完成如下图所示:

sudo make install进行安装。

安装完成之后如下图:

此文章为8月Day 25学习笔记,内容来源于极客时间《Linux 实战技能 100 讲》

相关推荐
我命由我123455 分钟前
SSL 协议(HTTPS 协议的关键)
网络·经验分享·笔记·学习·https·ssl·学习方法
cuisidong199724 分钟前
如何在 Kali Linux 上安装 Google Chrome 浏览器
linux·运维·chrome
丶Darling.1 小时前
代码随想录 | Day26 | 二叉树:二叉搜索树中的插入操作&&删除二叉搜索树中的节点&&修剪二叉搜索树
开发语言·数据结构·c++·笔记·学习·算法
光通信学徒1 小时前
ubuntu图形界面右上角网络图标找回解决办法
linux·服务器·ubuntu·信息与通信·模块测试
南种北李1 小时前
Linux自动化构建工具Make/Makefile
linux·运维·自动化
百里香酚兰1 小时前
【AI学习笔记】基于Unity+DeepSeek开发的一些BUG记录&解决方案
人工智能·学习·unity·大模型·deepseek
小飞猪Jay1 小时前
面试速通宝典——10
linux·服务器·c++·面试
布丁不叮早起枣祈2 小时前
10.3学习
学习
结衣结衣.2 小时前
python中的函数介绍
java·c语言·开发语言·前端·笔记·python·学习
暗恋 懒羊羊2 小时前
Linux 生产者消费者模型
linux·开发语言·ubuntu