摘要:客户端登录redis[root@node120 bin]# ./redis-cli -h 192.168.2.120 -p 6379192.168.2.120:6379> 修改redis默认监听的IP:vim /etc/redis326/6379.conf 59 # JUST COMMENTTHE FOLLOWING LINE. 60 #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 61 #bind127.0.0.1 62 bind192.168.2.120 63
2016年12月27日
redis数据类型-有序集合
摘要:ZADD:添加元素:192.168.2.120:6379> ZADD youxu 80 a(integer) 1192.168.2.120:6379> ZADD youxu 81 b(integer) 1192.168.2.120:6379> ZADD youxu 82 c 83 d(integer) 2获取元素的分数:192.168.2.120:6379> ZSCORE youxu a"80"192.168.2.120:6379> ZSCORE youxu b"81"192.168.2.120:6379> ZSCORE youxu c"82"192.168.2.120:
分类:系统管理
2016年12月27日
redis数据类型-集合类型
摘要: SADD: 向集合中添加元素:192.168.2.120:6379> SADD jihe1 a b c (integer) 3192.168.2.120:6379> SADD jihe2 b c d(integer) 3查看集合的成员:192.168.2.120:6379> SMEMBERS jihe11) "b"2) "a"3) "c"192.168.2.120:6379> SMEMBERS jihe21) "b"2) "d"3) "c"判断集合元素是否存在:192.168.2.1
分类:系统管理
2016年12月27日
redis数据类型-列表类型
摘要:列表存储有序的字符串:LPUSH:从列表的左边写RPUSH:从列表的右边写 192.168.2.120:6379> LPUSH num 0(integer) 1192.168.2.120:6379> LPUSH num 1(integer) 2192.168.2.120:6379> LPUSH num 2(integer) 3192.168.2.120:6379> RPUSH num 3(integer) 4 获取列表的长度:192.168.2.120:6379> LLEN num(integer) 4 将列表最左边的值弹出(删除)
分类:系统管理
2016年12月27日
redis数据类型-hash类型
摘要:HSET:设置HASH值HGET:获取HASH值HGETALL:获取所有的HASH值192.168.2.120:6379> HSET shouji name iphone(integer) 1192.168.2.120:6379> HSET shouji color red(integer) 1192.168.2.120:6379> HSET shouji price 8888(integer) 1192.168.2.120:6379> HGET shouji name"iphone"192.168.2.120:6379> HGET shouji (error) ERR wrong number of argument
分类:系统管理
2016年12月27日
redis数据类型-字符串类型
摘要:SET可以操作任意的类型,SET之后就变成字符串类型APPEND:追加192.168.2.120:6379> SET hehe helloOK192.168.2.120:6379> GET hehe"hello"192.168.2.120:6379> SET hehe hello,worldOK192.168.2.120:6379> GET hehe"hello,world"192.168.2.120:6379> SET hehe helloOK192.168.2.120:6379> GET hehe"hello"192.168.2.120:6379&g
分类:系统管理
2016年12月27日
saltstack安装redis
摘要:top.sls[root@node110 states]# ls init jdk php prod redis tomcat top.sls[root@node110 states]# pwd/etc/salt/states[root@node110 states]# cat top.sls base: '*': - redis.install - redis.config - redis.serviceinstall.sls[root@node110 redis]# pwd/etc/salt/sta
分类:系统管理
2016年12月27日
Redis正常安装
摘要:通常安装方法:[root@node110 redis]# pwd /usr/local/src/redis 解压安装:tar zxf redis-3.2.6.tar.gzcd redis-3.2.6make PREFIX=/usr/local/redis326 install 修改redis启动脚本:[root@node110 utils]# pwd/usr/local/src/redis/redis-3.2.6/utils[root@node110 utils]# vim redis_init_script 添加以下内容:# chkconfig: 2345 55 25# description:redis 3.
分类:系统管理
2016年12月01日
ls -lrt按最后修改时间对ls命令的输出进行排序
摘要:#ls -lrt
drwxr-xr-x. 2 root root 4096 Sep 20 20:41 ld.so.conf.d
-rw-r--r-- 1 root root 64513 Sep 20 20:41 ld.so.cache
drwxr-xr-x. 2 root root 4096 Oct 19 21:05 profile.d
drwxr-xr-x. 3 root root 4096 Oct 20 10:17 ppp
drwxr-xr-x 2 root root 4096 Oct 24 20:48 multitail
分类:系统管理
2016年11月30日
PPTPD错误:kernel: ppp: compressor droppedpkt
摘要:1、 尝试手动配置mtu值。# ifconfig ppp0 mtu 1400改完确实解决了暂时性问题,但是重启后依然会恢复到1396。 也可以通过shell脚本处理:vim set_mtu.sh#!/bin/bashfor n in `ifconfig | grep ppp | awk '{print $1}'`doifconfig $n mtu 1400echo "$(date +%c)ifconfig $n mtu 1400 success">>/tmp/pptpd_set_mtu.logdone