我有两个运行 CentOS Linux 版本 7.3.1611 (Core) 的节点,一个用于计算 (mu01),另一个用于存储 (io01)。作为 root,我将/data
io01 上的目录挂载到/data
mu01 上mount -t nfs -o vers=4 io01:/data /data
。但是,当我尝试写入目录时(以 root 或任何其他用户身份),我收到以下错误消息:
[root@mu01 data]# touch test1
touch: cannot touch 'test1': Read-only file system
mount
返回(在 mu01 上):
io01:/data on /data type nfs4 (rw,relatime,vers=4.0,rsize=1048576,wsize=1048576,namlen=255,hard,proto=tcp,port=0,timeo=600,retrans=2,sec=sys,clientaddr=10.10.10.200,local_lock=none,addr=10.10.10.201)
cat /proc/mounts
返回(在 mu01 上):
io01:/data /data nfs4 rw,relatime,vers=4.0,rsize=1048576,wsize=1048576,namlen=255,hard,proto=tcp,port=0,timeo=600,retrans=2,sec=sys,clientaddr=10.10.10.200,local_lock=none,addr=10.10.10.201 0 0
我的/etc/fstab
读物(在 mu01 上):
#
# /etc/fstab
# Created by anaconda on Wed Jun 13 19:15:02 2018
#
# Accessible filesystems, by reference, are maintained under '/dev/disk'
# See man pages fstab(5), findfs(8), mount(8) and/or blkid(8) for more info
#
UUID=f2f4003d-48fe-41db-af00-811e6bc8ec73 / xfs defaults 0 0
UUID=b01e3e3f-2c51-494e-b74b-f72e2ba0a1c1 /boot xfs defaults 0 0
UUID=9dbef967-1854-4079-96c5-8905674d446b swap swap defaults 0 0
我的/etc/exports
(在 io01 上)内容如下:
/data 10.10.10.200 10.10.10.100(rw,no_root_squash,sync)
编辑1:在 io01 上添加更多信息:
mount
返回(在 io01 上):
/dev/sdb1 on /data type xfs (rw,relatime,attr2,inode64,sunit=512,swidth=512,noquota)
cat /proc/mounts
返回(在 io01 上):
/dev/sdb1 /data xfs rw,relatime,attr2,inode64,sunit=512,swidth=512,noquota 0 0
/etc/fstab
在 io01 上:
#
# /etc/fstab
# Created by anaconda on Wed Jun 13 18:53:31 2018
#
# Accessible filesystems, by reference, are maintained under '/dev/disk'
# See man pages fstab(5), findfs(8), mount(8) and/or blkid(8) for more info
#
UUID=57ae8e97-40cc-419f-bf6b-50e3de3256e2 / xfs defaults 0 0
UUID=ee35005e-9211-4bc6-9b5f-22fde47cc27d /boot xfs defaults 0 0
UUID=4273c2f3-7465-46af-8489-4f8f75848f6c swap swap defaults 0 0
/data
在 io01 上可写。