Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我已经在一系列端口上启动了多个 ssh 服务,以进行特定测试,使用
/usr/sbin/sshd -p portnumber
如何在我开始的特定端口停止服务?我见过这个命令(但是一般来说,我必须停在特定的端口)
/etc/init.d/ssh stop
要停止所有实例,您可以使用:
killall sshd
如果你想要一个特定的,你需要使用ps aux | grep sshd -p <port>. 在那里你得到了你可以简单地杀死的pid(进程id)kill <pid>。
ps aux | grep sshd -p <port>
kill <pid>