- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- /etc/exports permissions
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
09-27-2000 09:10 AM
09-27-2000 09:10 AM
/etc/exports permissions
/vol1 -anon=65534,async,root=hp3
/oracle/backup -anon=65534,async
/var/opt/ignite/clients -anon=2,async,ro
I want to give oradba and root rw access and everyone else ro.
How do I do this?
Thanks in advance!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-27-2000 09:14 AM
09-27-2000 09:14 AM
Re: /etc/exports permissions
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-27-2000 09:42 AM
09-27-2000 09:42 AM
Re: /etc/exports permissions
do a chmod -R 711 on all the filesystems
use root=hp3 and
rw=hp3
now when these are mounted the machine hp3 will have full root access and oradba will have rw access but all others will only have read only access.
i.e rwxr--r--
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-27-2000 10:34 PM
09-27-2000 10:34 PM
Re: /etc/exports permissions
chmod -R 711 is wrong, 744 is correct; however, this would hit directories too.
Better is:
find /mydir -type f -exec chmod u=rwx,g=r,o=r {} ;
NOTE: assuming the files are owned by oradba:dba, you will have also locked out all other accounts in the group 'dba'.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-28-2000 01:48 AM
09-28-2000 01:48 AM
Re: /etc/exports permissions
Take a backup first!!
I would advise caution in chmod-ing files if this directory contains an application like the Oracle rdbms.
Permissions on this are set correctly as designed by Oracle and changing them is very likely to cause the application to fail.
If this contains Oracle data files, then just check the database still starts after changing the permissions, and restore from the backup if there are any problems.
Chris