- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - OpenVMS
- >
- Re: How to reset device error count on OpenVMS V6....
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
01-25-2010 03:15 AM
01-25-2010 03:15 AM
How to reset device error count on OpenVMS V6.2-1H3
$ SET DEVICE/RESET=ERROR_COUNT MKA100:
%DCL-W-IVQUAL, unrecognized qualifier - check validity, spelling, and placement
\RESET\
$
I assume this is because it's such an old version. Is there an equivalent command in V6.2 ?
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-25-2010 03:32 AM
01-25-2010 03:32 AM
Re: How to reset device error count on OpenVMS V6.2-1H3
Zdec works with VMS 6.2
It is listed
http://h71000.www7.hp.com/openvms/freeware/v8_00freeware_abstract.txt
It should be in the disk3 of the VMS Freeware
http://h71000.www7.hp.com/openvms/freeware/
Regards
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-25-2010 03:41 AM
01-25-2010 03:41 AM
Re: How to reset device error count on OpenVMS V6.2-1H3
http://www.tmk.com/ftp/vms-freeware/fileserv/
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-25-2010 03:46 AM
01-25-2010 03:46 AM
Re: How to reset device error count on OpenVMS V6.2-1H3
http://vms.process.com/scripts/fileserv/fileserv.com?CLEAR_ERRORS
Keep in mind that this stuff means a possibility of crashing your machine.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-25-2010 03:48 AM
01-25-2010 03:48 AM
Re: How to reset device error count on OpenVMS V6.2-1H3
How can I find out if it's already installed, and what would be the command to reset the error count?
(Sorry, Unix admin with limited VMS)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-25-2010 03:50 AM
01-25-2010 03:50 AM
Re: How to reset device error count on OpenVMS V6.2-1H3
:-O Definitely not an option.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-25-2010 04:48 AM
01-25-2010 04:48 AM
Re: How to reset device error count on OpenVMS V6.2-1H3
To the best of my knowledge, there is not an HP approved tool existing for VMS 6.2-1H3, and I think there will never be.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-25-2010 05:02 AM
01-25-2010 05:02 AM
Re: How to reset device error count on OpenVMS V6.2-1H3
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-25-2010 05:02 AM
01-25-2010 05:02 AM
Re: How to reset device error count on OpenVMS V6.2-1H3
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-25-2010 01:35 PM
01-25-2010 01:35 PM
Re: How to reset device error count on OpenVMS V6.2-1H3
The other option of course is to simply note the current error count and watch for changes. There's no clear management reason that this should be 0.
Andy
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-25-2010 03:16 PM
01-25-2010 03:16 PM
Re: How to reset device error count on OpenVMS V6.2-1H3
The supported way to clear device error counts in VMS 6.2 is to reboot. As others have said, the change in value is more interesting than absolute error count.
"set device/reset" actually writes an errlog message recording the fact that it reset the device error count. As far as I know, none of the user-contributed error resetting programs do this (and it they did, they probably did it in a different way).
Any software that runs with cmkrnl or cmexec privilege enabled has permission to crash a system. I have used ZDEC and looked at the code and from what I remember, it was written with safeguards in place to prevent crashing the system.
You can also use the kernel debugger DELTA to clear the error counts, and this requires no "extra" software to be installed, but doing that is in my opinion much more dangerous than using a utility like ZDEC.
The safest is to just live with the error counts until you reboot.
Since your example used a tape device, what is your goal in resetting the error count?
Are you trying to determine if the tape drive needs cleaned? If so, depending on the drive there may be better ways to get the info (using SCSI commands passed directly to the tape drive via the MKDRIVER SCSI pass-through).
In our backup command procedures, we get the device error count before backup starts, and again after the backup is complete. The differences are what we want to be aware of. A bad tape, or poor SCSI cable connection can cause a lot of tape errors, but as long as the absolute number does not increase during the backup, then we don't worry about it.
Jon