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>