CentOS你可以在你的 CentOS 系统中添加 openresty 仓库,这样就可以便于未来安装或更新我们的软件包(通过 yum update 命令)。运行下面的命令就可以添加我们的仓库: sudo yum install yum-utils sudo yum-config-manager --add-repo https://openresty.org/package/centos/openresty.repo然后就可以像下面这样安装软件包,比如 openresty: sudo yum install openresty如果你想安装命令行工具 resty,那么可以像下面这样安装 openresty-resty 包: sudo yum install openresty-resty命令行工具 opm 在 openresty-opm 包里,而 restydoc 工具在 openresty-doc 包里头。列出所有 openresty 仓库里头的软件包: sudo yum --disablerepo="*" --enablerepo="openresty" list available问: 这种方法如何打开 nginx 的 debug 功能呢 还是要安装 openresty-debug 这个版本? --
你可以在你的 CentOS 系统中添加 openresty 仓库,这样就可以便于未来安装或更新我们的软件包(通过 yum update 命令)。运行下面的命令就可以添加我们的仓库:
openresty
yum update
sudo yum install yum-utils sudo yum-config-manager --add-repo https://openresty.org/package/centos/openresty.repo
然后就可以像下面这样安装软件包,比如 openresty:
sudo yum install openresty
如果你想安装命令行工具 resty,那么可以像下面这样安装 openresty-resty 包:
resty
openresty-resty
sudo yum install openresty-resty
命令行工具 opm 在 openresty-opm 包里,而 restydoc 工具在 openresty-doc 包里头。
opm
openresty-opm
restydoc
openresty-doc
列出所有 openresty 仓库里头的软件包:
sudo yum --disablerepo="*" --enablerepo="openresty" list available
问: 这种方法如何打开 nginx 的 debug 功能呢 还是要安装 openresty-debug 这个版本?
问: 这种方法如何打开 nginx 的 debug 功能呢 还是要安装