ubuntu uninstall redis
sudo apt-get purge --auto-remove redis-server
# Check if there is any packages left
apt list --installed | grep redis
ubuntu uninstall redis
sudo apt-get purge --auto-remove redis-server
# Check if there is any packages left
apt list --installed | grep redis
uninstall redis ubuntu terminal
apt-get purge --auto-remove redis-servers
# check if the package is present or not
apt-cache policy redis-server
uninstall redis
# if you use apt-get to install redis then use
sudo apt-get purge --auto-remove redis-server
# if you compiled redis manually then follow the
# steps below to remove it completely from linux/ubuntu
sudo 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 scripts
sudo rm /etc/init.d/redis_*
# Remove existing Redis PID files (Only if exists)
sudo rm /var/run/redis_*
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us