- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- nfs filesystems and links
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-26-2005 05:23 AM
08-26-2005 05:23 AM
I have a files system:
server1> /scratch-local/data/out1 on server1
I have an nfs mounted filesystem on the same server
server1> /scratch-dev
nfspkg45:/scratch-dev
8388608 3541016 4544640 44% /scratch-dev
is there anyway to link the files in server1>/scratch-local/data/out1 to server1>/scratch-dev/data/out1 and view from server2.
ie I create a link from /scratch-dev/data/out1
ln -s /scratch-local/data/out1 logs.
from server2> cd /scratch-local/data/out1/logs
not found:
so I presume from server2 the link /scratch-local/data/out1/logs is being sourced locally from server2
tahnks for any help.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-26-2005 05:45 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-26-2005 05:54 AM
08-26-2005 05:54 AM
Re: nfs filesystems and links
Basically, you have to mount everything that you're trying to get to via symbolic links, and you'd pretty much have to a) mount everything at the same mount points as the primary server,or b) mount them at new mount points to come up with symbolic link scheme that gets you to the same result from the first symbolic link that got brought over with the first nfs mount point.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-26-2005 05:59 AM
08-26-2005 05:59 AM
Re: nfs filesystems and links
server2 has no way of knowing what you have on server1 since the ink is available uder the flesystem but not the destination on server2 it will not work.
If you cross mount ther destination from server1 on to server2, then this will work depending upon the path and rights.
thanks
DP
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-26-2005 08:50 PM
08-26-2005 08:50 PM
Re: nfs filesystems and links
so
on server 2 I have nfs mount /scratch-dev,
nfspkg45:/scratch-dev
8388608 3541328 4544336 44% /scratch-dev
server2> scratch-local > scratch-dev
I want to mount /scracth-local/tssu1gb to server 2
server2>mount server1:/scracth-local/tssu1gb /tempmnt however I am getting the following error:
nfs mount: get_fh: sqfe837a:: RPC: Program not registered
nfs mount: get_fh: sqfe837a:: RPC: Program not registered
nfs mount: retry: retrying(1) for: /tempmnt after 5 second
can i mount server1:/scracth-local/tssu1gb to /scratch-dev as /scratch-dev is already nfs mounted as described above.
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-27-2005 02:15 AM
08-27-2005 02:15 AM
Re: nfs filesystems and links
on server 1 edit /etc/rc.config.d/nfsconf
NFS_CLIENT=1
NFS_SERVER=1
then
/sbin/init.d/nfs.server start
on server2
server2> mount server1:/scratch-local/tssu1gb /scratch-dev/tssu1gb
done!