- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - OpenVMS
- >
- FTP error messages
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
Discussions
Discussions
Discussions
Forums
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
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
тАО08-16-2010 06:17 PM
тАО08-16-2010 06:17 PM
Basically we are trying to shift user information from the node on which the user signs on to all other active nodes. So, it is something which is used frequenty during the day.
Ripping through the code I see a couple of status checks which are lightly documented (ie. not documented). I can't find this on the net anywhere so can anyone shed light on what status these codes refer to:
X1001828A I think this is just a VMS error code when opening a file
X17649B11 this is after a copy/ftp command
thanks
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-16-2010 06:33 PM
тАО08-16-2010 06:33 PM
Solutionsoftware, and the commands used might be more
helpful than vague ramblings and
interpretations. As a start:
tcpip show version
Around here:
ALP $ write sys$output f$message( %X1001828A)
%RMS-E-FLK, file currently locked by another user
ALP $ write sys$output f$message( %X17649B11)
%TCPIP-S-FTP_NORMAL, normal successful completion
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-16-2010 06:38 PM
тАО08-16-2010 06:38 PM
Re: FTP error messages
$ sho sym x
X = "%RMS-E-FLK, file currently locked by another user"
$ set mess sys$message:TCPIP$MSG.EXE
$ x=f$message(%x17649B11)
$ sho sym x
X = "%TCPIP-S-FTP_NORMAL, normal successful completion"
$
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-16-2010 06:38 PM
тАО08-16-2010 06:38 PM
Re: FTP error messages
gives you good information.
The other status is a success status. My usual tricks for finding out what it means have not been fruitful.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-16-2010 07:19 PM
тАО08-16-2010 07:19 PM
Re: FTP error messages
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-16-2010 07:30 PM
тАО08-16-2010 07:30 PM
Re: FTP error messages
> it means have not been fruitful.
And they were?
> $ set mess sys$message:TCPIP$MSG.EXE
The trick is knowing which is the magic file
in SYS$MESSAGE. I have a DCL procedure to
try them all until it gets something better
than "NOMSG". (I probably used it recently
to check on an FTP status of my own, which is
most likely why I didn't need an explicit SET
MESSAGE of my own to get what I got above.)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-17-2010 05:34 AM
тАО08-17-2010 05:34 AM
Re: FTP error messages
> [...] My usual tricks for finding out what
> it means have not been fruitful.
And they were?
> $ set mess sys$message:TCPIP$MSG.EXE
The trick is knowing which is the magic file
in SYS$MESSAGE. I have a DCL procedure to
try them all until it gets something better
than "NOMSG".
<<<<
I have the same command file. It did not find anything because TCPIP$MSG does not exist on my system.