redis 登入,检查

1.    redis-cli -c -h [ip]  -p [port] 集群登录 

auth [password]
info 查看redis信息
redis-cli -p [port] -c -h [ip] -a [password]   连同密码登入
2 redis-trib.rb check 172.31.103.211:6379 检查集群节点状
3、检查 redis 启动情况
ps -ef | grep redis
netstat -tnlp | grep redis
4. 启动redis: #redis-server /service/redis-3.2.1/config/6379.conf
#redis-server /service/redis-3.2.1/config/6389.conf
停止redis:kill -9 [pid]
5.
查看多少绑定关系 keys bind-* keys "bind-*"
6.dse 是否未连上redis,查看
tail -100f stdout.log.2017-12-01 |grep 'Exception in thread'
tail -100f stdout.log.2017-12-01 |grep -i thread
tail -100f stdout.log.2017-12-01 |grep 'Exception in thread'
 

猜你喜欢

转载自www.cnblogs.com/snowwhitecityofsky/p/9172416.html