NFS部署与优化

回复 收藏
服务器端:
安装NFS服务:
yum install -y nfs-utils rpcbind
编辑nfs共享文件/etc/exports
vim /etc/exports
#/nfsser 192.168.238.133(rw,sync,all_squash,anonuid=500,anongid=500)
/nfsser 192.168.238.133(rw,sync,no_root_squash)
前面目录为共享目录,后面IP为允许地址,也可以设置IP段,后面括号内容是设置权限
启动服务
1、/etc/init.d/rpcbind start
2、/etc/init.d/nfs start
客户端:
安装NFS服务
yum install -y nfs-utils
测试访问
showmount -e 192.168.238.132
挂载
mount -t nfs 192.168.238.132:/mnt  /opt/test   挂载远程共享目录到本地/opt/test目录下


2016-07-22 17:44 举报
已邀请:
0

guyuetom

赞同来自:

[root@localhost ~]# /etc/init.d/nfs start

-bash: /etc/init.d/nfs: 是一个目录

这个mkdir也不行,要怎么整呢?

回复帖子,请先登录注册

退出全屏模式 全屏模式 回复
评分
可选评分理由: