文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

NFS的简单使用

2024-04-02 19:55

关注


在NFS服务器建一个目录,用来存共享文件,提供NFS磁盘空间

[root@PROD2 ~]# mkdir -p /u01/nfs_shares

[root@PROD2 ~]# ll /u01

总用量 8

drwxr-xr-x 4 oracle oinstall 4096 11月 30 16:18 app

drwxr-xr-x 2 root   root     4096 12月  4 18:25 nfs_shares

将该目录用于NFS共享

[root@PROD2 ~]# vi /etc/exports 

[root@PROD2 ~]# cat /etc/exports

/u01/nfs_shares               *(rw,sync,no_wdelay,insecure_locks,no_root_squash)


启动NFS服务(配置信息需要NFS重启生效)

[root@PROD2 ~]# service nfs status

rpc.svcgssd is stopped

rpc.mountd is stopped

nfsd is stopped

rpc.rquotad is stopped

[root@PROD2 ~]# service nfs start

Starting NFS services:                                     [  OK  ]

Starting NFS quotas:                                       [  OK  ]

Starting NFS mountd:                                       [  OK  ]

Starting NFS daemon:                                       [  OK  ]

Starting RPC idmapd:                                       [  OK  ]


在使用NFS服务的机器上,创建一个目录作为挂载点,并挂载共享的目录

[root@PROD1 ~]# mkdir -p /u01/oradata

[root@PROD1 ~]# mount -t nfs -o rw PROD2:/u01/nfs_shares /u01/oradata/

[root@PROD1 ~]# mount

/dev/sda3 on / type ext4 (rw)

proc on /proc type proc (rw)

sysfs on /sys type sysfs (rw)

devpts on /dev/pts type devpts (rw,gid=5,mode=620)

tmpfs on /dev/shm type tmpfs (rw)

/dev/sda1 on /boot type ext4 (rw)

none on /proc/sys/fs/binfmt_misc type binfmt_misc (rw)

sunrpc on /var/lib/nfs/rpc_pipefs type rpc_pipefs (rw)

PROD2:/u01/nfs_shares on /u01/oradata type nfs (rw,vers=4,addr=192.168.56.62,clientaddr=192.168.56.61)


其他用户可以使用这个目录,只是需要给予相应权限

[root@PROD1 ~]# su - oracle

[oracle@PROD1 ~]$ cd /u01/oradata/

[oracle@PROD1 oradata]$ ll

total 0

[oracle@PROD1 oradata]$ touch haha

touch: cannot touch `haha': Permission denied

[oracle@PROD1 oradata]$ logout

[root@PROD1 ~]# chown oracle:oinstall /u01/oradata

[root@PROD1 ~]# su - oracle

[oracle@PROD1 ~]$ cd /u01/oradata/

[oracle@PROD1 oradata]$ touch haha

[oracle@PROD1 oradata]$ ll

total 0

-rw-r--r-- 1 oracle oinstall 0 Dec  4 18:43 haha


卸载NFS共享目录以后,会发现新建的文件不见了

[oracle@PROD1 oradata]$ logout

[root@PROD1 ~]# umount /u01/oradata/

[root@PROD1 ~]# mount

/dev/sda3 on / type ext4 (rw)

proc on /proc type proc (rw)

sysfs on /sys type sysfs (rw)

devpts on /dev/pts type devpts (rw,gid=5,mode=620)

tmpfs on /dev/shm type tmpfs (rw)

/dev/sda1 on /boot type ext4 (rw)

none on /proc/sys/fs/binfmt_misc type binfmt_misc (rw)

sunrpc on /var/lib/nfs/rpc_pipefs type rpc_pipefs (rw)

[root@PROD1 ~]# ll /u01/oradata/

总用量 0


在NFS服务器上查看,文件在这里出现了

[root@PROD2 ~]# ll /u01/nfs_shares/

总用量 0

-rw-r--r-- 1 oracle oinstall 0 12月  4 18:43 haha


同时,一个神奇的事情发生,这个目录的所有者改变了

[root@PROD2 ~]# ll /u01

总用量 8

drwxr-xr-x 4 oracle oinstall 4096 11月 30 16:18 app

drwxr-xr-x 2 oracle oinstall 4096 12月  4 18:43 nfs_shares



阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     807人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     351人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     314人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     433人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     221人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-数据库
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