linux系统yum安装openresty
时间: 2023-12-12 09:04:31 浏览: 153
一步安装openresty
3星 · 编辑精心推荐
以下是在Linux系统中使用yum安装openresty的步骤:
1. 在CentOS中使用yum添加openresty的库源,在CentOS 8+将yum替换成dnf。
```shell
# add the yum repo:
wget https://openresty.org/package/centos/openresty.repo
sudo mv openresty.repo /etc/yum.repos.d/
# update the yum index:
sudo yum check-update
# 安装openresty包
sudo yum install openresty
# 如果需要安装 resty 命令行,则使用如下命令:
sudo yum install openresty-resty
# 列出 openresty 源下可用的安装包:
sudo yum --disablerepo="*" --enablerepo="openresty" list available
```
2. 在Fedora system上启用openresty repository:
```shell
add the repo:
wget https://openresty.org/package/fedora/openresty.repo
sudo mv openresty.repo /etc/yum.repos.d/
# update the index:
sudo dnf check-update
# 安装openresty包
sudo dnf install -y openresty
# 如果需要安装 resty 命令行,则使用如下命令:
sudo dnf install -y openresty-resty
# 列出 openresty 源下可用的安装包:
sudo dnf repo-pkgs openresty list available
```
阅读全文