- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Setting up nfs on newly built workstation
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
11-24-2005 01:49 AM
11-24-2005 01:49 AM
Setting up nfs on newly built workstation
I've just inherited four workstations from a different office. They very kindly installed HP-UX 10.20 on all four of them from the same ignite tape. How do I know this? Two of them won't boot because the processor is too new for the operating system to recognize and the other two have the same machine id! My only recourse is to completely rebuild them.
I have managed to get one of them accessing the network, but not to mount a remote directory. I have done the following:
edited /etc/rc.config.d/nfsconf so that NFS_CLIENT=1, AUTOMOUNT=1, and AUTO_MASTER=/etc/auto_master
edited /etc/auto_master to add the lines
/users auto.users
/vol auto.vol
as per a working workstation
added the directory I want it to mount to /etc/exports on the remote server and rerun exportfs -av
manually created /vol and /tmp_mnt/vol with the same ownership and permissions as a working workstation
rebooted the workstation.
Yet still it tells me that the directory does not exist. I've pored my way through HP's online documentation and looked for similar threads on this forum but can't find anything to help with the problem I've got. Help appreciated.
Mark Syder (like the drink but spelt different)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-24-2005 01:57 AM
11-24-2005 01:57 AM
Re: Setting up nfs on newly built workstation
This is 11i, right?
Perhaps the /etc/exports on the nfs server has hostname/ip limits in its configuration.
It would be helpful to see the configuration files to see if we can spot a problem.
Permissions on the folders you created on the working system same as the ones that don't work?
hostname different
I'd like to see the exact error text if possible.
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
11-24-2005 02:07 AM
11-24-2005 02:07 AM
Re: Setting up nfs on newly built workstation
The exporting server is 11i, the workstation is a 10.20 that I have managed to set up on the network. I'm trying to take an ignite backup over the network prior to installing 11i via ignite.
/etc/exports hostname/ip limits: how would I tell?
Configuration files - I'll post them separately.
Permissions are the same.
Error message: ksh: /vol/ign_backups: not found
Mark
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-24-2005 02:11 AM
11-24-2005 02:11 AM
Re: Setting up nfs on newly built workstation
example:
/share/mysql 192.168.0.41(rw,async,no_root_squash) 192.168.0.40(rw,async,no_root_squash)
/share/web 192.168.0.41(rw,async,no_root_squash) 192.168.0.40(rw,async,no_root_squash)
The mysql and web share above only allow two IP addresses on the internal network access.
Means someone else on the network can't see or change squat. Means if someone manages to get through the firewalls they can't do anything because they didn't come from those hostnames.
This kind of stuff could be responsible for problems with NFS mounts.
Might be some useful data in /var/adm/syslog/syslog.log
:-)
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
11-24-2005 02:12 AM
11-24-2005 02:12 AM
Re: Setting up nfs on newly built workstation
/ign_backups -access=(several group and individual host names separated by colons - all work except for the new one).
Would it perhaps be useful to add the new workstation to one of the groups in netgroup that can see the directory?
Mark
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-24-2005 02:14 AM
11-24-2005 02:14 AM
Re: Setting up nfs on newly built workstation
Definitely no host/ip limit in /etc/exports.
Nothing useful in /var/adm/syslog/syslog.log. I should have mentioned that I'd already looked there!
Mark
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-24-2005 10:00 PM
11-24-2005 10:00 PM
Re: Setting up nfs on newly built workstation
Thanks again for the suggestions Steven.
Mark