【刪除原服務】 html
若是前面已經創建過服務,可是須要從新啓用服務的須要刪除服務: windows
services.msc中能夠看cygwin sshd的屬性發現服務名爲sshd app
cmd進入命令行,而後 sc delete sshd,屏幕上出現[SC] DeleteService SUCCESS, less
本質上至關於刪除HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet下的註冊表項 ssh
進入services.msc發現服務已刪除 測試
【創建新服務】 ui
而後進入cygwin創建ssh服務: this
1) 修改環境變量 PATH變量中加入Cygwin路徑 添加CYGWIN變量設爲ntsec tty spa
2) 受權: 命令行
使用windows 用戶的密碼和用戶組
$mkpasswd -l > /etc/passwd
$mkgroup -l > /etc/group
Note: 設置文件權限(若是win7須要先以管理員權限運行cygwin才能使用chmod), 在域用戶的時候理論上要加-d,可是通過測試沒用,仍是用上面的命令,配置好service以後直接鏈接127.0.0.1而後輸入用戶名便可,不須要其餘密碼之類的信息就能夠本地ssh登陸了
$chmod +r /etc/group
$chmod +r /etc/passwd
$chmod +rwx /var
3) 安裝:
$ ssh-host-config
*** Info: Generating /etc/ssh_host_key
*** Info: Generating /etc/ssh_host_rsa_key
*** Info: Generating /etc/ssh_host_dsa_key
*** Info: Creating default /etc/ssh_config file
*** Info: Creating default /etc/sshd_config file
*** Info: Privilege separation is set to yes by default since OpenSSH 3.3.
*** Info: However, this requires a non-privileged account called 'sshd'.
*** Info: For more info on privilege separation read /usr/share/doc/openssh/READ
ME.privsep.
*** Query: Should privilege separation be used? (yes/no) yes #輸入yes
*** Info: Updating /etc/sshd_config file
*** Warning: The following functions require administrator privileges!
*** Query: Do you want to install sshd as a service?
*** Query: (Say "no" if it is already installed as a service) (yes/no) yes #輸入yes
*** Info: Note that the CYGWIN variable must contain at least "ntsec"
*** Info: for sshd to be able to change user context without password.
*** Query: Enter the value of CYGWIN for the daemon: [ntsec] ntsec #輸入ntsec
*** Info: On Windows Server 2003, Windows Vista, and above, the
*** Info: SYSTEM account cannot setuid to other users -- a capability
*** Info: sshd requires. You need to have or to create a privileged
*** Info: account. This script will help you do so.
*** Info: You appear to be running Windows 2003 Server or later. On 2003 and
*** Info: later systems, it's not possible to use the LocalSystem account
*** Info: for services that can change the user id without an explicit password
*** Info: (such as passwordless logins [e.g. public key authentication] via sshd).
*** Info: If you want to enable that functionality, it's required to create a new
*** Info: account with special privileges (unless a similar account already exists).
*** Info: This account is then used to run these special servers.
*** Info: Note that creating a new user requires that the current account have
*** Info: Administrator privileges itself.
*** Info: No privileged account could be found.
*** Info: This script plans to use 'cyg_server'.
*** Info: 'cyg_server' will only be used by registered services.
*** Query: Do you want to use a different name? (yes/no) no #輸入no,不指定啓動用戶
*** Query: Create new privileged user account 'cyg_server'? (yes/no) no #輸入no,不指定啓動用戶
*** ERROR: There was a serious problem creating a privileged user.
*** Query: Do you want to proceed anyway? (yes/no) yes #輸入yes
*** Warning: Expected privileged user 'cyg_server' does not exist.
*** Warning: Defaulting to 'SYSTEM'
*** Info: The sshd service has been installed under the LocalSystem
*** Info: account (also known as SYSTEM). To start the service now, call
*** Info: `net start sshd' or `cygrunsrv -S sshd'. Otherwise, it
*** Info: will start automatically after the next reboot.
*** Info: Host configuration finished. Have fun!
4) Windows下或者在cygwin窗口中直接 net start sshd (sshd即爲新建的服務,services.msc 中的Cygwin SSHD)
plus) 若是啓用服務有問題能夠嘗試操做:
$ mkpasswd -l > /etc/passwd
$ mkgroup -l > /etc/group
$ cygrunsrv -R sshd
$ ssh-host-config -y
$ cygrunsrv -S sshd
另外putty鏈接ssh服務能夠參考:
http://hi.baidu.com/liuhengloveyou/blog/item/412a1034f674cc3f5bb5f591.html