2.2.1.3 Configuring an SSH password-authenticated Moab connection
        A SSH password-authenticated Moab connection is a connection to the Moab server via SSH that requires password authentication.
        To configure a SSH password-authenticated Moab connection
        
            - Open the core.xml file located in the Viewpoint home directory.
 
            - Locate the <moab-connection> element and change the type to "ssh-password".
 
            - Modify <host> to specify the host name of the Moab server.
 
            - Modify <user> to specify the username used to connect via SSH to the Moab server.
 
            - Modify <password> to specify the password used to authenticate.
 
            - Configure any of the following optional elements:
 
            
                - Set <initial-connections> to the number of connections created when the server starts. The default is 1.
 
                - Set <maximum-connections> to the maximum number of connections allowed. The default is 10.
 
                - Set <moab-path> to the location of the Moab commands. By default, the operating system is searched for Moab commands.
 
                - Set <port> to the SSH port used to connect to Moab.
 
<moab-connection type="ssh-password">
  <!-- required elements -->
  <host>moab-host</host>
  <user>moab-host</user>
  <password>password</password>
  <!-- optional elements -->
  <initial-connections>5</initial-connections>
  <maximum-connections>10</maximum-connections>
  <moab-path>/usr/moab/bin</moab-path>
  <port>22</port>
</moab-connection>
            
        
        Related topics