1 nohup./redis-server 1>log.log 2>error.log &2 nohup./elasticsearch -f &3 nohup ./bin/logstash -f redis.conf &4
分类:
其他好文 时间:
2014-10-29 18:57:35
阅读次数:
963
1. redis.conf 配置参数:
#是否作为守护进程运行
daemonize yes
#如以后台进程运行,则需指定一个pid,默认为/var/run/redis.pid
pidfile redis.pid
#绑定主机IP,默认值为127.0.0.1
#bind 127.0.0.1
#Redis默认监听端口
port 6379
#客户端闲置多少秒后,断开连接,默认为300(秒...
分类:
其他好文 时间:
2014-10-29 09:17:36
阅读次数:
204
下载地址:https://github.com/dmajkic/redis/downloads 下载下来的包里有两个,32位和64位。 server启动:cmd到指定目录 redis-server.exe redis.conf client连接: cmd到指定目录 redis-cli.exe -h 127.0.0.1 -p ...
首先从redis.c源码的main()函数开始,在调用的initServer函数中除了初始化redis节点本身的一些配置和环境之外,会根据是否设置cluster_enabled参数来对cluster进行初始化,如下:initServer
//也就是redis.conf配置中的参数cluster-enabled如果设置为yes,则进入cluster模式
->..
分类:
其他好文 时间:
2014-09-26 08:34:29
阅读次数:
280
默认Redis程序安装在/usr/local/redis目录下; 配置文件:/usr/local/redis/redis.conf,该配置文件中配置的端口为默认端口:6379; Redis的启动命令路径:/usr/local/bin/redis-server。 可以指定端口启动多个R...
分类:
其他好文 时间:
2014-09-24 14:11:27
阅读次数:
217
#!/bin/bash
cd/root/soft
tarzvxfredis-2.4.4.tar.gz
cdredis-2.4.4
makePREFIX=/usr/local/redisinstall
mkdir-p/data/redis
mkdir-p/usr/local/redis/conf
cp/root/soft/redis.conf/usr/local/redis/conf
/usr/local/redis/bin/redis-server/usr/local/redis/conf/redis.con..
分类:
其他好文 时间:
2014-09-12 15:18:34
阅读次数:
159
刚才在部署的时候,提到了redis.conf这个文件,这是整个Redis的最重要的配置文件,对于其中的一些参数,做如下说明:属性说明daemonize如果值是“yes”,则启动服务的时候是后台守护进程形式,如果值是“no”,则相反pidfile指定存储Redis进程号的文件路径port指定当前Red...
分类:
其他好文 时间:
2014-09-11 16:59:12
阅读次数:
383
》 Linux安装: (下次装再写。)》 Windows安装: 下载windows版redis(github, 此版本目录bin/release/redis-x.x.x.zip下为windows版,解压, 改 redis.windows.conf 为 redis.conf)。 运行 redis...
分类:
其他好文 时间:
2014-09-06 19:58:53
阅读次数:
197
1 master/slave server 启动 利用默认redis.conf配置文件启动master server,端口6379 。 [7304] 29 Aug 09:57:26 - 0 clients connected (0 slaves), 673996 bytes in use [7304] 29 Aug 09:57:31 - DB 0: 15 key...
分类:
其他好文 时间:
2014-08-29 11:18:58
阅读次数:
238
后台驻守模式一定要开
vi /server/redis2/redis.conf
daemonize yes
分类:
其他好文 时间:
2014-08-19 16:04:24
阅读次数:
151