redis error就是redis資料庫和其組合使用的元件出現錯誤,這個出現的錯誤有很多種,在此舉例幾種:
Redis被配置為保存資料庫快照,但它目前無法持久化到硬碟。用來修改集合資料的命令不能用。請查看Redis日誌的詳細錯誤訊息。
原因:(建議學習:Redis影片教學)
#強制關閉Redis快照導致無法持久化。
解決方案:
127.0.0.1:6379> set name "hello" (error) NOAUTH Authentication required. 127.0.0.1:6379> (error) NOAUTH Authentication required. (error) ERR unknown command '(error)' 127.0.0.1:6379> auth "root"
執行config set stop-writes-on-bgsave-error no 指令後,關閉設定項stop-writes-on-bgsave-error解決問題。
root@ubuntu:/usr/local/redis/bin# ./redis-cli 127.0.0.1:6379> config set stop-writes-on-bgsave-error no OK 127.0.0.1:6379> lpush myColour "red" (integer) 1
Redis (error) NOAUTH Authentication required.解決方法
creating server tcp listening socket 127.0.0.1:6379: bind No error
#window下安裝redis報錯:##creating server tcp listening socket 127.0.0.1:6379: bind No error的解
如下依序輸入下列指令就可以連線成功
#1. redis-cli.exe
2. shutdown
3. exit
4. redis-server.exe redis.windows.conf
更多Redis相關技術文章,請造訪
Redis資料庫使用入門教學以上是redis error什麼意思的詳細內容。更多資訊請關注PHP中文網其他相關文章!