I followed this guide to install Redis "How To Install and Configure Redis on Ubuntu 16.04".
However, now I want to remove the Redis from my server (Ubuntu 16.04).
The command sudo apt-get purge --auto-remove redis-server doesn't work as I installed the Redis manually..
How can I uninstall it now?
11 Answer
Go into the folder where you ran sudo make install and run sudo make uninstall and that would get rid of it but first you have to stop it see steps below.
Steps:
Stop redis with:
sudo systemctl stop redis sudo systemctl disable redisChange into install location as per the tutorial link:
cd redis-stable sudo make uninstallGet rid of the folders created:
sudo rm /etc/redis/redis.conf sudo rm -rf /var/lib/redisRemove
redis user:sudo deluser --group redis # ORRemove
redis group:sudo delgroup redis