在Linux环境下,可以通过NFS服务来实现文件共享服务,具体服务端配置方法如下:

服务端配置

安装nfs-utils与rpcbind:

yum install nfs-utils rpcbind

设置rpcbind与nfs服务随服务器启动:

chkconfig nfs on
chkconfig rpcbind on

启动服务:

service rpcbind srtart
service nfs start

修改NFS配置文件 /etc/exports:

/data/nfsfiles/uploads *(rw,no_root_squash,sync)

修改配置文件后,刷新配置文件立即生效:

exportfs -a

客户端配置

客户端可以通过 mount 命令来加载NFS服务器的共享目录:

mount 192.168.84.99:/data/nfsfiles/uploads /root/hliang

卸载挂载的目录:

umount /root/hliang

标签:, ,