OS X:用于打开/关闭SSH服务器的终端命令


11

我知道如何从系统偏好设置中打开SSH服务器:

(系统偏好设置->共享->远程登录)

现在,我正在寻找相同的终端命令。

通过了解它,我可以在Python脚本中使用该命令(用于项目工作)。


我是这一切的新手。我不知道启动与“从终端启动SSH”是否相关。并且有成千上万的此类通用问题以不同的方式提出。
kshikhar '16

Answers:


17

您可以通过键入以下命令来停止ssh服务:

$ sudo launchctl unload  /System/Library/LaunchDaemons/ssh.plist 

要重新启动,请使用以下命令:

$ sudo launchctl load -w /System/Library/LaunchDaemons/ssh.plist 
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.