- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - OpenVMS
- >
- Re: TNA Question
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
06-19-2005 01:38 PM
06-19-2005 01:38 PM
TNA Question
"ERROR MODIFYING TNA123" (the number seems to increase wich each connection attempt)
"UNKNOWN TERMINAL TYPE"
I honestly have no idea what this is complaining about, the only thing I know is the FT GET commands it sends are failing (complaints "SIZE is unimplemented" and "file not found" even after it has determined the file is there - including it's size in bytes) and the support group for the software isn't in on Sundays. It would sure be nice to fix this myself instead of relying on someone nearly two-thousand miles away to do it for me, especially since I keep getting this itchy feeling telling me that this isn't a huge problem.
Thanks in advance!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-19-2005 03:57 PM
06-19-2005 03:57 PM
Re: TNA Question
Mostly this error occurs when trying to issue commands like SET TERM/INQ on non-terminals (like the TNA device).
See if SYLOGIN.COM or the LOGIN.COM file for the username in question contains SET TERM commands. Those SHOULD be in a conditional sections, only to be executed in "INTERACTIVE" mode.
A workaround could be to add:
$ if f$mode() .nes. "INTERACTIVE" then exit 1
Just befor the line with the SET TERM, but after required logicals and symbols are defined.
What is not clear to me, is how an upgrade to 7.2-2 could have played a role. One would suspect something with those SYLOGIN or LOGIN.COM file but I would not expect an update to touch that. Maybe someone used to upgrade as an down-time opportunity to bring forward other changes as well?
hth,
Hein.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-19-2005 05:02 PM
06-19-2005 05:02 PM
Re: TNA Question
$! Commands for all modes here
$!
$ GOTO DO_'F$MODE()
$
$ DO_BATCH:
$! Commands for BATCH mode here
$ EXIT
$!
$ DO_NETWORK:
$! Commands for NETWORK mode here
$ EXIT
$!
$ DO_OTHER:
$! Commands for OTHER mode here
$ EXIT
$!
$ DO_INTERACTIVE:
$! Commands for INTERACTIVE mode here
$ EXIT
Incoming FTP connections will be "NETWORK", so make sure there are no commands that expect a terminal in the network section.
Remember to check both the SYLOGIN.COM and the individual user LOGIN.COM.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-19-2005 05:14 PM
06-19-2005 05:14 PM
Re: TNA Question
beside the problem of the 'unknown terminal' there seems to be also problem with your FTP itself (SIZE is unimplemented...).
Did you change the TCPIP product during your upgrade or did your application use a separate FTP utility? Btw. From what version did you upgrade?
regards Kalle
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-19-2005 06:59 PM
06-19-2005 06:59 PM
Re: TNA Question
welcome to vms forum.
I have a piece of software that is designed to log into a OpenVMS system (among others), find reports, and perform an FTP file download.
Reading your first sentence, I understand your software creates an interactive or network session on vms; after of this it executes ftp. If is it true, the problem is indeed located in SYLOGIN as posted by Hein. I remember SYLOGIN template was radically modificed between V6 and V7 of vms.
Antonio Vigliotti