Uninstall Redis CentOS 7 DA

JelleG

Verified User
Joined
Jun 3, 2015
Messages
57
Hi,

I installed Redis a long time ago on my CentOS 7 VPS.
Now I want to remove the current version and install the latest Redis 3.2.5.

How can I remove the current version?

I installed a time ago using the following commands:

Code:
    wget http://download.redis.io/releases/redis-3.0.5.tar.gz
    
    tar xzf redis-3.0.5.tar.gz
    
    cd redis-3.0.5
    
    make
    
    make test
    
    make install
    
    cd utils
    
    chmod +x install_server.sh
    
    ./install_server.sh
 
Back
Top