Troubleshooting > Configuring Parameters for SSH
   
Version 9.1.01
Configuring Parameters for SSH
To add any configurable SSH parameters, modify the following scripts:
hostResourceDetail.{sh|bat} and aptarecron.{sh|bat}
For example, to add the channelWaitTime parameter, insert the following after java:
-DchannelWaitTime=5000
Configure channelWaitTime:
If you are experiencing slow connectivity from the Data Collector Server to the Host, update the scripts with this Configurable Parameter. This parameter is specified in milliseconds.
-DchannelWaitTime=5000 // This will set the wait time for data from the server.
Configure singleChannelSession:
This will run each command in a separate session.
-DsingleChannelSession=true // This will run the each command in a separate session.
Configure sudoWithPassword:
In sudo environments, this will send the password without waiting for a prompt.
-DsudoWithPassword=true // This will allow running sudo with -S option to send the password without waiting for a prompt.