Chinaunix首页 | 论坛 | 博客
  • 博客访问: 262444
  • 博文数量: 42
  • 博客积分: 25
  • 博客等级: 民兵
  • 技术积分: 420
  • 用 户 组: 普通用户
  • 注册时间: 2012-04-17 10:05
文章存档

2021年(1)

2019年(1)

2017年(3)

2016年(27)

2015年(4)

2014年(6)

我的朋友

分类: LINUX

2014-03-13 10:30:54

安装启动NFS服务
安装NFS服务#yum install nfs-utils*#yum install portmap
启用NFS服务# systemctl enable nfs-server.service
ln -s '/lib/systemd/system/nfs-server.service' '/etc/systemd/system/multi-user.target.wants/nfs-server.service'
检查NFS服务是否被启用
# systemctl is-enabled nfs-server.service
enabled

启动NFS服务# systemctl start nfs-server.service
或者用service命令# service nfs-server restart
Redirecting to /bin/systemctl  restart nfs-server.service
查看NFS服务状态# systemctl status nfs-server.service
nfs-server.service - NFS Server
 Loaded: loaded (/lib/systemd/system/nfs-server.service; enabled)
 Active: active (running) since Sun, 29 Apr 2012 11:08:59 +0800; 1min 46s ago

本地测试# showmount -e localhost
# mount localhost:/media/Photos /mnt
# umount /mnt
阅读(2226) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~