nis

差異處

這裏顯示兩個版本的差異處。

連向這個比對檢視

兩邊的前次修訂版 前次修改
下次修改
前次修改
nis [2017/01/05 22:07] 127.0.0.1nis [2017/01/12 21:11] (目前版本) jz
行 13: 行 13:
 </code> </code>
  
-init master+start yp service
 <code> <code>
 domainname csna domainname csna
 +service ypserv start
 +</code>
 +
 +init master
 +<code>
 cp /etc/master.passwd /var/yp/master.passwd cp /etc/master.passwd /var/yp/master.passwd
 cp /etc/group /var/yp/group cp /etc/group /var/yp/group
行 23: 行 28:
 vi Makefile vi Makefile
 # comment out this line: NOPUSH = "True" # comment out this line: NOPUSH = "True"
 +make
 ypinit -m ypinit -m
- 
 <code> <code>
 Server Type: MASTER Domain: csna Server Type: MASTER Domain: csna
行 51: 行 56:
 </code> </code>
  
-</code> +start yp password daemon
-make +
-</code> +
- +
-start service+
 <code> <code>
-service ypserv start 
 service yppasswdd start service yppasswdd start
 </code> </code>
行 67: 行 67:
 nisdomainname="csna" nisdomainname="csna"
 nis_client_enable="YES" nis_client_enable="YES"
-nis_client_flags="-S csna,csna1"+nis_client_flags="nis_yppasswdd_flags="-t /etc/master.passwd" -S csna,csna1"
 </code> </code>
  
行 73: 行 73:
 domainname csna domainname csna
 service ypbind start service ypbind start
 +</code>
 +
 +==== allow nis account to login to client ====
 +
 +install mkhomedir pam
 +<code>
 +sudo pkg install pam_mkhomedir
 +</code>
 +
 +add following to the session section of /etc/pam.d/system
 +<code>
 +session         required        /usr/local/lib/pam_mkhomedir.so
 +</code>
 +
 +==== allow nis account to login to client ====
 +
 +''vipw'' and add following line
 +<code>
 ++:*::::::::
 +</code>
 +
 +''vi /etc/group'' and add following line
 +<code>
 ++:*::
 +</code>
 +
 +or edit ''/etc/nsswitch.conf''
 +remove
 +<code>
 +group: compat
 +group_compat: nis
 +passwd: compat
 +passwd_compat: nis
 +</code>
 +
 +add
 +<code>
 +group: files nis
 +passwd: files nis
 </code> </code>
  
行 84: 行 123:
 </code> </code>
  
 +
 +**ref**
 +
 +[[http://mail.lsps.tp.edu.tw/~gsyan/freebsd2001/pam_ldap.html]]
  • nis.1483625250.txt.gz
  • 上一次變更: 2017/01/05 22:07
  • 127.0.0.1