- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Permission Denied with Automount
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
12-03-2004 02:45 AM
12-03-2004 02:45 AM
Permission Denied with Automount
I've a urgent problem to solve..
automount congigured in that way:
file /etc/rc.config.d/nfsconf
--
AUTO_MASTER="/etc/auto_master"
AUTOFS=1
AUTOMOUNT_OPTIONS="-f $AUTO_MASTER"
--
file /etc/auto_master
--
/net -hosts -nosuid,soft,nobrowse
/- /etc/auto.direct
--
file /etc/auto.direct
--
/mountpoint servername:/directory
--
I try to mount (on the same server) with the command:
..but unsuccessfully:
Permission denied
any suggest?
thanx everybody!
s.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-03-2004 03:05 AM
12-03-2004 03:05 AM
Re: Permission Denied with Automount
on the server you are trying to mount the filesystem, you're still receiving permission denied error? Are you doing this as root? What are the permissions on the file system?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-03-2004 03:13 AM
12-03-2004 03:13 AM
Re: Permission Denied with Automount
servername is a SG package running on the server.
permissions are root root, and I'm root.
tnx.
on the server you are trying to mount the filesystem, you're still receiving permission denied error? Are you doing this as root? What are the permissions on the file system?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-03-2004 03:53 AM
12-03-2004 03:53 AM
Re: Permission Denied with Automount
you configured automounter - so let it do the work: there is no need (and it's wrong) to perform mount commands by yourself.
Do a 'automount -v' (if you use an uptodate version of HP-UX and automouter) to activate probably changed automounter-settings.
Then just do a 'ls /mountpoint' or other commands which access files under that directory to get it mounted.
mfG Peter
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-03-2004 04:27 AM
12-03-2004 04:27 AM
Re: Permission Denied with Automount
mkdir /my_tmp
mount server:/remote/dir /my_tmp
If this fails, then you have a NFS server issue.
Is NFS running on the server?
Is the export created?
What are the permissions on the export?
(on the fileserver type "exportfs -a" and see how it is exporting)
Regards,
Shannon
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-03-2004 04:40 AM
12-03-2004 04:40 AM
Re: Permission Denied with Automount
exportfs -a
# exports the file systems in /etc/exports
exportfs
# will display what is exported and options
Regards,
Shannon
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-03-2004 05:01 AM
12-03-2004 05:01 AM
Re: Permission Denied with Automount
You first need to NFS export the filesystem that you want to mount. Also, the process that you are using is to try automounter, but then you are trying to hard mount the filesystem using the mount command.
Take a look at the doc below on how to setup nfs on hp-ux server,
http://docs.hp.com/cgi-bin/fsearch/framedisplay?top=/hpux/onlinedocs/B1031-90054/B1031-90054_top.html&con=/hpux/onlinedocs/B1031-90054/00/00/6-con.html&toc=/hpux/onlinedocs/B1031-90054/00/00/6-toc.html&searchterms=nfs&queryid=20041203-110020
Hope this helps.
Regds
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-05-2004 10:43 PM
12-05-2004 10:43 PM
Re: Permission Denied with Automount
See You lather...