• NFS


    服务端:

    [root@linuxprobe ~]# yum install nfs-utils -y
    Loaded plugins: fastestmirror, langpacks
    Loading mirror speeds from cached hostfile
    Package 1:nfs-utils-1.3.0-0.el7.x86_64 already installed and latest version
    Nothing to do
    [root@linuxprobe ~]# systemctl restart rpcbind
    [root@linuxprobe ~]# systemctl enable rpcbind
    [root@linuxprobe ~]# systemctl restart nfs-server
    [root@linuxprobe ~]# systemctl enable nfs-server
    ln -s '/usr/lib/systemd/system/nfs-server.service' '/etc/systemd/system/nfs.target.wants/nfs-server.service'
    [root@linuxprobe ~]# iptables -F
    [root@linuxprobe ~]# service iptables save
    iptables: Saving firewall rules to /etc/sysconfig/iptables:[  OK  ]
    [root@linuxprobe ~]# mkdir /nfsfile
    [root@linuxprobe ~]# ll -d /nfsfile
    drwxr-xr-x. 2 root root 6 Jan 14 08:53 /nfsfile
    [root@linuxprobe ~]# chmod 777 /nfsfile
    [root@linuxprobe ~]# ll -d /nfsfile
    drwxrwxrwx. 2 root root 6 Jan 14 08:53 /nfsfile
    [root@linuxprobe ~]# echo "welcom to linuxprobe.com" > /nfsfile/readme
    [root@linuxprobe ~]# vim /etc/exports
    /nfsfile 192.168.10.*(rw,sync,root_squash)
    [root@linuxprobe ~]# systemctl restart rpcbind
    [root@linuxprobe ~]# systemctl restart nfs-server

    客户端:

    [root@localhost ~]# showmount -e 192.168.10.10
    Export list for 192.168.10.10:
    /nfsfile 192.168.10.*
    [root@localhost ~]# mkdir /nfsfile
    [root@localhost ~]# mount -t nfs 192.168.10.10:/nfsfile /nfsfile
    [root@localhost ~]# cd /nfsfile/
    [root@localhost nfsfile]# ls
    readme
    [root@localhost nfsfile]# cat readme
    welcom to linuxprobe.com
    [root@localhost nfsfile]# vim /etc/fstab
    192.168.10.10:/nfsfile /nfsfile nfs defaults 0 0
    [root@localhost nfsfile]# mount -a 
    [root@localhost nfsfile]# df -h
    Filesystem              Size  Used Avail Use% Mounted on
    192.168.10.10:/nfsfile   18G  3.5G   15G  20% /nfsfile
  • 相关阅读:
    mybatis中crud操作范例
    Guava----Function
    Spring mvc Controller接口
    简单的验证码识别(opecv)
    Mat转换为QImage
    将多张图片无缝拼接方法
    模式识别---图像二值化
    双边过滤算法
    C++对于大型图片的加载缩放尝试
    ijg库解码超大型jpeg图片
  • 原文地址:https://www.cnblogs.com/dinghailong128/p/12190273.html
Copyright © 2020-2023  润新知