1. 终于自己用命令启动了一个我想要的ssh服务:
/usr/bin/sshd -f /etc/ssh/sshd_config
2. 回想当初一直在困扰怎么在唯一的windows服务器上开启远程命令行查看日志,修改文件的功能!
不间断地尝试过mobassh,openssh,bitivssh,没有遇到真正满意的。
3. 不采用Hostkey启动sshd服务的/etc/ssh/sshd_config文件内容:
AuthorizedKeysFile .ssh/authorized_keys
AllowAgentForwarding yes
AllowTcpForwarding yes
X11Forwarding yes
X11DisplayOffset 10
X11UseLocalhost no
PermitTTY yes
PrintLastLog yes
UsePrivilegeSeparation sandbox # Default for new installations.
PidFile /etc/ssh/sshd.pid
Subsystem sftp /usr/lib/ssh/sftp-server
4. #1的命令在cmder中启动即可。在mobaxterm中报错:
Privilege separation user sshd does not exist
5. 执行cygpath找到sshd的可执行文件原来在git中:
509 $ cygpath -w /usr/bin/sshd
E:\SoftWares\Tools\cmder\vendor\git-for-windows\usr\bin\sshd