SHELL腳本之在Centos7上配置NFS遠程共享

NFS遠程共享

1.遠程共享服務器配置腳本

#!/bin/bash
#主服務器NFS配置腳本

#建立新磁盤分區
echo "n
                p

                w"  | fdisk /dev/sdb

#新建磁盤掛載點
mkdir /mnt/sdb

#格式化磁盤分區
mkfs.xfs /dev/sdb1

#添加自動掛載
echo "/dev/sdb1        /mnt/sdb         xfs     defaults        0       0" >> /etc/fstab
mount -a

#安裝服務
yum install nfs-utils rpcbind -y

#修改配置文件
echo "/mnt/sdb      192.168.102.128/24(rw,sync,no_root_squash)" >> /etc/exports

#開啓服務
systemctl start nfs
systemctl start rpcbind

#關閉防火牆
systemctl stop firewalld.service
setenforce 0

#查看空是否共享出去
showmount -e

2.本地http站點使用空間腳本

#!/bin/bash
#客戶服務器配置腳本

#關閉防火牆
systemctl stop firewalld.service
setenforce 0

#安裝http服務
yum install httpd -y

#將http站點掛載到主服務器共享出來的空間上
mount 192.168.102.128:/mnt/sdb  /var/www/html

#查看站點的空間
df -hT
相關文章
相關標籤/搜索