linux 上安装nfs服务器及设置客户端访问


    服务器端:192.168.10.11

    客户端:  192.168.10.20


服务器端&&客户端    


yum  -y install rpcbind nfs-utils    (linux 6.0以上版本)

yum -y install portmap nfs-utils     (5.0版本)


服务器端

    echo -e "/cxw\t192.168.10.0/24(rw,sync,all_squash)">>/etc/exports

启动服务

    /etc/init.d/rpcbind start

    /etc/init.d/nfs start

更改为开机自动启动

    chkconfig rpcbind on

    echo -e "/etc/init.d/nfs\tstart">>/etc/rc.local

更改共享文件夹

    mkdir -R /cxw

    chown -R nfsnobody:nfsnobody /cxw

使配置生效

    exportfs -r



客户端


    chkconfig nfs on

    chkconfig rpcbind on


    mount -t nfs 192.168.10.11:/cxw /tmp


    showmount -e 192.168.10.11

测试客户端是否有写的权限,创建文件夹权限