时间:2022-12-06 01:59
查看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 #禁止开机启动