这可能非常明显,但我无法从 remi-modular 存储库安装软件包,尽管已经在 /etc/yum.repos.d/ 中添加了 repo 文件并对其进行了验证。
我尝试清除系统上的所有 repo 缓存,并使用 dnf 和 yum 运行 makecache 命令。该软件包似乎存在于 Remi 的 rpms 网站中,但我无法使用 dnf/yum 从命令行安装它。以下是回购
我正尝试在 Rocky Linux 8 实例上执行此操作。
答案1
您是否已启用您想要的流?
安装存储库
# dnf install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm
# dnf install https://rpms.remirepo.net/enterprise/remi-release-8.rpm
列出 redis 模块可用的流
# dnf module list redis
CentOS Stream 8 - AppStream
Name Stream Profiles Summary
redis 5 [d] common [d] Redis persistent key-value database
redis 6 common [d] Redis persistent key-value database
Remi's Modular repository for Enterprise Linux 8 - x86_64
Name Stream Profiles Summary
redis remi-5.0 common [d] Redis persistent key-value database
redis remi-6.0 common [d] Redis persistent key-value database
redis remi-6.2 common [d] Redis persistent key-value database
redis remi-7.0 [e] common [d] [i] Redis persistent key-value database
redis remi-7.2 common [d] Redis persistent key-value database
Hint: [d]efault, [e]nabled, [x]disabled, [i]nstalled
然后你就可以安装你想要的版本
# dnf module reset redis
# dnf module install redis:remi-7.0