1. 程式人生 > >Redis Windows 服務啟動異常 錯誤碼1067

Redis Windows 服務啟動異常 錯誤碼1067

https://blog.csdn.net/after_you/article/details/62215163

Redis Windows 服務啟動異常 錯誤碼1067

下載了Redis 2.8.2101 windows版,準備學習一下。 
按照文件中的介紹,使用命令將其安裝成windows服務,可以正常啟動。

redis-server --service-install redis.windows.conf --loglevel verbose

後來看到目錄中還有一個conf檔案,redis.windows-service.conf,將其和redis.windows.conf進行比較,發現兩者只有一小點區別:redis.windows-service.conf 中關於註冊windows事件日誌的配置項是放開的

syslog-enabled yessyslog-ident redis

於是就解除安裝了剛剛裝的服務,用這個配置檔案重新安裝了一次

redis-server --service-install redis.windows-service.conf --loglevel verbose

但是在啟動服務的時候,竟然報錯:Windows無法啟動Redis服務(位於 本地計算機上) 錯誤1067:程序意外終止。 
服務啟動報錯

又仔細比較了下兩個配置檔案,原來redis.windows-service.conf中還多了一點日誌檔案的配置:

logfile "Logs/redis_log.txt"

於是手動在redis-server.exe所在的目錄中建立了子目錄Logs,再次啟動服務,一切正常。