在Linux中,您可以使用以下方法之一远程关闭Redis服务器:
方法1:使用redis-cli
命令行工具
- 打开终端。
- 输入以下命令以连接到远程Redis服务器(将
your_remote_host
替换为实际的主机名或IP地址):
redis-cli -h your_remote_host -p your_remote_port
- 输入密码(如果有的话),然后按Enter键。
- 要关闭Redis服务器,请输入以下命令:
SHUTDOWN
- 按Enter键以确认关闭。
方法2:使用systemctl
命令(适用于使用systemd的系统)
- 打开终端。
- 输入以下命令以连接到远程Redis服务器(将
your_remote_host
替换为实际的主机名或IP地址):
ssh your_remote_user@your_remote_host
- 输入密码(如果有的话),然后按Enter键。
- 使用以下命令关闭Redis服务器:
sudo systemctl stop redis
- 按Enter键以确认关闭。
方法3:使用kill
命令(适用于基于SysV init的系统)
- 打开终端。
- 输入以下命令以连接到远程Redis服务器(将
your_remote_host
替换为实际的主机名或IP地址):
ssh your_remote_user@your_remote_host
- 输入密码(如果有的话),然后按Enter键。
- 使用以下命令查找Redis进程的PID:
ps aux | grep redis-server
- 记下PID(通常在第二列)。
- 使用以下命令关闭Redis服务器(将
your_redis_pid
替换为实际的PID):
sudo kill your_redis_pid
- 按Enter键以确认关闭。