- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - OpenVMS
- >
- VMS error when set def or dir to logical:[dir]
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
тАО07-16-2004 01:58 AM
тАО07-16-2004 01:58 AM
"ADMIN" = "SYS$SYSDEVICE:[ADMIN]" (LNM$SYSTEM_TABLE)
SET DEF ADMIN:[UTIL]
%DCL-W-DIRECT, invalid directory syntax - check brackets and other delimiters
DIR ADMIN:[UTIL]
%DIRECT-E-OPENIN, error opening ADMIN:[UTIL] as input
-RMS-F-DIR, error in directory name
I origionally encountered this when using a search list logical like sys$sysroot as well. I read that search list logicals are special and the new directory must exist under all the searchable directories or an error will occur..
This should be easy.
Thanks in advance.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-16-2004 02:04 AM
тАО07-16-2004 02:04 AM
Re: VMS error when set def or dir to logical:[dir]
Put a "." at the end (rooted logical)
$defin/system ADMIN SYS$SYSDEVICE:[ADMIN.]
Thanks & regards,
Lokesh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-16-2004 02:07 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-16-2004 02:08 AM
тАО07-16-2004 02:08 AM
Re: VMS error when set def or dir to logical:[dir]
$defin/system ADMIN SYS$SYSDEVICE:[ADMIN.]/tran=conc
Wim
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-16-2004 02:09 AM
тАО07-16-2004 02:09 AM
Re: VMS error when set def or dir to logical:[dir]
http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=618645
and see particularly what John Gillings posted
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-16-2004 02:10 AM
тАО07-16-2004 02:10 AM
Re: VMS error when set def or dir to logical:[dir]
$ show log admin
"ADMIN" = "SYS$SYSDEVICE:[ADMIN.]" (LNM$SYSTEM_TABLE)
1 "SYS$SYSDEVICE:[ADMIN.]" = "ADMIN" (LNM$SYSTEM_TABLE)
2 "ADMIN" = "SYS$SYSDEVICE:[ADMIN.]" (LNM$SYSTEM_TABLE)
3 "SYS$SYSDEVICE:[ADMIN.]" = "ADMIN" (LNM$SYSTEM_TABLE)
4 "ADMIN" = "SYS$SYSDEVICE:[ADMIN.]" (LNM$SYSTEM_TABLE)
5 "SYS$SYSDEVICE:[ADMIN.]" = "ADMIN" (LNM$SYSTEM_TABLE)
6 "ADMIN" = "SYS$SYSDEVICE:[ADMIN.]" (LNM$SYSTEM_TABLE)
7 "SYS$SYSDEVICE:[ADMIN.]" = "ADMIN" (LNM$SYSTEM_TABLE)
8 "ADMIN" = "SYS$SYSDEVICE:[ADMIN.]" (LNM$SYSTEM_TABLE)
9 "SYS$SYSDEVICE:[ADMIN.]" = "ADMIN" (LNM$SYSTEM_TABLE)
$ set def admin
%RMS-F-DIR, error in directory name
$ set def admin:
%RMS-F-DIR, error in directory name
$ set def admin:[util]
%DCL-W-DIRECT, invalid directory syntax - check brackets and other delimiters
Still being weird.. Could you eyeball the syntax above please ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-16-2004 02:15 AM
тАО07-16-2004 02:15 AM
Re: VMS error when set def or dir to logical:[dir]
does the trick. I have been reading on the rooted logicals and still trying to apply the discussion to reality.
the trans=concealed is the ticket.
Apologize for missing that. It now makes sense.
Thanks to all !!!!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-16-2004 02:16 AM
тАО07-16-2004 02:16 AM
Re: VMS error when set def or dir to logical:[dir]
deass/system/exec SYS$SYSDEVICE:[ADMIN.]
deass/system/exec admin
Then give the following command:
DEFIN/SYSTEM/TRAN=CON ADMIN SYS$SYSDEVICE:[ADMIN.]
Best regards,
Lokesh Jain
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-16-2004 02:27 AM
тАО07-16-2004 02:27 AM
Re: VMS error when set def or dir to logical:[dir]
Note also that you can not use concealed devices in the construction of concealed devices. 1 exception : the concealed device pointing to a device.
In other words : only 1 .] may be present in the logical expansion.
Wim
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-16-2004 02:39 AM
тАО07-16-2004 02:39 AM
Re: VMS error when set def or dir to logical:[dir]
Is there a reason to not specify /exec ? I am looking to make this a system wide logical. ( yes I promise to read the doc a little better but want your opinion.
Thanks !
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-16-2004 02:46 AM
тАО07-16-2004 02:46 AM
Re: VMS error when set def or dir to logical:[dir]
I guess earlier you were getting into loop with sho logical command because you were have this logical defined (perhaps you used assign command or just did reverse while defining logical)
sys$sysdevice:[admin.] = admin
So, I posted to deassign it.
Thanks & regards,
Lokesh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-16-2004 02:53 AM
тАО07-16-2004 02:53 AM
Re: VMS error when set def or dir to logical:[dir]
I appreciate all the quick responses !!
Have a great weekend.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-16-2004 02:59 AM
тАО07-16-2004 02:59 AM
Re: VMS error when set def or dir to logical:[dir]
/exec is sometimes required by software like job schedulers (e.g. jams).
Wim
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-16-2004 03:22 AM
тАО07-16-2004 03:22 AM
Re: VMS error when set def or dir to logical:[dir]
Purely Personal Opinion
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-16-2004 03:29 AM
тАО07-16-2004 03:29 AM
Re: VMS error when set def or dir to logical:[dir]
$ SET DEFAULT ADMIN:
Use:
$ SET DEFAULT ADMIN:[000000]
I assume that the definition of ADMIN is correct, of course...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-17-2004 01:28 PM
тАО07-17-2004 01:28 PM
Re: VMS error when set def or dir to logical:[dir]
logicals you use in sysuaf to hide physical devices in login directories are a case where you need to go /sys/exec , else things like Mail will not work.
Greetings, Martin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-18-2004 10:42 AM
тАО07-18-2004 10:42 AM
Re: VMS error when set def or dir to logical:[dir]
That this isn't explicitly documented in current manuals is an oversight. Expect it to be corrected in future documentation.