I also had this problem , and I had to manually copy the files into place after the build.
cd ~/redis-2.4.15 mkdir redis-1.2.4-backup sudo mv /usr/bin/redis-* ~/redis-2.4.15/redis-1.2.4-backup/ ; sudo mv src/redis-benchmark /usr/bin/ ; sudo mv src/redis-check-aof /usr/bin/ ; sudo mv src/redis-check-dump /usr/bin/ ; sudo mv src/redis-cli /usr/bin/ ; sudo mv src/redis-server /usr/bin/ ; sudo chown root /usr/bin/redis-* ;
I put ; at the ends of lines, because sometimes I want to combine everything into one line of shell commands.
Make sure the rest of your stuff is configured, such as init.d , conf and log files.
New Alexandria
source share