LinuxQuestions.org
Latest LQ Deal: Latest LQ Deals
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Server
User Name
Password
Linux - Server This forum is for the discussion of Linux Software used in a server related context.

Notices


Reply
  Search this Thread
Old 07-03-2008, 01:18 PM   #1
crazymoonboy
LQ Newbie
 
Registered: Oct 2006
Posts: 3

Rep: Reputation: 0
Unable to login to NIS client machine(Ubuntu) using NIS login user name


Hi Friends,

I configured NIS server in Fedora 9 and is working fine.

I configured NIS client in Ubuntu and it is able to bind the NIS server.

In my NIS client machine:
1) "ypcat passwd" is showing all users passwords in NIS server.
2) "id nisuser" is showing the uid, gid and group values.

But, I am unable to login to my client machine using NIS login user name.

Can anybody suggest me a solution?

Thanks in advance.

Regards,
Chandramouli
 
Old 07-06-2008, 10:39 PM   #2
Mr. C.
Senior Member
 
Registered: Jun 2008
Posts: 2,529

Rep: Reputation: 63
What does your /etc/nsswitch.conf file look like?
 
Old 02-09-2009, 06:03 AM   #3
engelienart
Member
 
Registered: Feb 2009
Location: Netherlands
Distribution: Kubuntu, Debian
Posts: 73

Rep: Reputation: 16
Hi, I could start a topic of my own, but it seems to me, this thread asks the same question I want to ask:

I have NIS client working on a Ubuntu Workstation
I have NIS server working on a Ubuntu Server

1) "ypcat passwd" is showing all users passwords in NIS server.

2) "id %NISUSER%" says: "id: %NISUSER%: unknown user"

But, I am unable to login to my client machine using NIS login user name.

I find it difficult to explain myself: I want after a reboot, the Workstation most ask for a username and password. I want to be able to provide my username and password of a user of the server and after that, I will be able to see my home directory (and some shares/ or what ever they are called in Linux). If I am a member of the group ICT, I want to be able to see the ICT share and have a desktopicon that is linked to the share.

I am used to Windows NT 4.0 (lets all point at me and laugh) with Windows NT server, workstation and a NT domain. Currently I have a Ubuntu Server which runs a samba server, so my Windows XP workstations can logon a NT domain of the samba server.

If somebody would tell me what I am doing wrong, please do.

I forgot the /etc/nsswitch.conf:


Code:
# /etc/nsswitch.conf
#
# Example configuration of GNU Name Service Switch functionality.
# If you have the `glibc-doc' and `info' packages installed, try:
# `info libc "Name Service Switch"' for information about this file.

passwd:         compat
group:          compat
shadow:         compat

hosts:          files dns mdns
networks:       files

protocols:      db files
services:       db files
ethers:         db files
rpc:            db files

netgroup:       nis

Last edited by engelienart; 02-09-2009 at 06:56 AM.
 
Old 02-10-2009, 06:32 AM   #4
engelienart
Member
 
Registered: Feb 2009
Location: Netherlands
Distribution: Kubuntu, Debian
Posts: 73

Rep: Reputation: 16
I am bumping this thread, because I still don't have an answer. I still have no clue what I have done wrong.
 
Old 08-26-2009, 08:20 AM   #5
gouthamtrip
LQ Newbie
 
Registered: Aug 2009
Posts: 1

Rep: Reputation: 0
ubuntu Unknown id: nis client problem

Hi,

Try to add nis beside the compat parameter...below is the example nsswitch config file on ubuntu client system:

passwd: compat nis
group: compat nis
shadow: compat nis

#hosts: files mdns4_minimal [NOTFOUND=return] nis dns mdns4
networks: files

protocols: db files
services: db files
ethers: db files
rpc: db files

netgroup: nis

#--------------------------------------------

now test it with command:
root@red:~#yptest (you should see nis users list )
root@red:~# id test <test is the username on nisserver>

Regards,

Goutham T


Quote:
Originally Posted by engelienart View Post
Hi, I could start a topic of my own, but it seems to me, this thread asks the same question I want to ask:

I have NIS client working on a Ubuntu Workstation
I have NIS server working on a Ubuntu Server

1) "ypcat passwd" is showing all users passwords in NIS server.

