You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 12 Next »

The Cygwin SSHD service must be installed on a Windows base image. It allows the management node to login to the computer in order to configure it and to perform periodic checks.

Install Cygwin

  1. Log on as root to the Windows computer being used for the VCL image
  2. Download Cygwin 1.5.x: http://cygwin.com/setup-legacy.exe
    Save the installer to root's desktop
    WARNING: Do not download and install Cygwin 1.7 yet!  There are bugs in 1.7 which will cause VCL reservations to fail.  It does not properly handle commands containing cmd.exe /c.
  3. Run setup-legacy.exe (if using Windows 6.x, right-click and select Run as Administrator)
  4. Click OK if presented with a legacy version warning
  5. Configure as follows:
    1. Install from Internet
    2. Root Directory: C:\cygwin
    3. Install For: Just Me
    4. Default Text File Type: DOS/text
    5. Local Package Directory: browse to root's Desktop
    6. Internet Connection: Direct Connection
    7. Download Site: choose one (.edu FTP sites seem the fastest)
    8. Select Packages (expand the tree and click Skip):
      Editors : vim
      Net: openssh
      Web: wget
    9. Create icon on Desktop: No
    10. Add icon to Start Menu: No
  6. After Cygin setup is complete, delete the installation files from the desktop:
    1. Installer: setup-legacy.exe
    2. Local package directory: C:\ftp%...cygwin...

Configure Cygwin SSHD on the Windows Computer

  1. Launch the Cygwin shell (if using Windows 6.x, right-click and select Run as Administrator):C:\Cygwin\Cygwin.bat
  2. Download cygwin-sshd-config.sh using wget to the following location on the Windows computer:
    C:\Cygwin\home\root\cygwin-sshd-config.sh
    wget http://svn.apache.org/repos/asf/incubator/vcl/trunk/managementnode/bin/cygwin-sshd-config.sh
    
  3. Set the script to be executable:
    chmod +x cygwin-sshd-config.sh
  4. Run the script and specify the root account password as an argument, enclose the password in single quotes in case special characters are used in the password:
    /home/root/cygwin-sshd-config.sh '<PASSWORD>'
    • If asked to Enter a new user name, enter cyg_server
    • You should see something similar to the following towards then end of the script output:

      The CYGWIN sshd service was started successfully.

Configure SSH Identity Key Access from the Management Node

  1. Log in as root on the management node
  2. Download gen-node-key.sh using wget to the management node:
    wget http://svn.apache.org/repos/asf/incubator/vcl/trunk/managementnode/bin/gen-node-key.sh
    
  3. Set the script to executable: chmod +x gen-node-key.sh
  4. Determine the IP address of the Windows computer by running ipconfig
  5. Run the script on the managment node and specify the Windows computer's IP address or DNS hostname as the 1st argument.  A second argument specifying the private SSH key path can be specified.  If the 2nd argument isn't specified, /etc/vcl/vcl.key will be used.
    ./gen-node-key.sh 10.10.18.179
    • Enter the Windows root account password during script execution when asked
  1. Attempt to connect from the management node to the Windows computer via SSH using the command displayed at the end of the gen-node-key.sh output
  • No labels