查看redis配置文件位置的方法:1、打開終端;2、輸入命令查看redis狀態;3、輸入“ cat /usr/lib/systemd/system/redis.service”命令查看redis配置文件位置即可。
具體操作步驟:
1、使用快捷鍵【Ctrl+Alt+T】打開ubuntu終端。
2、輸入以下命令查看redis狀態。
systemctl status redis
3、輸入以下命令查看redis配置文件位置即可。
cat /usr/lib/systemd/system/redis.service
看上圖可知redis配置文件redis.conf在/etc目錄下。
相關redis操作命令:
systemctl start redis #啟動redis服務
systemctl restart redis #重啟redis服務
systemctl stop redis #停止redis服務
systemctl enable redis #設置開機自啟動
systemctl disable redis #禁止開機啟動