Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 379 Bytes

Uninstall.md

File metadata and controls

28 lines (19 loc) · 379 Bytes

Uninstall Redis From Ubuntu

Stop the Redis Service

sudo systemctl stop redis

Remove Redis Packages

sudo apt-get purge --auto-remove redis-server

Remove Redis Configuration and Data Files

sudo rm -r /etc/redis/
sudo rm -r /var/lib/redis/

Remove Redis User and Group

sudo deluser redis
sudo delgroup redis