标签:nts nfs共享 uid ack net 火墙 版本 选项 本地
NFS介绍[root@akuilinux01 ~]# vim /etc/exports
/home/nfstestdir #共享的目录 192.168.21.0/24(rw,sync,all_squash,anonuid=1000,anongid=1000)
[root@akuilinux01 ~]# mkdir /home/nfstestdir
[root@akuilinux01 ~]# chmod 777 /home/nfstestdi
[root@akuilinux01 ~]# systemctl start rpcbind
[root@akuilinux01 ~]# systemctl start nfs
[root@akuilinux01 ~]# systemctl enable rpcbind
[root@akuilinux01 ~]# systemctl enable nfs
Created symlink from /etc/systemd/system/multi-user.target.wants/nfs-server.service to /usr/lib/systemd/system/nfs-server.service.
[root@akuilinux01 ~]# ps aux |grep rpc
rpc 2376 0.0 0.0 64956 1404 ? Ss 08:51 0:00 /sbin/rpcbind -w
rpcuser 2394 0.0 0.0 42376 1760 ? Ss 08:51 0:00 /usr/sbin/rpc.statd
root 2401 0.0 0.0 0 0 ? S< 08:51 0:00 [rpciod]
root 2411 0.0 0.0 42564 944 ? Ss 08:51 0:00 /usr/sbin/rpc.mountd
root 2412 0.0 0.0 43816 544 ? Ss 08:51 0:00 /usr/sbin/rpc.idmapd
root 2504 0.0 0.0 112676 976 pts/1 S+ 08:53 0:00 grep --color=auto rpc
[root@akuilinux01 ~]# ps aux |grep nfs
root 2424 0.0 0.0 0 0 ? S< 08:51 0:00 [nfsd4_callbacks]
root 2430 0.0 0.0 0 0 ? S 08:51 0:00 [nfsd]
root 2431 0.0 0.0 0 0 ? S 08:51 0:00 [nfsd]
root 2432 0.0 0.0 0 0 ? S 08:51 0:00 [nfsd]
root 2433 0.0 0.0 0 0 ? S 08:51 0:00 [nfsd]
root 2434 0.0 0.0 0 0 ? S 08:51 0:00 [nfsd]
root 2435 0.0 0.0 0 0 ? S 08:51 0:00 [nfsd]
root 2436 0.0 0.0 0 0 ? S 08:51 0:00 [nfsd]
root 2437 0.0 0.0 0 0 ? S 08:51 0:00 [nfsd]
root 2506 0.0 0.0 112676 980 pts/1 S+ 08:54 0:00 grep --color=auto nfs
[root@akuilinux02 ~]# showmount -e 192.168.21.128
Export list for 192.168.21.128
/home/nfstestdir 192.168.21.0/24
[root@akuilinux02 ~]# mount -t nfs 192.168.21.128:/home/nfstestdir /mnt
[root@akuilinux02 ~]# df -h
文件系统 容量 已用 可用 已用% 挂载点
/dev/sda3 18G 1.1G 17G 6% /
devtmpfs 907M 0 907M 0% /dev
tmpfs 916M 0 916M 0% /dev/shm
tmpfs 916M 8.7M 908M 1% /run
tmpfs 916M 0 916M 0% /sys/fs/cgroup
/dev/sda1 197M 113M 85M 58% /boot
tmpfs 184M 0 184M 0% /run/user/0
192.168.21.128:/home/nfstestdir 18G 7.4G 11G 42% /mnt
[root@akuilinux02 ~]# touch /mnt/aminglinux.txt
[root@akuilinux02 ~]# ls -l /mnt/aminglinux.txt
-rw-r--r-- 1 1000 1000 0 6月 22 09:06 /mnt/aminglinux.txt
[root@akuilinux01 ~]# ll /home/nfstestdir/
总用量 0
-rw-r--r-- 1 akui akui 0 6月 22 09:06 aminglinux.txt
#因为限定了属主和属组所以显示1000,和akui(01机器的1000为akui)
标签:nts nfs共享 uid ack net 火墙 版本 选项 本地
原文地址:http://blog.51cto.com/akui2521/2131569