`

CYGWIN SSH Server 配置

 
阅读更多

1. 从[url]www.cywin.com[/url] 下载 setup.exe 安装引导程序
2. 双击 setup.exe 开始安装
3. 选择安装源 Install for Internet ( 如果有上次从 Internet 下载的软件包,可以选择 Install for Local Directory 选择存放的目录即可)
4. 定义安装目录 C:/cygwin (1) Install for : All Users (2) Default Text File Type: Unix/binary
5. 定义下载软件所存放目录,(下次可以使用下载包从本地硬盘进行安装) .G:/Download/cywin
6. 选择连接 Internet 的类型,根据自己的实际情况选择
7. 选择一个镜像下载站点
8. 选择安装软件包
(1) Admini 中选择:cygrunsrv
(2) DOC 中选择:cygwin-doc
(3) Net 中选择:openssh
9. cywin 自动下载选择的软件包,并进行安装。
10. 在我的电脑->属性->高级->环境变量中配置加入变量CYGWIN=ntsec,
在path环境变量中加入cygwin/bin路径, 例如: ;c:/cygwin/bin
11. 双击Windows上安装好的 Cywin快捷图标,启动 Cywin
Copying skeleton files.
These files are for the user to personalise
their cygwin experience.
These will never be overwritten.
`./.bashrc' -> `/home/Administrator//.bashrc'
`./.bash_profile' -> `/home/Administrator//.bash_profile'
`./.inputrc' -> `/home/Administrator//.inputrc'
12. 给文件授权,以完成sshd 服务的安装
chmod +r /etc/group
chmod +r /etc/passwd
chmod +rwx /var
13. 安装 sshd 服务
$ ssh-host-config
详细的安装步骤,以及输入的参数,如下所例:
Copying skeleton files.
These files are for the user to personalise
their cygwin experience.
These will never be overwritten.
`./.bashrc' -> `/home/Administrator//.bashrc'
`./.bash_profile' -> `/home/Administrator//.bash_profile'
`./.inputrc' -> `/home/Administrator//.inputrc'
Administrator@backup ~
$chmod +r /etc/group#对文件权限
Administrator@backup ~
$chmod +r /etc/passwd#对文件权限
Administrator@backup ~
$chmod +rwx /var/#对文件权限
Administrator@backup ~
$ssh-host-config#引导SSH服务配置
*** 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 ne
w
*** Info: account with special privileges (unless a similar account already exis
ts).
*** 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!
Administrator@backup ~
$cygrunsrv.exe -S sshd#启动SSH服务
14. 安装完成后,检查一下系统服务中是否有 CYGWIN sshd 服务, 无启动帐号.
15. 检查系统用户 sshd 是否已启用, 并属于管理员组.
16. 一切正常,即可启动ssh服务. 登录的用户名是sshd, 密码是 sshd用户的密码.
注意: 使用 windows 用户本地认证
mkpasswd -l > /etc/passwd 使用windows 用户的密码

mkgroup -l > /etc/group 使用windows 用户组

本文出自 “铁钉” 博客,请务必保留此出处http://nails.blog.51cto.com/640492/144025

 

 

分享到:
评论

