Created
February 25, 2013 21:09
-
-
Save aalvesjr/5033339 to your computer and use it in GitHub Desktop.
Instalando REDIS no Ubuntu 12.04
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Execute | |
# Remove a versão 8.4 do Tcl | |
sudo apt-get remove tk8.4 tcl8.4 | |
# Instala a versão 8.5 | |
sudo apt-get install tk8.5 tcl8.5 | |
# Baixa o .tar do REDIS | |
wget http://download.redis.io/redis-stable.tar.gz | |
# Descompacta | |
tar xvzf redis-stable.tar.gz | |
# entra no diretorio | |
cd redis-stable | |
# instala | |
make | |
# Recomendado depois entrar na pasta srs | |
cd src | |
# e executar | |
make test | |
# a instalação estara completa se aparecer: | |
\o/ All tests passed without errors! | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment