美文网首页
Linux之间nfs挂载实现-文件共享

Linux之间nfs挂载实现-文件共享

作者: 花间提壶机智一比 | 来源:发表于2018-07-17 11:57 被阅读0次

    服务器端

    apt-get install nfs*
    
    vi /etc/exports
    
    #
    #
    #/home/god/sharedoc 10.0.1.*(rw,sync,no_root_squash,no_subtree_check)
    
    
    
    
    vi /etc/idmapd.conf
    
    [General]
    
    Verbosity = 0
    Pipefs-Directory = /run/rpc_pipefs
    # set your own domain here, if id differs from FQDN minus hostname
    # Domain = localdomain
    
    [Mapping]
    
    #Nobody-User = nobody
    #Nobody-Group = nogroup
    
    Nobody-User = nfsnobody
    Nobody-Group = nfsnobody
    
    
    
    serviec nfs-server restart
    
    
    serviec nfs-server status
    
    service portmap restart 
    
    service portmap status
    
    

    客户端

    apt-get install nfs*
    
    sudo mount -v -t nfs 10.0.1.199:/home/god/sharedoc /home/sunsj/sharedoct1
    
    
    

    尊重原创,转载请注明出处:https://www.jianshu.com/p/396c85c41f06

    相关文章

      网友评论

          本文标题:Linux之间nfs挂载实现-文件共享

          本文链接:https://www.haomeiwen.com/subject/wmpwpftx.html