- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Not able to access the another machine mount point...
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-22-2003 09:38 PM
12-22-2003 09:38 PM
Not able to access the another machine mount point.
I have a problem here like i am having 2 machine name it as test45(9000/889/K360)and test37(9000/785/J6000). I have exported the "/" and "/TEST"(its a separate harddisk) dirs in test45.
/
/TEST
when i tried to mount the dir as follows
sh: /net/test45: not found.
In test45 automount is running and nfs daemons also running.
What could be the reson. While surf in the net i found to do the following steps
/sbin/init.d/nfs.core stop
/sbin/init.d/nfs.client stop
/sbin/init.d/nfs.server stop
/sbin/init.d/nfs.core start
/sbin/init.d/nfs.client start
/sbin/init.d/nfs.server start
but still its not working.
Can anybody help me in this regards.
Thanks in Advance
Prasath C
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-22-2003 09:47 PM
12-22-2003 09:47 PM
Re: Not able to access the another machine mount point.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-22-2003 09:49 PM
12-22-2003 09:49 PM
Re: Not able to access the another machine mount point.
Also for automounter you need create the maps files
/etc/auto.direct
and then put entries in
/etc/auto_master
Let me know what you want to acheive
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-22-2003 10:32 PM
12-22-2003 10:32 PM
Re: Not able to access the another machine mount point.
I am trying to mount the dirs vai automount.
I have the /etc/auto_master file.
But i don't have the file /etc/auto.direct.
/net -hosts -soft
/net -hosts -soft
Any guess how to proceed.
Thanks in Advance
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-22-2003 11:50 PM
12-22-2003 11:50 PM
Re: Not able to access the another machine mount point.
This sounds like a name resolution issue. The not found is refering to the hostname. You are using the default built in map /net so you don't need to set up an alternate map file in /etc/ unless you decide to do that. Verify your name service is set up correctly, /etc/hosts, dns, nis etc. and that your /etc/nsswitch.conf file has files first for the hosts entry.
Here is an example host line for a server using DNS and /etc/hosts resolution.
# cat /etc/nsswitch.conf
hosts: files [NOTFOUND=continue] dns
Verify your name resolution works, you want to reference whichever format of the hostname that responds to nslookup, meaning either the fully qualified name or the shortname.
From test37:
# nslookup test45
Do you get an answer? and in what format.
From test37
Verify you can see what test45 is exporting, test using the format returned from nslookup, you can test with the IP address also.
# showmount -e test45.domain.com
If this fails, verify test45 is running /usr/sbin/rpc.mountd and /usr/sbin/nfsd. These are started with the nfs.server scripts you referenced.
If the above works, test manually mounting the file as referenced earlier as root.
# mkdir /testmnt
# mount test45.domain.com:/TEST /testmnt
Does this work?
If this works, umount it and test automount again.
# cd /net/test45.domain.com
The key is to get name resolution working or to use the correct name.
If you still have problems reference the troubleshooting section of this manual.
http://www.docs.hp.com/hpux/onlinedocs/B1031-90048/B1031-90048.html
Hope this helps
Todd
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-27-2003 05:05 AM
12-27-2003 05:05 AM
Re: Not able to access the another machine mount point.
If this works, check whether u have configured the test 37 as nfs client. if not do ..
test 37#/sbin/init.d/nfs.client start
You can try mounting the directory /test using the followng options
#mount -F nfs test45:/test /testdir.