且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

(error) MISCONF Redis is configured to save RDB snapshots, but is currently not able to persist on disk.两种解决方案

更新时间:2022-08-28 18:37:34

第一种方法:

172.177.3.42:8081> config set stop-writes-on-bgsave-error no
OK
172.177.3.42:8081> lpush myColour "red"
(integer) 1

但这种方法并不能一劳永逸,需要每次开机使用都要重新配置。

第二种方法:

在网上查这种方法可以长久生效,但本人一直没操作成功,没查出原因。以后发现什么原因,再更改此处。

为了修正这个问题,请在/etc/sysctl.conf 添加一项 'vm.overcommit_memory = 1' ,然后重启(或者运行命令'sysctl vm.overcommit_memory=1' )使其生效。)