memstat --server=localhost >1.txt
memcat --servers=localhost `memdump --servers=localhost` > 1.txt
rdb -c memory /var/redis/6379/dump.rdb > memory.csv
最近服务器的CentOS版本升级到了CentOS7.0,新的版本怎么好用还没有体验到,但是使用yum安装Percona mysql5.6后发现跟之前不一样了。CentOS6,使用yum安装完Percona mysql5.6后,在/etc/init.d会自动添加mysqld的启动项,所以启动项的东西我们自己不用管,但是CentOS没有了。在网上冲了会浪,原来是CentOS7.0的新东西,systemd把SysV顶替了。什么是SysV?http://www.ibm.com/developerworks/cn/linux/1407_liuming_init1/什么是systemd?https://blog.linuxeye.com/400.html好吧,两个哥们还4b了很久:http://www.zhihu.com/question/25873473
好了,自己添加启动项,step by step如下:列出 systemd 服务,请执行 'systemctl list-unit-files'systemctl list-unit-files|grep mysqlchkconfig mysqld on 或者 systemctl enable mysqld.service剩下的就是修改/etc/my.cnf mysql的加载顺序没有变的,搞定。接下来随便把我的tomcat redis-server 和memcached一起搞定吧。redis:看下redis的配置是不是我们想要的:需要的话修改下配置文件吧memcached:配置文件接下来就是去修改参数啦