firadio

第一步:安装

 

更新系统

yum update

 

安装iftop

yum install epel-release
yum install iftop

 

安装NFS

yum install nfs-utils rpcbind

 

我的NFS配置文件

vi /etc/exports

内容是

#/home/vmdk/ 10.105.11.0/24(rw,no_root_squash,no_all_squash,sync,anonuid=501,anongid=501)
/home/nfs/vmdk/ 10.105.11.0/24(rw)
/home/nfs/vmdk-0/ 10.105.0.0/16(rw)
/home/nfs/vmdk-1/ 10.105.11.0/24(rw)

重新加载NFS配置 

exportfs -r

 重启服务

systemctl restart rpcbind.service
systemctl restart nfs-server.service

 

配置服务自动启动

systemctl enable rpcbind
systemctl enable nfs-server

 

 

 

安装ISCSI target

yum install targetcli

 

分类:

技术点:

相关文章:

  • 2021-08-05
  • 2021-10-13
  • 2021-07-06
  • 2021-09-02
  • 2020-02-29
  • 2021-05-14
  • 2021-05-22
猜你喜欢
  • 2021-12-20
  • 2021-12-10
  • 2021-05-27
  • 2021-12-10
  • 2019-02-20
  • 2021-08-23
相关资源
相似解决方案