Redis service failed to start ——解决方法
错误信息运行命令启动 redis 服务: redis-server.exe --service-start --service-name redisserver1时,失败错误信息:Redis service failed to start.查看日志信息:dbfilename can't be a path, just a filename解决打开 redis.windows-service.con
·
错误信息
运行命令启动 redis 服务: redis-server.exe --service-start --service-name redisserver1
时,失败
错误信息:Redis service failed to start.
查看日志信息:dbfilename can't be a path, just a filename
解决
- 打开 redis.windows-service.conf 文件(如果你的 redis 不是以这个配置文件启动的,就打开另外一个 redis.windows.conf 文件
- 根据日志,是 dbfilename 出了问题,翻译过来就是
dbfilename 不能是一个路径,只能是一个文件名
- 我的 conf 文件一开始是这样配置的:本意是想让 dbfilename 放在 redis_data/ 路径下。查阅了一些博客了解到,dbfilename 的路径其实就是相对于 dir 路径的。即:dir 已经明确了其他文件放置的相对位置
- 换句话说,如果是
dir ./xxxx
,则dbfilename ss.rdb
就表示把 dbfilename 放在./xxxx/ss.rdb
下了,无需再写 path(这也符合日志的信息),相当于 dbfilename 仅仅是用来给持久化文件取名字的,而不是确定位置的
# The filename where to dump the DB
dbfilename ./redis_data/dump.rdb
# The working directory.
#
# The DB will be written inside this directory, with the filename specified
# above using the 'dbfilename' configuration directive.
#
# The Append Only File will also be created inside this directory.
#
# Note that you must specify a directory here, not a file name.
dir ./redis_data
至此,问题解决
如果你的问题还未解决,那么就打开日志文件,根据日志报错信息继续查下去即可。加油,陌生人
更多推荐
已为社区贡献2条内容
所有评论(0)