- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - OpenVMS
- >
- More info for RMS-E-PRV
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
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
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-03-2005 05:51 AM
тАО06-03-2005 05:51 AM
More info for RMS-E-PRV
Thanks!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-03-2005 06:22 AM
тАО06-03-2005 06:22 AM
Re: More info for RMS-E-PRV
Well, a well behaved VMS application woudl have reported details. For example:
$ set prot=(w,o,g,s) tmp.tmp
$ dir/prot/nohead/notrai/wid=fil=25 tmp.tmp.
U$1:[HEIN]TMP.TMP;12 (,,,)
$ type tmp.tmp
%TYPE-W-OPENIN, error opening U$1:[HEIN]TMP.TMP;12 as input
-RMS-E-PRV, insufficient privilege or file protection violation
If that information is not there, you may want to use the AUDIT subsystem for detailed object access failure reporting.
Something like: $SET AUDIT /ENABLE=ACCESS=FAIL
If to he user with the problem can temporarely be given CMKRNL, then I would use SET WATCH FILE/CLA=MAJOR to see which file cause the problem.
hth,
Hein.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-03-2005 06:36 AM
тАО06-03-2005 06:36 AM
Re: More info for RMS-E-PRV
No offense intended but the message means what it means ... one of the files that is attempted to be accessed is not able to be accessed ...
Can you give us more details ... VMS version, language and version, simple or complicated program, did it ever work before?
How about trying the compile from another user's account ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-03-2005 09:11 AM
тАО06-03-2005 09:11 AM
Re: More info for RMS-E-PRV
$ SHOW AUDIT/ALARM !Note current config
$ REPLY/ENABLE=SECURITY
$ SET AUDIT/ALARM/ENABLE=ACCESS=FAIL
$ SET AUDIT/ALARM/ENABLE=PRIV:FAIL
$ do your compile - you should see messages regarding file access failures or privilege failures.
$ SET AUDIT/ALARM ... !back to original config
You will need at least OPER & SECURITY privs.
You may want to refer to the "OpenVMS Guide to System Security".
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-03-2005 09:29 AM
тАО06-03-2005 09:29 AM
Re: More info for RMS-E-PRV
Thanks to all!