- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - OpenVMS
- >
- VMS rsh to Tru64
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-19-2007 02:07 AM
10-19-2007 02:07 AM
VMS rsh to Tru64
We don't get the acknowledgement that the job completed, but if the jobs completes within 5 minutes we get the acknowledgement.
Does anyone know if there are any parameters that could effect this or has anyone else seen an issue like this before?
Thanks,
Howard
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-19-2007 03:02 AM
10-19-2007 03:02 AM
Re: VMS rsh to Tru64
Alternatively, various of these IP application connections can fail when no I/O passes over the link; there can be a ping or a timeout built into various the IP application protocols. In typical rsh clients, the timeout established with the -t timeout value; there doesn't appear to be a ping or keepalive timer in this case. Check your particular rsh client for details.
And if there is any sort of interactivity, rlogin or ssh may be more useful. And ssh is more useful in terms of its security, too.
Stephen Hoffman
HoffmanLabs LLC
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-19-2007 04:13 AM
10-19-2007 04:13 AM
Re: VMS rsh to Tru64
system (V5.1B-4) and see no such time-outs,
but I seldom do "rsh some_slow_command". Do
you get the same effect with an idle shell
session, or just with a some_slow_command?
Knowing nothing, I'd guess that there's some
idle-session-time-out thing working on the
Tru64 side.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-19-2007 06:31 AM
10-19-2007 06:31 AM
Re: VMS rsh to Tru64
... or an intervening firewall may be dropping what it believes is an idle session.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-21-2007 10:00 AM
10-21-2007 10:00 AM
Re: VMS rsh to Tru64
If you can't find any other clues, I'd try a binary search to determine the exact time period which separates "working" and "not working". Make the job to the equivalent of DCL code:
$ WAIT 'time'
$ WRITE SYS$OUTPUT "finished after ''time'"
Run this, binary chopping the time until you've got it down to less than a 1 second difference. This may help identify where the timeout is defined.
And yes, I've seen this type of thing many times before, usually worked around by implementing some kind of "keepalive" message issued at intervals.