相关推荐

    cygwin的ssh安装包

    **Cygwin SSH 安装包详解** Cygwin 是一个在 Windows 上模拟 Linux 开发环境的开源工具集,它提供了大量的 Linux 工具和库,使得开发者...通过离线安装包,用户可以更方便地在没有网络的环境中部署和配置 SSH 服务。

    SSH配置和经常出现的报错以及解决方法

    - 对于Windows系统,则可以使用Cygwin或者安装Git Bash等工具来支持SSH服务。 2. **配置SSH服务端:** - 编辑 `/etc/ssh/sshd_config` 文件(对于Debian/Ubuntu系统)或 `/etc/ssh/sshd_config`(对于Red Hat/...

    cygwin安装sshd服务并配置无密码登录

    2. 安装sshd服务:打开Cygwin终端,使用`ssh-host-config`命令来配置sshd服务。在执行此命令时,你可能会遇到是否覆盖现有配置文件的询问,根据提示选择`yes`。 ``` Administrator@PC-***$ ssh-host-config ...

    Configuration inside of Cygwin

    本文将重点介绍如何在 Windows XP 和 Windows Server 2003 上配置 Cygwin 的 Secure Shell (SSH) 服务。SSH 服务允许用户通过网络安全地登录到远程计算机,并执行各种操作,如文件传输、命令执行等。 #### 二、基础...

    windows平台下载安装cygwin

    在Cygwin环境中配置Hadoop,你需要按照Hadoop官方文档的指示进行。这通常包括设置环境变量,如`JAVA_HOME`,以及配置Hadoop的配置文件,如`core-site.xml`, `hdfs-site.xml`, `yarn-site.xml`等。 通过这种方式,你...

    win7下Cygwin搭建Hadoop开发环境

    在 Cygwin 的终端中输入 `ssh-host-config` 命令来安装和配置 SSH 服务。根据提示进行操作。如果遇到问题,可以参考以下链接获取解决方案: - [Cygwin 上安装、启动 ssh 服务失败、ssh localhost 失败的解决方案]...

    cygwin 下安装 sshd ,openssh

    本文将详细介绍如何在Cygwin环境下安装并配置sshd(Secure Shell Daemon),以便通过ssh命令从其他计算机远程登录到你的Windows系统。 ### 1. 安装Cygwin 首先,你需要下载并安装Cygwin。访问Cygwin官方网站...

    以cygwin和gitolite在WinServer2008上安装git服务

    2. **安装OpenSSH**:作为Git服务器的基础,cygwin包含OpenSSH,需要配置并启动SSH服务。 3. **安装git**:在cygwin环境中安装git,确保服务器具备Git版本控制系统。 4. **安装gitolite**:下载并安装gitoite,按照...

    使用cygwin 运行启动autossh服务

    本文将详细介绍如何在Windows环境下使用Cygwin运行并启动Autossh服务,以确保SSH连接的稳定性和持久性。 **什么是Cygwin?** Cygwin是一款开源软件,它为Windows系统提供了类Unix的开发环境和命令行接口。Cygwin...

    cygwin的安装

    截至 2004 年 3 月 9 日,Cygwin 支持的操作系统包括 Windows 95、Windows 98、Windows Me、Windows NT 4.0、Windows 2000、Windows XP 和 Windows Server 2003。 Cygwin/X 主要分为两部分:Cygwin 和 Cygwin/X。...

    azkaban开发环境配置

    - 将生成的`id_rsa.pub`文件内容复制到GitLab或其他版本控制系统的SSH key配置中。 #### 三、Azkaban项目导入Eclipse 1. **导入Azkaban项目** - 使用`File -> Import`将Azkaban项目导入到Eclipse中。 #### 四、...

    windows下搭建hadoop开发环境(Eclipse)

    Hadoop集群中的节点间通信需要通过SSH进行,因此在本地机器上也需要安装并配置SSH Server。 1. **安装SSH Server**: - 打开Cygwin终端,运行`ssh-host-config`命令。 - 按照提示进行配置,一般情况下直接回车...

    Windows下运行XServer.pdf

    Xming是一个轻量级的XServer,安装后可以自动运行,而Putty则是一款流行的SSH客户端,通过配置其X11转发功能,可以让Linux服务器上的GUI程序的显示请求被转发到Windows上的Xming。 配置步骤大致如下: 1. 安装Xming...

    win_autossh_svc:cygwin + nssm + batch文件结合在一起,提供了一个有弹性的反向rdp隧道

    一些条款: LOCALMACHINE:您要连接的计算机REMOTEMACHINE:您要连接的机器REMOTESERVER:第三台世界可访问的机器,用于通过它建立ssh隧道通过REMOTESERVER创建到REMOTEMACHINE的反向隧道: 安装cygwin。...

    cygwin命令.pdf

    - `export DISPLAY=0:0`:设置环境变量,用于指定X Server的显示设置。 - `date`:显示当前日期和时间。 - `clock`:显示或设置生物钟(RTC)。 ### 文件操作 - `tar`:处理tar格式的压缩包。 - `gzip`:压缩或解压...

    在Windows上安装Hadoop教程

    本文将根据提供的标题和标签,以及“Windows下的SSH安装之Cygwin.doc”这个文档,来详细阐述安装过程中的关键步骤和相关知识点。 首先,Hadoop是一个开源的分布式计算框架,主要用于处理和存储海量数据。在Windows...

    rsyncserver

    cwRsync是Cygwin环境下的rsync版本,它为Windows提供了对rsync功能的支持。 cwRsyncServer_4.0.6_Installer.exe 是cwRsync的安装程序,这个版本为4.0.6,用于在Windows系统上安装和配置rsync服务器。 **rsync的核心...

    Windows上安装Hadoop

    - 配置SSH免密登录,生成公钥私钥对,并将公钥复制到`~/.ssh/authorized_keys`。 6. **启动Hadoop**: - 初始化NameNode:`hadoop namenode -format`。 - 启动DataNode:`hadoop datanode`。 - 启动NameNode:`...

Global site tag (gtag.js) - Google Analytics