天天看點

(error) MISCONF Redis is configured to save RDB snapshots, but is currently not able to persist on disk.兩種解決方案

第一種方法:

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' )使其生效。)

繼續閱讀