How to uninstall the redis installed from source in ubuntu 12.04

redisubuntu-12.04

I'd installed the redis-server on Ubuntu 12.04 from source.
But at somepoint it couldn't get installed fully, failed on last make install cmd.

Then I just installed via apt package.

Now I'm confused which installation is being run with which conf file?

Actually I'd like to uninstall/delete everything that installation via source did and simply want to go with the package installed one.

Best Answer

Go to source tree and try this command:

make uninstall

If that doesn't work you can list the steps that the software would take to install itself (without actually installing anything):

make -n install
Related Topic