: Anywhere from every ten minutes to monthly. One of the solutions is not to use the automatic retry. You can change your script to do something like the following // tell 24x7 to restart the job OnErrorGoTo START Dim tries_count, number, 3 Dim first_try, boolean START: isEqual tries_count, 3, first_try Subtract tries_count, 1, tries_count // if still have tries do the Telnet thing IfThen tries_count, DO_TELNET // no more tries, abort job Exit DO_TELNET: if first_try, MAIN, WAIT WAIT: // wait 3 minutes before making new try Wait 120 MAIN: // your current script below : Telnet.log on the scheduler PC or on the server? Telnet.log on the PC in scheduler's directory. You need to have tracing enabled in order for 24x7 to write telnet trace info into that file
|