Redis Kurulumu
RHEL Tabanlı Dağıtımlar (AlmaLinux, Rocky Linux, CentOS Stream)
# RHEL 9 Tabanlı (Alma/Rocky 9) sudo dnf install https://dl.fedoraproject.org/pub/epel/epel-release-latest-9.noarch.rpm -y # RHEL 8 Tabanlı (Alma/Rocky 8) sudo dnf install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm -ysudo dnf install redis -y
# RHEL 9 Tabanlı sudo dnf install https://rpms.remirepo.net/enterprise/remi-release-9.rpm -y # RHEL 8 Tabanlı sudo dnf install https://rpms.remirepo.net/enterprise/remi-release-8.rpm -ysudo dnf module list redis sudo dnf module enable redis:remi-7.2 -y sudo dnf install redis -y
Debian Tabanlı Dağıtımlar (Debian, Ubuntu)
Last updated