Can choose the way how to execute the remote tomcat command to apply pty option correctly. you can select the option in advanced menu : Use background execution for Tomcat command.
No - Using Normal script(Default) : It follows the global pty option.
Yes - Using Background script : It makes pty false in some OS even though global pty is true. for example, RHEL 5.6
If your tomcat command exucution is keep failing with timeout error, please try change this option. if it is still failing, you may need to change your Tomcat script in your remote host.
I think most of Tomcat init.d script uses /bin/su -p -s /bin/bash -l $TOMCAT_USER $TOMCAT_HOME/bin/startup.sh for tomcat startup script. however, In some of OS, for example CentOS/Oracle 5.9 and 6.5, tomcat command process were killed right after the ssh session has closed. To prevent this issue, init.d script should be modified like, su $TOMCAT_USER -c $TOMCAT_HOME/bin/startup.sh
Can choose the way how to execute the remote tomcat command to apply pty option correctly. you can select the option in advanced menu :
Use background execution for Tomcat command
.