2) "id %NISUSER%" says: "id: %NISUSER%: unknown user"

But, I am unable to login to my client machine using NIS login user name.

I find it difficult to explain myself: I want after a reboot, the Workstation most ask for a username and password. I want to be able to provide my username and password of a user of the server and after that, I will be able to see my home directory (and some shares/ or what ever they are called in Linux). If I am a member of the group ICT, I want to be able to see the ICT share and have a desktopicon that is linked to the share.

I am used to Windows NT 4.0 (lets all point at me and laugh) with Windows NT server, workstation and a NT domain. Currently I have a Ubuntu Server which runs a samba server, so my Windows XP workstations can logon a NT domain of the samba server.

If somebody would tell me what I am doing wrong, please do.

I forgot the /etc/nsswitch.conf:


Code:
# /etc/nsswitch.conf
#
# Example configuration of GNU Name Service Switch functionality.
# If you have the `glibc-doc' and `info' packages installed, try:
# `info libc "Name Service Switch"' for information about this file.

passwd:         compat
group:          compat
shadow:         compat

hosts:          files dns mdns
networks:       files

protocols:      db files
services:       db files
ethers:         db files
rpc:            db files

netgroup:       nis
 
Old 11-26-2009, 08:13 PM   #6
OldManWinter
LQ Newbie
 
Registered: Nov 2009
Distribution: RHEL
Posts: 2

Rep: Reputation: 0
I realise this is a little late, but after adding users to the NIS server or changing their passwords you need to go into /var/yp on the nis server and run make to rebuild the NIS database.
 
Old 11-26-2009, 10:15 PM   #7
chrism01
LQ Guru
 
Registered: Aug 2004
Location: Sydney
Distribution: Rocky 9.2
Posts: 18,359

Rep: Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751
There's a nice clear NIS howto here: http://www.linuxhomenetworking.com/w...onfiguring_NIS
 
Old 11-27-2009, 02:29 AM   #8
engelienart
Member
 
Registered: Feb 2009
Location: Netherlands
Distribution: Kubuntu, Debian
Posts: 73

Rep: Reputation: 16
Ok, thanx. I 'll read some more.
 
Old 05-08-2015, 04:44 AM   #9
somanath naik
LQ Newbie
 
Registered: May 2015
Posts: 3

Rep: Reputation: Disabled
Question not able to login to NIS client using NIS suer

Guys,

I am not able to login to NIS client using NIS suer, can some body do help me.

Thanks
Somanath
 
Old 05-08-2015, 06:12 AM   #10
somanath naik
LQ Newbie
 
Registered: May 2015
Posts: 3

Rep: Reputation: Disabled
Quote:
Originally Posted by somanath naik View Post
Guys,

I am not able to login to NIS client using NIS suer, can some body do help me.

Thanks
Somanath
Open up /etc/nsswitch.conf and make sure the following portion looks like this:


Code:
..

passwd nis files
group nis files
shadow nis files

..
 
Old 05-08-2015, 07:28 AM   #11
jpollard
Senior Member
 
Registered: Dec 2012
Location: Washington DC area
Distribution: Fedora, CentOS, Slackware
Posts: 4,912

Rep: Reputation: 1513Reputation: 1513Reputation: 1513Reputation: 1513Reputation: 1513Reputation: 1513Reputation: 1513Reputation: 1513Reputation: 1513Reputation: 1513Reputation: 1513
not absolutely certain of this, but that order used to be a security hole:

The order normally would have "files nis" rather than "nis files". With nis first it would allow a root password to be bypassed. With files first, the system will not use nis for any account that has a local entry.
 
1 members found this post helpful.
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
NIS Client can not login to NIS Master Server Free_beer Ubuntu 3 10-09-2006 02:57 PM
NIS client login "cannot find user name for user ID" danielbourne Linux - Networking 2 08-24-2006 04:16 AM
NIS prob: added user to server, but can't login to client BrianK Linux - General 3 10-06-2004 04:29 PM
nis client machine can't log in using nis username preetam Linux - Networking 0 02-09-2004 04:40 PM
nis client login - user home dir not fnd synfield Linux - Networking 0 03-27-2003 03:51 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Server

All times are GMT -5. The time now is 11:00 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration