ubuntu 按照memcached 和配置

ubuntu安装memcached:

 

sudo apt-get install memcached

 

 

2:memcached配置和说明

 

察看是否启动 ps -ef|grep memcache
启动: memcached -d -m 50 -p 11211 -u memcache -l 127.0.0.1

  安装后默认:

 

  

/usr/bin/memcached -m 64 -p 11211 -u memcache -l 127.0.0.1

 

 

配置说明:

   

-d:以daemon的方式在后台启动运行一个守护进程
-m:分配给Memcache使用的最大内存数量,单位是MB,默认是64MB
-u:设定运行Memcache的用户(memcache默认不允许以root用户登录)
-l:监听的服务器IP地址
-p:设置Memcache监听的TCP端口,默认是11211(p为小写)
-c:设置最大并发连接数,默认是1024
-P:设置保存Memcache的pid文件路径(P为大写)
-h:显示帮助

 

 

-h帮助:

   

ljq@ljq-Inspiron-N4050:/usr/bin$ memcached -h
memcached 1.4.13
-p <num>      TCP port number to listen on (default: 11211) // tcp 默认端口11211
-U <num>      UDP port number to listen on (default: 11211, 0 is off)
-s <file>     UNIX socket path to listen on (disables network support)
-a <mask>     access mask for UNIX socket, in octal (default: 0700)
-l <addr>     interface to listen on (default: INADDR_ANY, all addresses)
              <addr> may be specified as host:port. If you don't specify
              a port number, the value you specified with -p or -U is
              used. You may specify multiple addresses separated by comma
              or by using -l multiple times
-d            run as a daemon // 守护进程
-r            maximize core file limit
-u <username> assume identity of <username> (only when run as root)
             
               //最大内存数量,单位是MB,默认是64MB
-m <num>      max memory to use for items in megabytes (default: 64 MB)
-M            return error on memory exhausted (rather than removing items)
              //设置最大并发连接数,默认是1024
-c <num>      max simultaneous connections (default: 1024)
-k            lock down all paged memory.  Note that there is a
              limit on how much memory you may lock.  Trying to
              allocate more than that would fail, so be sure you
              set the limit correctly for the user you started
              the daemon with (not for -u <username> user;
              under sh this is done with 'ulimit -S -l NUM_KB').
-v            verbose (print errors/warnings while in event loop)
-vv           very verbose (also print client commands/reponses)
-vvv          extremely verbose (also print internal state transitions)
-h            print this help and exit
-i            print memcached and libevent license
-P <file>     save PID in <file>, only used with -d option
-f <factor>   chunk size growth factor (default: 1.25)
-n <bytes>    minimum space allocated for key+value+flags (default: 48)
-L            Try to use large memory pages (if available). Increasing
              the memory page size could reduce the number of TLB misses
              and improve the performance. In order to get large pages
              from the OS, memcached will allocate the total item-cache
              in one large chunk.
-D <char>     Use <char> as the delimiter between key prefixes and IDs.
              This is used for per-prefix stats reporting. The default is
              ":" (colon). If this option is specified, stats collection
              is turned on automatically; if not, then it may be turned on
              by sending the "stats detail on" command to the server.
-t <num>      number of threads to use (default: 4)
-R            Maximum number of requests per event, limits the number of
              requests process for a given connection to prevent 
              starvation (default: 20)
-C            Disable use of CAS
-b            Set the backlog queue limit (default: 1024)
-B            Binding protocol - one of ascii, binary, or auto (default)
-I            Override the size of each slab page. Adjusts max item size
              (default: 1mb, min: 1k, max: 128m)
-o            Comma separated list of extended or experimental options
              - (EXPERIMENTAL) maxconns_fast: immediately close new
                connections if over maxconns limit
              - hashpower: An integer multiplier for how large the hash
                table should be. Can be grown at runtime if not big enough.
                Set this based on "STAT hash_power_level" before a 
                restart.

 

 

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
在OpenStack中,Memcached是一种分布式缓存系统,用于存储临时数据以加快访问速度。它通常用于存储会话数据、API令牌等。 以下是在OpenStack中安装和使用Memcached的步骤: 1. 安装MemcachedUbuntu上,可以使用以下命令安装Memcached: sudo apt-get install memcached python-memcache 在CentOS上,可以使用以下命令安装Memcached: sudo yum install memcached python-memcached 2. 配置MemcachedUbuntu上,Memcached配置文件位于/etc/memcached.conf。可以使用以下命令打开它: sudo nano /etc/memcached.conf 在该文件中,可以配置Memcached绑定的IP地址和端口号。默认情况下,Memcached绑定到localhost和端口号11211。如果要允许其他主机访问Memcached,则可以将IP地址更改为0.0.0.0。 在CentOS上,Memcached配置文件位于/etc/sysconfig/memcached。可以使用以下命令打开它: sudo nano /etc/sysconfig/memcached 在该文件中,可以配置Memcached绑定的IP地址和端口号。默认情况下,Memcached绑定到localhost和端口号11211。如果要允许其他主机访问Memcached,则可以将IP地址更改为0.0.0.0。 3. 启动MemcachedUbuntu上,可以使用以下命令启动Memcached: sudo service memcached start 在CentOS上,可以使用以下命令启动Memcached: sudo systemctl start memcached 4. 使用Memcached 在OpenStack中,可以使用Memcached存储会话数据、API令牌等。以下是一些示例: 存储数据: import memcache mc = memcache.Client(['127.0.0.1:11211'], debug=0) mc.set('key', 'value') 检索数据: import memcache mc = memcache.Client(['127.0.0.1:11211'], debug=0) value = mc.get('key') 删除数据: import memcache mc = memcache.Client(['127.0.0.1:11211'], debug=0) mc.delete('key') 以上是在OpenStack中安装和使用Memcached的基本步骤。请注意,Memcached配置和使用可能因OpenStack版本和配置而异。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值