Redis 錯誤摘記篇

2022-06-01 11:54:07 字數 403 閱讀 4548

yum安裝的redis提示如下報錯,大概意思就是配置檔案和redis-server程序檔案版本不一致。。

[root@vm-10-104-28-24 yum.repos.d]# redis-server /etc/redis.conf

*** fatal config file error ***

reading the configuration file, at line 376

>>> 'vm-enabled no'

bad directive or wrong number of arguments

解決:解除安裝了從新安裝還是不行,還提示不一致,那肯定沒解除安裝乾淨。。

find / -name redis-server 發現有多個程序檔案,全部刪掉從新安裝解決版本不一致問題 。。。

redis連線錯誤

問題 unable to connect to redis nested exception is io.lettuce.core.rediscommandtimeoutexception command timed out after no timeout 錯誤原因 連線超時時間設定的過於短暫 我...

redis連線錯誤

問題原因 沒有設定redis的密碼 解決 命令列進入redis的資料夾 d redis x64 3.2.100 redis cli.exe 檢視是否設定了密碼 127.0.0.1 6379 auth root error err client sent auth,but no password is...

Redis篇 初始Redis與Redis安裝

一 前述 redis是當前比較熱門的nosql系統之一,它是乙個key value儲存系統。和memcache類似,但很大程度補償了memcache的不足,它支援儲存的value型別相對更多,包括string list set zset和hash。這些資料型別都支援push pop add remo...