码迷,mamicode.com
首页 > 其他好文 > 详细

配置NFS Server

时间:2017-09-12 16:06:30      阅读:151      评论:0      收藏:0      [点我收藏+]

标签:安装   disable   res   col   images   lin   service   查看   exports   

1. 环境设置

1.1 关闭防火墙

# service iptables stop

# chkconfig iptables off

1.2 关闭SELinux

# vim /etc/selinux/config

   SELINUX=disabled

1.3 重启系统

2. 安装NFS

# rpm -qa | grep nfs

 技术分享

3. 服务器配置

3.1 配置/etc/exports

# mkdir nfs_share

# vim /etc/exports

  /root/nfs_share *(rw,no_root_squash)

4. 启动NFS

4.1 启动NFS

# service rpcbind start

# service nfs start

4.2 查看NFS状态

# service rpcbind status

# service nfs status

技术分享

5. 客户端挂载NFS

5.1 查看可挂载的目录

# showmount -e 172.16.55.176

注:如果看不到可挂载目录,就在server节点重启nfs服务

# service nfs restart

5.2 挂载NFS目录

# mount -t nfs -o rw 172.16.55.176:/root/nfs_share /nfs

 

配置NFS Server

标签:安装   disable   res   col   images   lin   service   查看   exports   

原文地址:http://www.cnblogs.com/seaBiscuit0922/p/7506319.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!