Nó có thể được sử dụng như một cơ sở dữ liệu, bộ nhớ cache và môi giới tin nhắn và hỗ trợ nhiều cấu trúc dữ liệu khác nhau như Chuỗi, Hàm băm, Danh sách, Bộ…
sudo apt updateCài đặt phần mềm
sudo apt install redis-serverKiểm tra trạng thái
sudo systemctl status redis-serverMở chế độ Remote
sudo nano /etc/redis/redis.confTìm dòng bind 127.0.0.1 ::1 và thay 127.0.0.1 bằng 0.0.0.0
Khởi động lại dịch vụ
sudo systemctl restart redis-server
Cài đặt trên Centos
Cập nhật thư viện
yum install epel-release
Cài đặt Redis
yum install -y redis
Start dịch vụ
systemctl start redis
Tự động khởi chạy
systemctl enable redis
Stop dịch vụ
systemctl stop redis
Kiểm tra dịch vụ
redis-cli ping
Xóa cài đặt
Chạy tổ hợp lệnh bên dưới để xóa
# if you use apt-get to install redis then usesudo apt-get purge --auto-remove redis-server# if you compiled redis manually then follow the# steps below to remove it completely from linux/ubuntusudo service redis_version stop# Now delete everything related to Redis server from /usr/local/bin/sudo rm /usr/local/bin/redis-*# Now delete Redis Configuration files directory and it’s content.sudo rm -r /etc/redis/# Delete existing Redis log files.sudo rm /var/log/redis_*# Delete existing Redis data directory and it’s content.sudo rm -r /var/lib/redis/# Delete existing Redis server init scriptssudo rm /etc/init.d/redis_*# Remove existing Redis PID files (Only if exists)sudo rm /var/run/redis_*