windows平台安装redis服务
2020-12-13 05:09
标签:style blog http color 使用 width 有时候我们需要在windows平台上使用redis作为缓存服务,这个时候就需要将redis安装为window服务。 现在将我安装过程记录下来,方便自己或者有类似需求的同学参考。主要是参考网上现有的例子,请轻喷 主要参考如下文章: http://www.it165.net/admin/html/201407/3407.html http://www.cnblogs.com/shanyou/archive/2013/01/17/redis-on-windows.html 如下摘抄的是http://www.it165.net/admin/html/201407/3407.html 处的文章 .首先下载微软官方推荐的版本redis-2.8.12 2.开始配置,首先复制两份redis.conf并且重命名为redis6379.conf redis6380.conf 里面的配置节点相应的更改为port 6379 port 6380 3.开始安装(最笨的方法 cmd命令行) D:\redis-2.8.12\redis-server.exe –service-install D:\redis-2.8.12\redis6379.conf –service-name redisService6379 –port 6379 D:\redis-2.8.12\redis-server.exe –service-install D:\redis-2.8.12\redis6380.conf –service-name redisService6380 –port 6380 E:\redis-2.8.12\redis-server.exe --service-install E:\redis-2.8.12\redis6379.conf --service-name redisService6379 --port 6379 此处我在win7 64位上面使用"--"才能注册成功,不知道为什么,有知道的同学请留言告知,谢谢~ 安装后的服务情况: 任务管理器的情况: 端口监听情况: 至此Redis作为Windows服务成功运行,微软官方推荐最多可以安装运行3个实例,此文以运行2个实例为例。 windows平台安装redis服务,搜素材,soscw.com windows平台安装redis服务 标签:style blog http color 使用 width 原文地址:http://www.cnblogs.com/yellowgiutou/p/3857553.html