linux关闭ssh:如何在Linux系统中关闭SSH服务
Linux关闭SSH的方法有两种:使用命令。一、使用systemctl命令。二、使用service命令。
·
Linux关闭SSH的方法有两种:使用命令
Linux关闭SSH的方法有两种:
一、使用systemctl命令
1. 查看ssh服务的状态:
$ systemctl status sshd
2. 关闭ssh服务:
$ sudo systemctl stop sshd
3. 禁止ssh服务开机自启动:
$ sudo systemctl disable sshd
二、使用service命令
1. 查看ssh服务的状态:
$ service ssh status
2. 关闭ssh服务:
$ sudo service ssh stop
3. 禁止ssh服务开机自启动:
$ sudo update-rc.d ssh disable
更多推荐
已为社区贡献1条内容
所有评论(0)