- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Permissions problems between HP-UX servers
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
03-20-2009 01:29 PM
03-20-2009 01:29 PM
Permissions problems between HP-UX servers
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-20-2009 01:34 PM
03-20-2009 01:34 PM
Re: Permissions problems between HP-UX servers
I assume you used the same numeric IDs?
As user1 (or root), try the id(1) command on both.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-20-2009 02:28 PM
03-20-2009 02:28 PM
Re: Permissions problems between HP-UX servers
What does a ll show on the new server? Does it show user1 or a different number or user?
Try running the chmod command again on the new server.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-20-2009 03:24 PM
03-20-2009 03:24 PM
Re: Permissions problems between HP-UX servers
When you do your recursive 'chown' are you running as root? If not, you may have subordinate directories with overly restrictive permissions that are blocking access to the files therein.
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-20-2009 05:41 PM
03-20-2009 05:41 PM
Re: Permissions problems between HP-UX servers
Thanks for all the suggestions!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-20-2009 05:56 PM
03-20-2009 05:56 PM
Re: Permissions problems between HP-UX servers
The key in the above statement is "files locally on a server." The root user can have issues accessing files on NFS mounts if the directory was exported on the remote machine without allowing root access.
Are all of the files you are copying in local file systems or are there some from NFS mounted file systems?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-20-2009 06:35 PM
03-20-2009 06:35 PM
Re: Permissions problems between HP-UX servers
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-20-2009 06:43 PM
03-20-2009 06:43 PM
Re: Permissions problems between HP-UX servers
The new line should look like:
/qad -root=newserver
Once you make that modification do a:
exportfs -va
I don't know if you would need to unmount and remount on newserver or not, but it can't hurt.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-20-2009 06:49 PM
03-20-2009 06:49 PM
Re: Permissions problems between HP-UX servers
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-20-2009 08:21 PM
03-20-2009 08:21 PM
Re: Permissions problems between HP-UX servers
No, you have exported it as root is nobody.
>already tried a tar ball with no success and guess fbackup/frecover would fail as well).
Why would tar/pax fail?
root should be able to pax them up on the source machine and put it in a read only part of the exported filesystem. Then root on the client should be able to unpax them there to a local filesystem.
- Tags:
- nobody
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-21-2009 11:41 AM
03-21-2009 11:41 AM
Re: Permissions problems between HP-UX servers
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-21-2009 03:56 PM
03-21-2009 03:56 PM
Re: Permissions problems between HP-UX servers
Why not? The user IDs should match across your whole (logical) organization.
(The list of allowed users don't have to match but the IDs should.)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-27-2009 06:23 AM
03-27-2009 06:23 AM
Re: Permissions problems between HP-UX servers
qad -root=newserver
exportfs -va
Thanks everyone.