gpt4 book ai didi

Redis 没有启动

转载 作者:可可西里 更新时间:2023-11-01 11:46:46 27 4
gpt4 key购买 nike

我有 redis 服务器 3.0.6 和 ubuntu 16.04。我的配置文件

tcp-keepalive 60
#bind 127.0.0.1
requirepass qwerty
maxmemory-policy noeviction
appendonly yes
appendfilename redis-test.aof

并且redis服务器没有运行

Can't open the append-only file: Read-only file system

最佳答案

错误信息很清楚:redis-test.aof 所在的文件系统挂载为只读。该文件的全部目的是将更改写入磁盘。所以磁盘必须是可写的。

检查您在安装驱动器时是否使用了 ro 选项。运行

$ mount

列出所有挂载点。检查您希望 aof 文件所在的文件。

要将磁盘重新挂载为可读写,请使用以下命令:

$ sudo mount -o remount,rw /partition/identifier /mount/point

如果这没有帮助,请查看系统日志是否有任何文件系统错误。要更正这些问题,您需要运行 fsck

关于Redis 没有启动,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49804105/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com