CentOS 7.2 挂载网络磁盘

前端之家收集整理的这篇文章主要介绍了CentOS 7.2 挂载网络磁盘前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

服务端

1. 安装nfs-utils,rpcbind

yum install nfs-utls rpcbind

2. 设置rpcbind和nfs服务开机自动启动

chkconfig nfs on
chkconfig rpcbind on

3. 启动rpcbind和nfs服务,顺序不要弄反,反了会出现类似program not registered错误

service rpcbind start
service nfs start

4. 创建共享目录

mkdir /data/share

5. 编辑共享设置文件/etc/exports

vi /etc/exports
文件后面添加如下内容
/data/share 192.168.1.24(rw,no_root_squash,no_subtree_check)

说明:192.168.1.24`是客户端地址

6. 让配置文件生效

exportfs -a

7. 查看是否共享成功

showmount -e

显示类似下面的效果:

Export list for InnerHost:
/data/share/ 192.168.1.24

客户端

1. 安装nfs-utils,rpcbind

yum install nfs-utls rpcbind

2. 设置rpcbind和nfs服务开机自动启动

chkconfig nfs on
chkconfig rpcbind on

3. 启动rpcbind和nfs服务,顺序不要弄反

service rpcbind start
service nfs start

4. 查看是否可以探测到服务器的共享

showmount -e 192.168.1.1

说明:192.168.1.1是服务器的IP地址

5. 创建映射目录

mkdir /data/link-share

6. 编辑挂载配置文件/etc/fstab

vi /etc/fstab
文件后面添加下面的内容
192.168.1.1:/data/share /data/link-share nfs rw,tcp,intr 0 1

说明:192.168.1.1是服务器的IP地址

7. 挂载

mount -t nfs 192.168.1.1:/data/share /data/link-share

原文链接:https://www.f2er.com/centos/375664.html

猜你在找的CentOS相关文章