NIS created users without a home directory

 
Thread Tools Search this Thread
Homework and Emergencies Emergency UNIX and Linux Support NIS created users without a home directory
# 1  
Old 05-27-2014
Wrench NIS created users without a home directory

Hi all,

So I have created two Centos machines. One is configured as a NIS master and the second is a NIS cleint. The NIS configs are all working perfectly.

I created a user nisuser on NIS Master and I can use it on the client. BUT it doesnt show a home directory . Ive been told there is something else like automount of autfs that I need to configure that will automount the home directory onto any client. I havent done any such configs.

Can you guys guide me as to what exactly I need to study or redirect me to a good tutorial ?

Regards
# 2  
Old 05-27-2014
You're confounding NIS with NFS. The former allows hosts to share information services such as the user database and hostnames. The latter allows home directories to be shared (for instance).

The NIS Master and NFS master do not have to be the same host, but it's not unsual to make it so. On the NFS Master, you install the nfs tools and start the nfs service. You modify /etc/exports (man 5 exports) to tell NFS to export some path, ie /home:
Code:
/home  *(rw,no_root_squash)

On the other host, you modify /etc/fstab
Code:
... (previous fstab entries)
master:/home  /home    nfs  rw

Where "master" is the hostname of your NFS master. Then run mount:
Code:
# mount -a -t nfs

Let's say you have a user Joe, who is listed in the NIS user database and has a home directory on host "master" as /home/joe. When you login on the "client" host as user Joe, the home directory should be available. If the login process hangs or you get the error "No such directory" then something went wrong.

Last edited by otheus; 05-27-2014 at 05:35 PM.. Reason: fixed field reversal for fstab
This User Gave Thanks to otheus For This Post:
# 3  
Old 05-27-2014
I agree yo what you have said. But this is nfs. I am more interested in using automount/autofs. Can you guide me in that regard ?
# 4  
Old 05-27-2014
So autofs builds on NFS in the way that each directory will be mounted "on demand" and unmounted after a few minutes of inactivity. It is largely a pointless technology, but it still has its uses. The server set up is essentially the same. For the client setup, don't use the fstab entry, but rather, configure autofs and enable the autofs daemon with chkconfig.

I haven't done this in a while, but the following might work:
/etc/auto.master
Code:
/home /etc/auto.home --timeout 600

To /etc/auto.home:
Code:
* -fstype=nfs master:/home/&

Then restart autofs

---------- Post updated at 10:46 PM ---------- Previous update was at 10:44 PM ----------

Here's a concise set of examples.
http://www.linux-consulting.com/Amd_.../autofs-5.html
# 5  
Old 05-27-2014
Here is my client side configuration:

Code:
[root@Barium home]#
[root@Barium home]# cat /etc/auto.master
/home /etc/auto.home --timeout 600
[root@Barium home]# cat /etc/auto.home
* -fstype=nfs 192.168.1.10:/home/&
[root@Barium home]# ypwhich
Titanium
[root@Barium home]# cat /etc/hosts | grep Titanium
192.168.1.10 Titanium
[root@Barium home]# ypcat passwd
nisuser:$6$LZhXWN9NSvbnUZcu$Iryf0Xiez0GNBQAMzdUNpdA/.1kJIYiO.DnivPiUMPcV09J6jUBdqFDom51J5Ieo2w1h63SkhcNAK5TC6IxUu/:500:100::/home/nisuser:/bin/bash
[root@Barium home]#
[root@Barium home]#
[root@Barium home]# su - nisuser
su: warning: cannot change directory to /home/nisuser: No such file or directory
-bash-4.1$

Seems like it isnt working.
# 6  
Old 05-27-2014
There is a caveat to working with autofs: The top-level directory must not exist before autofs is started. Try this (on the client): NOTE: THIS WILL DESTROY EVERYTHING IN /HOME ON THE CLIENT

Code:
service autofs stop
rm -rf /home
service autofs start

Then su - nisuser
# 7  
Old 05-27-2014
It just went crazy :/

