zoukankan      html  css  js  c++  java
  • Mac OS使用brew安装memcached

    1.查看安装信息

    brew info memcached

    显示如下:

    memcached: stable 1.5.9 (bottled)
    High performance, distributed memory object caching system
    https://memcached.org/
    Conflicts with:
      mysql-cluster (because both install `bin/memcached`)
    /usr/local/Cellar/memcached/1.5.9 (11 files, 199.3KB) *
      Poured from bottle on 2018-08-08 at 17:23:04
    From: https://github.com/Homebrew/homebrew-core/blob/master/Formula/memcached.rb
    ==> Dependencies
    Required: libevent ✔
    ==> Options
    --with-sasl
        Enable SASL support -- disables ASCII protocol!
    --with-sasl-pwdb
        Enable SASL with memcached's own plain text password db support -- disables ASCII protocol!
    ==> Caveats
    To have launchd start memcached now and restart at login:
      brew services start memcached
    Or, if you don't want/need a background service you can just run:
      /usr/local/opt/memcached/bin/memcached

    2.安装依赖项libevent

    brew install libevent 

    3.安装memcached

    brew install memcached

    4.启动

    brew services start memcached

    5.查看是否已经成功启动

    ps -ef|grep memcached

    输出如下:

    501 57972     1   0  5:27下午 ??         0:00.04 /usr/local/opt/memcached/bin/memcached -l localhost
      501 58160   707   0  5:31下午 ttys000    0:00.00 grep memcached

    6.测试连接

    telnet localhost 11211

    转载于:https://www.cnblogs.com/vitasyuan/p/9462726.html

  • 相关阅读:
    【转】教你爱上Blocks(闭包)
    【转】iOS Developer:真机测试
    bzoj1231 混乱的奶牛
    bzoj2064 分裂
    洛谷P2051 中国象棋
    洛谷P2607 骑士
    洛谷P1879 玉米田
    洛谷P3694 邦邦的大合唱
    openjudge dp水题记录
    bzoj1191 超级英雄
  • 原文地址:https://www.cnblogs.com/twodog/p/12136226.html
Copyright © 2011-2022 走看看