######################NFS############################vim
nfswindows
手動掛載方式服務器
1)yum install nfs-utils網絡
2)showmount -e ip ##識別該ip下的共享ssh
3)mount ip:/sharedir /mountpoint ##掛載點 掛載目錄ide
永久掛載方式測試
方法一ui
vim /etc/fstabspa
172.25.254.250:/nfsshare/nfs1 /mnt nfs defaults 0 0rest
[root@localhost ~]# vim /etc/rc.d/rc.local
方法二
在文件最後一行編寫以下內容
mount 172.25.254.250:/nfsshare/nfs1 /mnt
[root@localhost ~]# chmod 755 /etc/rc.d/rc.local
#############autofs自動掛載服務######################
服務功能
默認使用mount掛載共享時當不使用共享也會處於掛載狀態,極大的佔用了資源
autofs服務能夠實現使用時自動掛載,當閒置時自動卸載
自動掛載方式
1)yum install autofs
2)systemctl start autofs
3)cd /net/ip/
4)vim /etc/syscofig/autofs
TIMEOUT=5
##############ldap網絡賬號#############
1.ldap是什麼
ldap目錄服務認證,和windows活動目錄相似,就是記錄數據的一種方式
2.ldap客戶端所須軟件
yum sssd krb5-workstation -y
3.如何開啓ldap用戶認證
authconfig-tui
時由於tls的證書缺失,須要到服務器端下載所須要的證書到/etc/openldap/cacerts,
用到的命令
cd /etc/openldap/cacerts
wget http://172.25.254.254/pub/example-ca.crt
最後再次認證
authconfig-tui
測試
getent passwd ldapuser1
若是用戶信息能夠正常顯示,證實客戶端認成功。
4.自動掛載用戶家目錄
yum install autofs -y
vim /etc/autofs.master
/home/guests/etc/auto.ldap
vim /etc/auto.ldap
ldapuser1172.25.254.254:/home/guests/ldapuser1
+++++++++++++++++++++++++++++++++++++++++++++++++++++++
*172.25.254.254:/home/guests/&
systemctl restart autofs