Code:
[root@Barium home]# service autofs stop
Stopping automount:                                        [  OK  ]
[root@Barium home]# rm -rf /home
[root@Barium home]# service autofs start
shell-init: error retrieving current directory: getcwd: cannot access parent directories: No such file or directory
chdir: error retrieving current directory: getcwd: cannot access parent directories: No such file or directory
Starting automount:                                        [  OK  ]
[root@Barium home]# su - nisuser
su: warning: cannot change directory to /home/nisuser: No such file or directory
shell-init: error retrieving current directory: getcwd: cannot access parent directories: No such file or directory
job-working-directory: error retrieving current directory: getcwd: cannot access parent directories: No such file or directory
job-working-directory: error retrieving current directory: getcwd: cannot access parent directories: No such file or directory
job-working-directory: error retrieving current directory: getcwd: cannot access parent directories: No such file or directory
job-working-directory: error retrieving current directory: getcwd: cannot access parent directories: No such file or directory
job-working-directory: error retrieving current directory: getcwd: cannot access parent directories: No such file or directory
job-working-directory: error retrieving current directory: getcwd: cannot access parent directories: No such file or directory
job-working-directory: error retrieving current directory: getcwd: cannot access parent directories: No such file or directory
job-working-directory: error retrieving current directory: getcwd: cannot access parent directories: No such file or directory
job-working-directory: error retrieving current directory: getcwd: cannot access parent directories: No such file or directory
job-working-directory: error retrieving current directory: getcwd: cannot access parent directories: No such file or directory
job-working-directory: error retrieving current directory: getcwd: cannot access parent directories: No such file or directory
job-working-directory: error retrieving current directory: getcwd: cannot access parent directories: No such file or directory
-bash-4.1$

Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. HP-UX

How to set variable for users with no home directory?

Hi I need to set $HISTFILE for a user with no home directory. How to go about it because this user does not have a .profilefile. (5 Replies)
Discussion started by: fretagi
5 Replies

2. UNIX for Advanced & Expert Users

Permissions on a directory in /home for all users

Hi, I have created a shared directory on /home, where all users on a certain group have read, write and execute permissions. I did this using chmod -R g+rwx /home/shared/ The problem is, when a particular user creates a directory within /home/shared, other users are not able to write to... (8 Replies)
Discussion started by: lost.identity
8 Replies

3. UNIX for Dummies Questions & Answers

User's home directory not being created

I am trying to create Oracle user. I will install oracle after that. But my problem is /home/oracle directory is not being created. bash-3.2# useradd -g oinstall -G dba,oper -d /home/oracle -m oracle cp: /home/oracle: Operation not applicable chown: /home/oracle: No such file or directory ... (3 Replies)
Discussion started by: hubatuwang
3 Replies

4. Red Hat

SSH lock users to the Home Directory

Hi friends, I must to give ssh connection to own customer. So I want to lock ssh user on own home directory. It is not necessery to reach other folders. I know that ftp user can lock on own folder but I don't know how to lock ssh user. I am waitting your kindly helps :D ---------- Post... (10 Replies)
Discussion started by: getrue
10 Replies

5. UNIX for Advanced & Expert Users

about the access permission of users home directory

RHEL5.0 As we know, when root create a new user, a new home directory will be created : /home/user I want to know what determine the access permission of /home/user . Thanks! (1 Reply)
Discussion started by: cqlouis
1 Replies

6. Solaris

Common Home directory for different users??

Hi Guys, I have a problem with configuring a server. this is a solaris 10 with sparc platform. I have setup so that the server is Authenticating through NIS but I dont want the server to Mount the Home directories. The users need to logged in through the CDE/display. I have over 200 users... (2 Replies)
Discussion started by: Luky
2 Replies

7. UNIX for Dummies Questions & Answers

lost /home/directory for users

I'm using HPUX 11i. The other day a user logon to the workstation and was not able to find the /home/directory (tom is the directory) I login myself and it is the same thing. The home directory is on the server, so I was thinking of using sam to map it again. does anyone know how to do it... (5 Replies)
Discussion started by: blizzgamer
5 Replies

8. UNIX for Advanced & Expert Users

Problem: Automounting Home directory for nis & nfs configuration doesn't work

Hi all, First of all, i am so sorry about my bad level in English writing. I have some problem in linux and i hope the experts of this forum to help me if they have enough time to reply to me. I have a scenario of configuring NIS and NFS in Redhat Linux environment such that user can login... (0 Replies)
Discussion started by: pioneer
0 Replies

9. UNIX for Dummies Questions & Answers

Home Directory Jail for Users

Hi, I am looking for a shell script (or any other way), that puts a user in a home directory jail. So for example, I have a user named richard and I don't want him wandering outside /usr/users/richard. I don't want him to cd to anywhere including cd .. Somebody said you can do that with... (3 Replies)
Discussion started by: mz043
3 Replies

10. UNIX for Dummies Questions & Answers

Profiles for users without home directory

Hi I want to know which profile will be called when a user without home directory is created. When I created a user without home directory(by setting in /etc/default/useradd), the user is able to login directly into the main "/" folder but with only read permissions. Thanks naina (3 Replies)
Discussion started by: naina
3 Replies
Login or Register to Ask a Question