zoukankan      html  css  js  c++  java
  • Linux安装memcached

    [root@localhost ~]# tar zxvf libevent-2.1.8-stable.tar.gz
    [root@localhost ~]# cd libevent-2.1.8-stable
    [root@localhost libevent-2.1.8-stable]# mkdir /home/libevent
    [root@localhost libevent-2.1.8-stable]# ./configure --prefix=/home/libevent/
    [root@localhost libevent-2.1.8-stable]# make
    [root@localhost libevent-2.1.8-stable]# make install

    [root@localhost ~]# tar zxvf memcached-1.4.36.tar.gz
    [root@localhost ~]# cd memcached-1.4.36
    [root@localhost memcached-1.4.36]# mkdir /home/memcache
    [root@localhost memcached-1.4.36]# ./configure --prefix=/home/memcache/ --with-libevent=/home/libevent
    [root@localhost memcached-1.4.36]# make
    [root@localhost memcached-1.4.36]# make install
    [root@localhost bin]# ./memcached -d -m 1024 -u root
    [root@localhost bin]# ps -ef|grep memcached
    root      12255      1  0 13:58 ?        00:00:00 ./memcached -d -m 1024 -u root
    root      12263   2345  0 13:58 pts/1    00:00:00 grep memcached

    [root@localhost bin]# netstat -nlp|grep memcached
    tcp        0      0 0.0.0.0:11211               0.0.0.0:*                   LISTEN      12255/./memcached  
    tcp        0      0 :::11211                    :::*                        LISTEN      12255/./memcached  
    udp        0      0 0.0.0.0:11211               0.0.0.0:*                               12255/./memcached  
    udp        0      0 :::11211                    :::*                                    12255/./memcached

  • 相关阅读:
    你欠我的幸福,怎么弥补
    爱,请你走开
    一生为你
    爱你到底
    粒子滤波简介(转载)
    关于小波变换和Gabor变换的一些知识!
    基于Opencv的MeanShift跟踪算法实现
    opencv学习网页
    基于OpenCV库的Gabor滤波器的实现
    Mean Shift算法(CamShift)
  • 原文地址:https://www.cnblogs.com/songyuejie/p/6921463.html
Copyright © 2011-2022 走看看