- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Permission denied. Mounting a remote /cdrom
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
08-23-2006 04:36 AM
08-23-2006 04:36 AM
Permission denied. Mounting a remote /cdrom
Server number 1 (With the CDROM)
/etc/exports
/cdrom -anon=65534,ro,root=msc00
when I do a export /cdrom
sh: /cdrom: This is not an identifier.
export cdrom seems to work.
But when I go to server 2 to and do a
root@msc00-> mount -F nfs server1:/cdrom /cdrom
I get Permission denied
I am not sure what is happening.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-23-2006 04:39 AM
08-23-2006 04:39 AM
Re: Permission denied. Mounting a remote /cdrom
"export cdrom" says export the variable "cdrom" so that it is available to all child processes.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-23-2006 04:43 AM
08-23-2006 04:43 AM
Re: Permission denied. Mounting a remote /cdrom
To make the export permanent, add a line to /etc/exports, and run 'exportfs -a'.
PCS
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-23-2006 04:43 AM
08-23-2006 04:43 AM
Re: Permission denied. Mounting a remote /cdrom
The ommand 'export' is a shell command to export a variable into your environment.
The message "...is not an identifier" when you specify "/cdrom" is because a valid identified can't begin with a slash. When you dropped the slash and did "export cdrom" you did'nt get any error simply because the command *was* valid. You exported an empty variable named "cdrom" into your shell environment!
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-23-2006 04:50 AM
08-23-2006 04:50 AM
Re: Permission denied. Mounting a remote /cdrom
To be certain the filesystem is exported correctly I'd recommend the following:
On the server: cat /etc/xtab
On the client: showmount -e
The /etc/xtab file contains a copy of what the server's kernel believes are the exported filesystems, regardless of what is in the /etc/exports file or what exportfs command was issued.
The showmount -e command on the client will not only verify that the server has exported filesystems but that the client is able to communicate with the server's rpc.mountd daemon to get the list of exported filesystems remotely.
If both of these commands show the /cdrom filesystem is exported properly and the mount is still not working then I can give you a set of steps to collect more data to identify the underlying problem.
Regards,
Dave
I work at HPE
HPE Support Center offers support for your HPE services and products when and how you need it. Get started with HPE Support Center today.
[Any personal opinions expressed are mine, and not official statements on behalf of Hewlett Packard Enterprise]

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-23-2006 05:21 AM
08-23-2006 05:21 AM
Re: Permission denied. Mounting a remote /cdrom
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-28-2006 10:45 PM
08-28-2006 10:45 PM
Re: Permission denied. Mounting a remote /cdrom
Remove the /cdrom directory on client and recreate and mount it again.It will work