在Debian11上安裝Openresty服務(Nginx+Lua)的詳細教程

OpenResty 是一個基於 Nginx 與 Lua 的高性能 Web 平臺,其內部集成瞭大量精良的 Lua 庫、第三方模塊以及大多數的依賴項。用於方便地搭建能夠處理超高並發、擴展性極高的動態 Web 應用、Web 服務和動態網關。

OpenResty 官方 APT 包倉庫提供瞭 deb 包 (適用於 Ubuntu 和 Debian),可以很方便的安裝,一起來看下具體的安裝步驟吧。

Debian 更新系統

$ apt update
# 這一步選做
$ apt upgrade 

添加 openresty 倉庫

可以在 Debian 系統中添加 openresty 倉庫,這樣就可以方便的安裝或更新我們的軟件包(通過 apt update 命令)。
運行下面的命令就可以添加我們的倉庫(每個系統隻需要運行一次):

步驟一:安裝導入 GPG 公鑰時所需的幾個依賴包(整個安裝過程完成後可以隨時刪除它們):

sudo apt -y install --no-install-recommends wget gnupg ca-certificates

步驟二:導入我們的 GPG 密鑰:

wget -O - https://openresty.org/package/pubkey.gpg | sudo apt-key add -

步驟三:添加我們官方 APT 倉庫。

對於 x86_64 或 amd64 系統,可以使用下面的命令:

codename=`grep -Po 'VERSION="[0-9]+ \(\K[^)]+' /etc/os-release`

echo $codename

echo "deb http://openresty.org/package/debian $codename openresty" \
    | sudo tee /etc/apt/sources.list.d/openresty.list

這歷史查找當前 debian 系統的版本(即 $codename 變量),更加系統版本再配置。

root@VM-4-14-debian:/opt# codename=`grep -Po 'VERSION="[0-9]+ \(\K[^)]+' /etc/os-release`
root@VM-4-14-debian:/opt# echo $codename
root@VM-4-14-debian:/opt# bullseye
root@VM-4-14-debian:/opt# echo "deb http://openresty.org/package/debian bullseye openresty" | sudo tee /etc/apt/sources.list.d/openresty.list
deb http://openresty.org/package/debian bullseye openresty

而對於 arm64 或 aarch64 系統,則可以使用下面的命令:

codename=`grep -Po 'VERSION="[0-9]+ \(\K[^)]+' /etc/os-release`

echo "deb http://openresty.org/package/arm64/debian $codename openresty" \
    | sudo tee /etc/apt/sources.list.d/openresty.list

更新APT索引並安裝

步驟四:更新 APT 索引:

sudo apt update

然後就可以像下面這樣安裝軟件包,比如 openresty:

sudo apt -y install openresty

這個包同時也推薦安裝 openresty-opm 和 openresty-restydoc 包,所以後面兩個包會缺省安裝上。

如果你不想自動關聯安裝,可以用下面方法關閉自動關聯安裝:

sudo apt -y install --no-install-recommends openresty

openresty-opm 是 OpenResty 的包管理工具(OpenResty package manager)。

查看安裝的版本:

安裝目錄: /usr/local/openresty

$ nginx -v
nginx version: openresty/1.21.4.1

$ /usr/local/openresty/nginx/sbin/nginx -v
nginx version: openresty/1.21.4.1

使用 systemctl 可以管理openresty服務:

systemctl enable openresty 
systemctl status openresty 
systemctl start openresty 
systemctl stop openresty  
systemctl restart openresty 

驗證效果,通過 curl 命令請求 localhost :

root@VM-4-14-debian:~# curl -I localhost
HTTP/1.1 200 OK
Server: openresty/1.21.4.1
Date: Sun, 09 Oct 2022 14:04:10 GMT
Content-Type: text/html
Content-Length: 1097
Last-Modified: Tue, 17 May 2022 03:51:45 GMT
Connection: keep-alive
ETag: "62831bd1-449"
Accept-Ranges: bytes

也可以打開瀏覽器 ,訪問服務器ip,查看頁面驗證。

參考鏈接

https://wang123.net/a/linux-debian-install-openresty
https://openresty.org/cn/linux-packages.html

到此這篇關於在Debian11上安裝Openresty服務(Nginx+Lua)的文章就介紹到這瞭,更多相關Debian安裝Openresty服務內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!

推薦閱讀: