redis单机模式
Posted jabbok
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了redis单机模式相关的知识,希望对你有一定的参考价值。
standalone mode-实现
make MALLOC=libc #不加参数会报错。 cd src/ make install
安装完后,在src下有redis-server服务端程序。如果不加配置文件参数,就会使用默认配置和前台启动。在redis.conf里将daemonize改成yes后,带配置文件启动。
[[email protected] redis-3.0.6]# ./src/redis-server redis.conf [[email protected] redis-3.0.6]# netstat -lntp|grep redis tcp 0 0 0.0.0.0:6379 0.0.0.0:* LISTEN 33400/./src/redis-s tcp6 0 0 :::6379 :::* LISTEN 33400/./src/redis-s
以上是关于redis单机模式的主要内容,如果未能解决你的问题,请参考以下文章