CentOS7/Linux_NFS永久挂载的方法
(2020-05-14 01:51:38)
标签:
nfs挂载nfs永久挂载 |
分类: OperatingSystem |
一、环境:
1、OS:CentOS-7-x86_64-DVD-1908.iso;
2、全程使用root账户操作;
二、安装NFS
1、安装服务端: yum
-y
install
rpcbind
2、安装客户端: yum
-y
install
nfs-utils
三、配置共享文件夹
vim
/etc/exports
四、NFS服务管理:
1、systemctl start
nfs-server
//启动nfs服务
2、systemctl enable
nfs-server
//开机自动启动nfs服务
3、systemctl restart
nfs-server
//重新启动nfs服务
4、systemctl stop
nfs-server
//停止nfs服务
5、systemctl disable
nfs-server
//取消开机启动nfs服务
五、永久挂载(rc.local必须具有执行权限)
mount
-t
nfs
nfs_server_ip:/root/laohu
/mnt/laohu
[root@centos7 rc.d]#
wq
[root@centos7 rc.d]# chmod 711
rc.local
[root@centos7 rc.d]#
reboot

加载中…