- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: YP Access
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-2003 09:22 PM
11-24-2003 09:22 PM
YP Access
HP-UX server previously running 10.20, now running 11i. I've got it working to the point that I can see everything on the non-root disc and I can log in from my desktop. The users, however, are thrown straight out when they try to access.
I'm pretty certain that yp/NIS is the problem here. They're not actually logging in to this server, but their user accounts are held on it. I've run exportfs to make sure the accounts directory is available and I've been copying files back from a safe area.
Any processes that should be running that I may have missed?
Mark Syder (like the drink but spelt different)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-24-2003 09:33 PM
11-24-2003 09:33 PM
Re: YP Access
http://www4.itrc.hp.com/service/cki/docDisplay.do?docLocale=en_US&docId=200000062684173
Steps to setup a NIS Master Server, NIS Slaves, and NIS Clients
Regards,
Robert-Jan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-24-2003 09:40 PM
11-24-2003 09:40 PM
Re: YP Access
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-24-2003 10:19 PM
11-24-2003 10:19 PM
Re: YP Access
Any ideas how to resolve this one?
Mark
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-24-2003 10:24 PM
11-24-2003 10:24 PM
Re: YP Access
Locale homedir or automount ?
RJ
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-24-2003 10:33 PM
11-24-2003 10:33 PM
Re: YP Access
Mark
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-24-2003 10:37 PM
11-24-2003 10:37 PM
Re: YP Access
I've just tried a yppush from the master server and got the error message "No response from ypxfr on xxxxxxx" where xxxxxxxx is the server I've just upgraded.
Mark
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-25-2003 03:18 AM
11-25-2003 03:18 AM
Re: YP Access
It was a sys admin person in our head office who finally came up with the answer, so I'm afraid no one gets 10 points - but your suggestions did get me nearer to the solution, so I'm giving credit where it's due.
Thanks again,
Mark
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-25-2003 07:30 AM
11-25-2003 07:30 AM
Re: YP Access
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-25-2003 07:42 PM
11-25-2003 07:42 PM
Re: YP Access
Mark
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-25-2003 10:42 PM
11-25-2003 10:42 PM
Re: YP Access
1. The server is a NIS slave but did not have all its maps. Found what maps were missing and used ypxfer to copy them over. The -f says to force the copy:
ypxfr -h (master server name) -f auto.master
only one example attached, but I'm sure you get the picture.
2. Changed the /etc/rc.config.d/nfsconf file thus:
added -C to LOCKD_OPTIONS
added "-l /var/adm/rpc.mountd.log" to MOUNTD_OPTIONS
set NFS_TCP=0
set AUTOFS=0 so the new AutoFS automount will NOT be used (allegedly it is bug ridden).
3. Added lines to the /etc/nsswitch.conf file so it looks like this:
hosts: files [NOTFOUND=continue] dns [NOTFOUND=continue] nis [NOTFOUND=continue] files
services: files [NOTFOUND=continue] nis
passwd: compat
group: compat
it previously had only the hosts line. This lets NFS see the defined port to be used for nfsd as it is not defined in the NIS services map, but only in the file /etc/services.
He then stopped and restarted the NFS mount daemon and all was well with the world (well, the server anyway!).
If this helps someone else do I get my first points :-).
Mark