对以下内容感到有些困惑,希望有人能在这里提供建议:
[root@mybox02 ~]# mount | tail -1
mystor01:/spool1_fs1/ on /global type nfs (rw,addr=xx.xx.xx.25)
[root@mybox02 ~]# tail -1 /proc/mounts
tail: inotify cannot be used, reverting to polling
mystor01:/spool1_fs1/ /global nfs rw,relatime,vers=3,rsize=65536,wsize=65536,namlen=255,hard,proto=tcp,timeo=600,retrans=2,sec=sys,mountaddr=xx.xx.xx.25,mountvers=3,mountport=1234,mountproto=udp,local_lock=none,addr=xx.xx.xx.25 0 0
[root@mybox02 ~]# touch /global/testFile
touch: cannot touch `/global/testFile': Read-only file system
[root@mybox02 ~]#
[root@mybox01 ~]# mount | tail -1
mystor01:/spool1_fs1/ on /global type nfs (rw,addr=xx.xx.xx.25)
[root@mybox01 ~]# tail -1 /proc/mounts
tail: inotify cannot be used, reverting to polling
mystor01:/spool1_fs1/ /global nfs rw,relatime,vers=3,rsize=65536,wsize=65536,namlen=255,hard,proto=tcp,timeo=600,retrans=2,sec=sys,mountaddr=xx.xx.xx.25,mountvers=3,mountport=1234,mountproto=udp,local_lock=none,addr=xx.xx.xx.25 0 0
[root@mybox01 ~]# touch /global/testFile
[root@mybox01 ~]# ls -l /global/testFile
-rw-r--r-- 1 root root 0 Mar 17 11:13 /global/testFile
[root@mybox01 ~]#
尽管 fs 已挂载为 r/w,但我无法从 mybox02 写入 nfs 文件系统。从 mybox01 访问时似乎没有任何问题,据我所知,两个系统的配置相同,而且存储端的权限似乎是正确的,而且我尝试了不同的位置,但结果相同。
有人能提供建议吗?
谢谢
C