背景:
阅读新闻
Red Hat Linux 6.2 Memcached安装总结
[日期:2012-04-21] 来源:Linux社区 作者:zh888 [字体:]
7.[root@localhost html]# yum list|grep memcache//查看memcache软件包
libmemcached.i686 0.31-1.1.el6 @test
memcached.i686 1.4.4-3.el6 @test
php-pecl-memcache.i686 3.0.5-3.el6 @test
Python-memcached.noarch 1.43-5.3.el6 @test
8.[root@localhost html]# rpm -q libmemcache//查看是否安装如果没安装直接yum -y libmemcached memcached php-pecl-memcache python-memcached
package libmemcache is not installed
[root@localhost html]# rpm -q libmemcached
libmemcached-0.31-1.1.el6.i686
[root@localhost html]# rpm -q memcached//已经安装
memcached-1.4.4-3.el6.i686
[root@localhost html]# chkconfig --list memcached//查看启动级别
memcached 0:off 1:off 2:off 3:off 4:off 5:off 6:off
[root@localhost html]# chkconfig memcached on//设置runlevel 3启动
[root@localhost html]# service memcached start//启动服务memcached服务
Starting memcached: [ OK ]
9.[root@localhost html]# netstat -ntlp//查看端口
Active Internet connections (only servers)
Proto Recv-Q Send-Q Local Address Foreign Address State PID/Program name
tcp 0 0 0.0.0.0:11211 0.0.0.0:* LISTEN 1899/memcached
tcp 0 0 0.0.0.0:21 0.0.0.0:* LISTEN 1201/vsftpd
tcp 0 0 0.0.0.0:22 0.0.0.0:* LISTEN 1190/sshd
tcp 0 0 127.0.0.1:25 0.0.0.0:* LISTEN 1400/master
tcp 0 0 0.0.0.0:3306 0.0.0.0:* LISTEN 1308/MySQLd
tcp 0 0 :::11211 :::* LISTEN 1899/memcached //已经启动memcached服务11211端口
tcp 0 0 :::139 :::* LISTEN 1426/smbd
tcp 0 0 :::80 :::* LISTEN 1410/httpd
tcp 0 0 :::22 :::* LISTEN 1190/sshd
tcp 0 0 ::1:25 :::* LISTEN 1400/master
tcp 0 0 :::445 :::* LISTEN 1426/smbd
10.测试
[root@localhost html]#memcached -d -m 15360 -u root -l 192.168.40.40 -p 11211 -c 40960//这里设置的11211端口默认连接数是40960 可以直接echo "xxx">>/etc/rc.local中去
[root@localhost html]# telnet 192.168.40.40 11211 //登录memcached
Trying 192.168.40.40...
Connected to 192.168.40.40.
Escape character is '^]'.
stats
STAT pid 1899
STAT uptime 1589
STAT time 1334940144
STAT version 1.4.4
STAT pointer_size 32
STAT rusage_user 0.000999
STAT rusage_system 0.000000
STAT curr_connections 10
STAT total_connections 12
STAT connection_structures 11
STAT cmd_get 0
STAT cmd_set 0
STAT cmd_flush 0
STAT get_hits 0
STAT get_misses 0
STAT delete_misses 0
STAT delete_hits 0
STAT incr_misses 0
STAT incr_hits 0
STAT decr_misses 0
STAT decr_hits 0
STAT cas_misses 0
STAT cas_hits 0
STAT cas_badval 0
STAT auth_cmds 0
STAT auth_errors 0
STAT bytes_read 70
STAT bytes_written 797
STAT limit_maxbytes 67108864
STAT accepting_conns 1
STAT listen_disabled_num 0
STAT threads 4
STAT conn_yields 0
STAT bytes 0
STAT curr_items 0
STAT total_items 0
STAT evictions 0
END
在网络上查到资料, Memcache也有自己的查看工具:
如何查看memcache服务器端版本: ./memcached -h
memcache的运行状态可以方便的用 stats 命令显示。
首先用telnet 127.0.0.1 11211这样的命令连接上memcache,然后直接输入stats就可以得到当前memcache的状态。
这些状态的说明如下:
pid memcache服务器的进程ID
uptime 服务器已经运行的秒数
time 服务器当前的unix时间戳
version memcache版本
pointer_size 当前操作系统的指针大小(32位系统一般是32bit)
rusage_user 进程的累计用户时间
rusage_system 进程的累计系统时间
curr_items 服务器当前存储的items数量
total_items 从服务器启动以后存储的items总数量
bytes 当前服务器存储items占用的字节数
curr_connections 当前打开着的连接数
total_connections 从服务器启动以后曾经打开过的连接数
connection_structures 服务器分配的连接构造数
cmd_get get命令(获取)总请求次数
cmd_set set命令(保存)总请求次数
get_hits 总命中次数
get_misses 总未命中次数
evictions 为获取空闲内存而删除的items数(分配给memcache的空间用满后需要删除旧的items来得到空间分配给新的items)
bytes_read 总读取字节数(请求字节数)
bytes_written 总发送字节数(结果字节数)
limit_maxbytes 分配给memcache的内存大小(字节)
threads 当前线程数
相关资讯 Memcached
本文评论 查看全部评论 (0)
尊重网上道德,遵守中华人民共和国的各项有关法律法规 承担一切因您的行为而直接或间接导致的民事或刑事法律责任 本站管理人员有权保留或删除其管辖留言中的任意内容 本站有权在网站内转载或引用您的评论 参与本评论即表明您已经阅读并接受上述条款
评论声明
最新资讯