博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
windows版redis报错:本地计算机上的Redis服务启动后停止
阅读量:6227 次
发布时间:2019-06-21

本文共 1597 字,大约阅读时间需要 5 分钟。

使用命令redis-server.exe  --service-install redis.windows.conf命令将redis注册为服务,启动服务时报错:

本地计算机上的Redis服务启动后停止。某些服务在未由其他服务或程序使用时将自动停止。

使用命令redis-server.exe   redis.windows.conf临时安装redis,结果报错:

The Windows version of Redis allocates a memory mapped heap forsharing with

the forked process used for persistenceoperations. In order to share this

memory, Windows allocates from the systempaging file a portion equal to the

size of the Redis heap. At this time thereis insufficient contiguous free

space available in the system paging filefor this operation (Windows error

0x5AF). To work around this you may eitherincrease the size of the system

paging file, or decrease the size of theRedis heap with the --maxheap flag.

Sometimes a reboot will defragment thesystem paging file sufficiently for

this operation to complete successfully.

Please see the documentation included withthe binary distributions for more

details on the --maxheap flag.

Redis can not continue. Exiting.

如图:

由于没有指定maxheap导致的,当然了不指定该参数不一定报错,但是出现上述原因,通常是这个原因导致的。

使用命令:redis-server.exe   redis.windows.conf   --maxheap 200m

说明:200m是指定最大堆内存是200m,当然你也可以修改得在大一些

如果已经注册为了服务,先卸载掉,卸载方法是,用cmd进入到你的redis文件的目录,然后执行命令:redis-server--service-uninstall

卸载完成后,重新安装服务,执行命令:

redis-server.exe  --service-install   redis.windows.conf  --maxheap  200m

说明:200m是指定最大堆内存是200m,当然你也可以修改得在大一些

可以到github上下载最新版的redis

地址是:

windows系统的话,可以下载msi版直接安装,我这里下载的是zip版,自己执行命令来安装

如图

报错:

[6644] 02 Apr 23:11:58.976 # Creating Server TCP listening socket *:6379: bind: No such file or directory

的解决方案如下按顺序输入如下命令就可以连接成功

1. redis-cli.exe

2. shutdown

3. exit

4. redis-server.exe redis.windows.conf

转载地址:http://jhnna.baihongyu.com/

你可能感兴趣的文章
聊聊连接池和线程
查看>>
Python——正則表達式(2)
查看>>
适合新人学习的iOS官方Demo
查看>>
拉开大变革序幕(下):分布式计算框架与大数据
查看>>
AndroidStudio 使用AIDL
查看>>
H.264 RTPpayload 格式------ H.264 视频 RTP 负载格式(包含AAC部分解析)
查看>>
poj 3468 A Simple Problem with Integers 【线段树-成段更新】
查看>>
HDU 4287-Intelligent IME(哈希)
查看>>
CentOS---网络配置详解
查看>>
CakePHP不支持path/to路径,前后台无法方法
查看>>
第1阶段——uboot分析之硬件初始化start.S(4)
查看>>
记dynamic的一个小坑 -- RuntimeBinderException:“object”未包括“xxx”的定义
查看>>
代写初中语文作文|代写初中语文作文技巧分享
查看>>
linux字符设备文件的打开操作
查看>>
Servlet介绍以及简单实例
查看>>
[js高手之路] 跟GhostWu一起封装一个字符串工具库-架构篇(1)
查看>>
Java.ftp上传下载
查看>>
【Node.js】4.从一个例子切入Node js的规范
查看>>
实施微服务架构的关键技术
查看>>
使用云服务器不得不知的操作禁忌
查看>>