0
0

Memcached のインストール

Posted at

はじめに

メモがてら記録します。

前提

  • Ubuntu 24.04 LTS (Noble Numbat)
  • Memcached 1.6.29

手順

  1. インストールに必要なツールをインストールする

    sudo apt install gcc make libevent-dev
    
  2. パッケージをダウンロードする (https://memcached.org/downloads)

    curl -LkvOf https://memcached.org/files/memcached-1.6.29.tar.gz
    
  3. パッケージを展開し、展開されたディレクトリの中に移動する

    tar xzf memcached-1.6.29.tar.gz
    cd memcached-1.6.29
    
  4. configure スクリプトを実行する

    ./configure
    
  5. 次のコマンドを実行する

    make
    make test
    sudo make install
    

参考

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0