Instalando o memcached no servidor Ubuntu 9.04

2

Acabei de instalar o Linux Ubuntu em uma máquina virtual e preciso instalar o memcached nele. Eu tentei

apt-get install memcached

mas instala a versão 1.2.2 (do repositório local), que é antigo. Eu preciso instalar v 1.4.1, mas como faço para baixá-lo para a caixa Linux a partir de uma linha de comando? Eu sei que deve haver um jeito, mas eu não sou muito bom com o Linux ...

Qualquer ajuda seria muito apreciada!

Obrigado Andrey

    
por Andrey 22.09.2009 / 04:30

2 respostas

7

Vá para a página da Web memcached ; copie o link de download; então em um terminal,

wget http://memcached.googlecode.com/files/memcached-1.4.1.tar.gz
tar xzf memcached-1.4.1.tar.gz
cd memcached-1.4.1
./configure && make && sudo make install

Essas são geralmente as etapas básicas que você faz ao instalar o software Linux manualmente, e não parece que memcached seja diferente.

Eu estou votando para mudar para o ServerFault, já que é onde esta questão pertence, mas é uma noite lenta aqui e eu pensei em responder aqui para que você obtenha a resposta, possivelmente, um pouco mais rápido.

    
por 22.09.2009 / 04:40
3

Para instalar a versão 1.4.1, siga as instruções de Como posso instalar o memcached? da FAQ do memcached (às vezes, FAQs oficiais são úteis ...):

For a tutorial, go to: http://blog.ajohnstone.com/archives/installing-memcached Also consider checking your distribution's package management system (apt, yum, etc).

Generic install instructions are standard. memcached requires libevent to be installed first. This is most likely available via your distribution's package manager.

If your distribution doesn't have memcached or an updated enough version, installing from source is simple. Fetch the tarball from our download page.

    $ tar -zxvf memcached-1.x.x.tar.gz
    $ ./configure
    $ make
    $ make test
    $ sudo make install

use './configure --help' to see all of the options.

Para baixar o tarball, use wget :

    $ wget http://memcached.googlecode.com/files/memcached-1.4.1.tar.gz
    
por 22.09.2009 / 04:44