redis sentinel windows
参考:
Redis在windows下安装过程
http://www.cnblogs.com/M-LittleBird/p/5902850.html
redis sentinel部署(Windows下实现)
http://blog.csdn.net/liuchuanhong1/article/details/53206028
Redis集群的部署
http://www.cnblogs.com/freeweb/p/5362628.html
Windows 部署 Redis 群集
http://www.cnblogs.com/xling/p/5253063.html
windows下sc create命令行添加/创建/修改服务
http://www.cnblogs.com/dkblog/archive/2008/12/19/1980770.html
SC Create 创建一个Windows系统服务
http://blog.sina.com.cn/s/blog_62b8fc330100l9px.html
sc create redis binpath= "\"c:\redis\redis-server.exe\" --service-run redis.conf --loglevel verbose" start= auto
sc create redisSentinel binpath= "\"c:\redis\redis-server.exe\" --service-run sentinel.conf --sentinel --loglevel verbose" start= auto
命令:services.msc
启动服务:sc start redis,net start redis