完美解決linux上啟動redis後配置檔案未生效的問題
阿新 • • 發佈:2020-01-09
修改redis.conf後,重啟redis,發現修改的配置未生效,原來是需要在啟動redis的時候在命令中加上配置檔案,命令如下
./redis-server /usr/local/redis-3.2.8/redis.conf &
仔細閱讀配置檔案可以開頭看到有這樣的描述
# Note that in order to read the configuration file,Redis must be # started with the file path as first argument: # # ./redis-server /path/to/redis.conf
所以問題就在這裡。
以上這篇完美解決linux上啟動redis後配置檔案未生效的問題就是小編分享給大家的全部內容了,希望能給大家一個參考,也希望大家多多支援我們。