fedora17下配置nfs服务器

1.下载并安装nfs组件
# su root
# yum install portmap nfs-utils

2.打开nfs配置文件
# vi /etc/exports

3.添加1行如下
/study/upmagic6410 *(sync,rw,no_root_squash)

PS:*表示所有IP,如果指定IP访问,则可以直接替换为指定IP;
rw表示可读写权限;
no_root_squash表示当登陆nfs主机使用共享目录的使用者是root时,其权限将被转换成为匿名使用者(nobody);

4.保存exports
(:wq)

5.创建共享目录,并设置权限
# mkdir /study/upmagic6410
# chmod 777 /study/upmagic6410

6.禁用防火墙(也可以通过配置防火墙)
# setup
将firewall选项中的enable取消调,然后保存退出

7.配置开机启动及启动nfs-server
# systemctl enable nfs-server.service

PS:nfs-server检查是否开启
# systemctl is-enabled nfs-server.service

PS:手动开启、关闭nfs-server的命令为
# systemctl start nfs-server.service
# systemctl stop nfs-server.service

10.在其他Linux主机上挂载nfs
# mount -t nfs -o nolock x.x.x.x:/study/upmagic6410 /mnt/nfs

PS:x.x.x.x是nfs服务的ip地址。

你可能感兴趣的:(linux,fedora,nfs,17,sunkeke)