ubuntu系统上安装Memcache

注:Memcache是项目名,memcached是服务名。

  1. 先安装libevent
  2. #wget https://github.com/libevent/libevent/releases/download/release-2.1.8-stable/libevent-2.1.8-stable.tar.gz

# tar zxvf libevent-2.1.8-stable.tar.gz

# cd libevent-2.1.8-stable

# ./configure --prefix=/usr

# make

# make install

  1. 验证libevent 是否安装成功,安装成功后进行下一步计划

ls -al /usr/lib | grep libeven

ubuntu系统上安装Memcache_第1张图片

 

  1. 安装memcached 
    sudo apt-get install memcached 
  2. 启动

memcached -p 11211 -u root (之前启动过会显示端口被占用)

 

参数说明:

-p 监听的端口 

-l 连接的IP地址, 默认是本机 

-d start 启动memcached服务 

-d restart 重起memcached服务 

-d stop|shutdown 关闭正在运行的memcached服务 

-d install 安装memcached服务 

-d uninstall 卸载memcached服务 

-u 以的身份运行 (仅在以root运行的时候有效) 

-m 最大内存使用,单位MB。默认64MB 

-M 内存耗尽时返回错误,而不是删除项 

-c 最大同时连接数,默认是1024 

-f 块大小增长因子,默认是1.25-n 最小分配空间,key+value+flags默认是48 

-h 显示帮助 

 

如果用python使用memcached需要进行包下载:pip install python-memcached

你可能感兴趣的:(linux)