#############NFS服务配置教程#############
1)检查系统信息
hostname nfsserver
cat /etc/redhat-release #查看发行版本
uname -r #查看内核版本
uname -m #查看多少位
2)检查是否已经安装
rpm -qa nfs-utils rpcbind
yum -y install nfs-utils rpcbind
3)启动RPC和NFS服务
/etc/init.d/rpcbind start
/etc/init.d/nfs start
4)设置开机启动并检查
chkconfig rpcbind on
chkconfig nfs on
chkconfig --list nfs
chkconfig --list rpcbind
5)配置共享目录
#shared datat forr bbs by zs at20160112
echo "/nfsdata 192.168.111.0/24(rw,sync,)">>/etc/exports
重启nfs服务/etc/init.d/nfs reload
6)测试
showmount -e localhost
showmount -e 192.168.111.3
7)启动自动挂在
客户端:echo "mount -t nfs 191.168.111.3:/nfsdata /mnt">>/etc/rc.local
NFS服务配置教程
最新推荐文章于 2024-08-19 18:00:47 发布