CentOS7_NFS_永久挂载


一、环境:
 
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必须具有执行权限)
 

[root@centos7 rc.d]# vim         /etc/rc.d/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


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM