Answers:
记录在man systemctl
:
systemctl disable ssh
防止ssh服务自动启动。但这是systemd这样做的方式,但是ubuntu不接受它,他们必须以自己的方式这样做:
官方文档:https : //wiki.ubuntu.com/SystemdForUpstartUsers#Automatic_starting
根据这一点,您应该WantedBy=multi-user.target
在没有指令的情况下创建单元替代/etc/systemd/system/ssh.service
(而不是当前的符号链接):
rm /etc/systemd/system/ssh.service
cp /lib/systemd/system/ssh.service /etc/systemd/system/ssh.service
sed -e "/WantedBy=multi-user.target/d" -i /etc/systemd/system/ssh.service
systemctl daemon-reload
disable
...我不知道我为什么放在那儿status
。它在Ubuntu上对我不起作用(与其他系统不同),所以我也在寻找其他解决方案……
sshd
很容易解释。我不确定为什么Debian / Ubuntu开始只ssh
用于服务器。我将编辑此答案以反映出来。谢谢。