- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - OpenVMS
- >
- Re: CSWS and logicals
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-14-2004 03:21 PM
01-14-2004 03:21 PM
CSWS and logicals
Will SWS only translate system logicals used in directory/alias definitions ?
Why will it not pick up group logicals ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-14-2004 05:05 PM
01-14-2004 05:05 PM
Re: CSWS and logicals
You can edit the LOGIN.COM for the apache$www account und insert process or job logicals, e.g. we switched to the HP supplied PERL images.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-14-2004 05:19 PM
01-14-2004 05:19 PM
Re: CSWS and logicals
I defined a logical group wide, created the Apache alias and tested. Apache couldn't find the directory/file when I browsed to it.
I changed the logical to be a system logical and it all worked.
For my purposes, however, I would like to use group logicals.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-14-2004 05:39 PM
01-14-2004 05:39 PM
Re: CSWS and logicals
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-15-2004 12:37 PM
01-15-2004 12:37 PM
Re: CSWS and logicals
It sounds like you've solved your immediate problem by finding the right group logical name table.
Anticipating a problem you may come up against in the future, here's a solution before you even know about the problem :-)
How to define group logical names for arbitrary groups at system startup time?
This is an issue because a group table for a particular group will not exist until a process within that group has been created. During system startup, no other processes have been started, so the only group table in existence is LNM$GROUP_000001 (SYSTEM group).
Fortunately you can create the group table by starting a process under any UIC within the group. There doesn't even need to be a matching UAF entry, and it doesn't matter if the process fails. For example, for group 200 (requires IMPERSONATE privilege) :
$ RUN/UIC=[200,0] nl:
$ DEFINE/TABLE=LNM$GROUP_000200 name value
The detached process created by the RUN command will fail immediately with %SYSTEM-W-ENDOFFILE (since it's trying to execute the null device), but will cause the table to be created.
Hope this helps!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-15-2004 12:50 PM
01-15-2004 12:50 PM
Re: CSWS and logicals
We currently do this by submitting batch jobs under a special user in the group we are setting up logicals for (the user is used for other things too, not just setting up logicals). It hadn't occured to me to do it the way you mention, but that could be a handy tip for the future.