- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Mounting Remote file system
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-07-2007 12:12 AM
03-07-2007 12:12 AM
mount -F vxfs 10.162.185.7:/dev/vg01/lvol2 /n01 but confronted with following error
mount: /n01: No such file or directory.
Could somebody please hassle free way to resolve the issue.
Regards,
Mehul
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-07-2007 12:19 AM
03-07-2007 12:19 AM
Re: Mounting Remote file system
server 10.162.185.7
/dev/vg01/lvol2 /n01
# cat /etc/exports
check if above filesystem (/n01)is the exports file.
Serverb
mkdir /no1
mount -F nfs 10.162.185.7:/no1 /no1
Regards,
Robert-Jan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-07-2007 12:25 AM
03-07-2007 12:25 AM
Re: Mounting Remote file system
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-07-2007 01:07 AM
03-07-2007 01:07 AM
Re: Mounting Remote file system
so use -F nfs, even it's not really needed ..
Don't mount the remote LV volume, but the remote mount point of this LV
Export on the remote side (NFS server) the directory to tour NFS client
On the client, create the directory on which you are going to mount the remote dir ...
mkdir /dir2
mount xx.yy.zz.ww:/dir1 /dir2
cd /dir2
ls
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-07-2007 01:19 AM
03-07-2007 01:19 AM
Re: Mounting Remote file system
1. check if your nfs is configured.
2. add the entry of the directory you want to mount in the /etc/exports file on the remote server.
3. do exportfs -a
4. mount the file system. also there isn't any need to use the -F option with mount. it works perfectly fine without it.
regards
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-07-2007 03:41 PM
03-07-2007 03:41 PM
Re: Mounting Remote file system
# cat /etc/exports
cat: Cannot open /etc/exports: No such file or directory
Regards,
Mehul
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-07-2007 07:47 PM
03-07-2007 07:47 PM
Re: Mounting Remote file system
# vi /etc/exports
/n01 -rw -root=[remote_host]
:wq
# /usr/sbin/exportfs -a
On remote_host
# mkdir /n01
# mount -F nfs 10.162.185.7:/n01 /n01
Regards,
Robert-Jan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-09-2007 09:19 PM
03-09-2007 09:19 PM
Re: Mounting Remote file system
regards,
Mehul
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-09-2007 09:56 PM
03-09-2007 09:56 PM
Re: Mounting Remote file system
# vi /etc/exports
n01 -rw -root=srsux004
:wq!
# exportfs -a
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-10-2007 05:52 AM
03-10-2007 05:52 AM
Re: Mounting Remote file system
http://www.docs.hp.com/en/5991-1154/index.html
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-11-2007 04:02 PM
03-11-2007 04:02 PM
Re: Mounting Remote file system
exportfs error: unknown option:
rw-root=srsux004
Regards,
Mehul
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-11-2007 04:29 PM
03-11-2007 04:29 PM
Re: Mounting Remote file system
This should work fine.
# vi /etc/exports
n01 -root=srsux004 #root access to srsux004
:wq!
# exportfs -a
sunny
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-14-2007 09:41 PM
03-14-2007 09:41 PM
Re: Mounting Remote file system
Pl, help me in this regard.
Regards,
Mehul
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-14-2007 09:53 PM
03-14-2007 09:53 PM
Re: Mounting Remote file system
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-15-2007 12:52 AM
03-15-2007 12:52 AM
Re: Mounting Remote file system
mount -F nfs -o rsize=32768,wsize=32768 10.162.185.7:/arch /u01
I got error message "permission denied"
(Note: entry in exports
/u01 rw-root=srsux004)
Regards
Mehul
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-15-2007 01:20 AM
03-15-2007 01:20 AM
Re: Mounting Remote file system
/u01 rw-root=srsux004)
Try this one
/u01 -rw access=srsux004,root=srsux004
exportfs -a
RJ
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-15-2007 11:51 PM
03-15-2007 11:51 PM
Re: Mounting Remote file system
Still I confronted with same error. I entered the same what you have suggested in export file as following
/u01 rw- access=srsux004,root=srsux004
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-16-2007 04:46 AM
03-16-2007 04:46 AM
Re: Mounting Remote file system
try to share to all for test:
vi /etc/exports
/n01 -rw
:wq!
if NFS server is not started, start it on nfs server:
/sbin/init.d/nfs.server start
on clilent, retry to mount using ip addr not the name of the server, for ex:
mount -F nfs 10.10.10.10:/n01 /n01
bye
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-16-2007 04:55 AM
03-16-2007 04:55 AM
Re: Mounting Remote file system
>mount -F nfs -o rsize=32768,wsize=32768 10.162.185.7:/arch /u01
>I got error message "permission denied"
>(Note: entry in exports
other question!!:
if you export on nfs server (10.162.185.7) /u01
on the client youmust mount what you share.
You must mount /u01 like this:
mount -F nfs 10.162.185.7:/u01 /u01
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-16-2007 09:06 PM
03-16-2007 09:06 PM
Re: Mounting Remote file system
Regards,
Mehul
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-17-2007 03:51 AM
03-17-2007 03:51 AM
SolutionOk, let's take this step by step.
On the NFS server, I want to see the following:
1) bdf - show me exactly which filesystem you're wanting to share
2) cat /etc/exports
3) cat /etc/xtab
Once I know the server is setup correctly then we'll move to the client.
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
03-21-2007 10:37 PM
03-21-2007 10:37 PM
Re: Mounting Remote file system
Pl, accept my apologies for not being reply to anyone because I am on leave.
Providing you a more information of what you expected.Pl, refer attached doc
Regards,
Mehul
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-22-2007 02:10 AM
03-22-2007 02:10 AM
Re: Mounting Remote file system
# cat /etc/exports
/arch rw- access=srsux004,root=srsux004
# cat etc/xtab
/n01 -access=rw-root=srsux004
/u01 -access=rw-:access=srsux004,root=srsux004
/arch -access=rw-:access=srsux004,root=srsux004
I think the problem is the syntax you're using to export the filesystems. The "rw- access=..." looks bogus. Also, if you only want /arch exported you should get rid of the other two exported filesystems from the kernel's export table (represented by /etc/xtab).
Here is what I suggest:
1. Unexport everything
# exportfs -uav
2. Modify the /etc/exports entry for /arch
/arch -access=srsux004,root=srsux004
3. Re-export /arch
# exportfs -av
4. Verify that /arch is exported correctly
# cat /etc/xtab
/arch -access=srsux004,root=srsux004
5. Verify that the NFS server resolves the hostname srsux004 to the proper IP address used by the client to send NFS requests. It doesn't matter if you use /etc/hosts, NIS, DNS, LDAP, etc. for hostname resolution, the NFS server needs to resolve the string "srsux004" to the correct IP address in order to grant the mount request and subsequent NFS requests.
Once you've done all this, try mounting the filesystem again from srsux004. If it fails, do a cut/paste of the screen and let me see exactly what it says, including your mount command syntax.
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
03-22-2007 02:14 AM
03-22-2007 02:14 AM
Re: Mounting Remote file system
My 2 shekel.
showmount -e hostname
If the hostname is the remote host you will see exactly what folders are exported on the remote system. If they exist and there are no permissions blocks in /etc/exports, the mount should be excessive.
Hassle free way to resolve the issue? Little concerning NFS is hassle free.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-22-2007 07:04 PM
03-22-2007 07:04 PM
Re: Mounting Remote file system
I did so far exactly what you have suggested but once again failed when I fire cat /etc/xtab and not a single entry found in this file. Following is the snapshot for your referance.
# cat /etc/exports
/arch-access=srsux004,root=srsux004
# cat /etc/xtab
#
Regards,
Mehul