NFS挂载 Redhet6.4

阅读更多

使用root用户登录服务器端:

1、设置共享目录:

vi /etc/exports

/home/ftp *(rw,no_root_squash)

保存

说明:/home/ftp 为共享的目录位置;

*(rw,no_root_squash)  

*为任意IP都可以访问  

rw为可进行读写访问  

no_root_squash 为拥有这个目录所有者的权限。

2、重新启动NFS服务器

使用 service nfs start 命令启动 NFS 服务(在对 /etc/exports 做了任何修改后都需要重启 NFS 服务,才可以使修改生效,重启命令 service nfs restart)

 

3、客户设置

mkdir /home/ftp(也可以其他目录)

ls -l

查看权限

挂载共享命令:

mount -t nfs -o rw 192.168.19.13:/home/ftp /home/ftp

4、每次启动自动挂载

如果每次启动机器的时候自动挂载,可使用命令 vi /etc/fstab 编辑,在最后面加上 192.168.19.13:/home/ftp  /home/ftp  nfs  defaults 0 0 ,保存退出。

 

你可能感兴趣的:(NFS挂载 Redhet6.4)