NAS之NFS 為集群中的 Web Server 配置後端存儲NFS:Network File System 網路文件系統,Unix系統之間共用文件的一種協議NFS 的客戶端主要為Linux支持多節點同時掛載以及併發寫入 nas 192.168.122.59web1 192.168.122.85we ...
NAS之NFS
為集群中的 Web Server 配置後端存儲
NFS:Network File System 網路文件系統,Unix系統之間共用文件的一種協議
NFS 的客戶端主要為Linux
支持多節點同時掛載以及併發寫入
========================================================
nas 192.168.122.59
web1 192.168.122.85
web2 192.168.122.166
web3 192.168.122.111
nas web1 web2 web3
# sed -ri '/^SELINUX=/cSELINUX=disabled' /etc/selinux/config
# setenforce 0
centos6
# iptables -F
# service iptables save
centos7
# systemctl stop firewalld
# systemctl disable firewalld
# vim /etc/hosts [可選]
192.168.122.59 nas
192.168.122.85 web1
192.168.122.166 web2
192.168.122.111 web3
一、nas(存儲端)
[root@nas ~]# yum -y install nfs-utils
[root@nas ~]# mkdir /webdata //存儲網站代碼
[root@nas ~]# echo "nfs test..." > /webdata/index.html
[root@nas ~]# vim /etc/exports
/webdata 192.168.122.0/24(rw,sync,no_root_squash) //不壓制root(當client端使用root掛載時,也有root許可權)
[root@nas ~]# systemctl start nfs-server
[root@nas ~]# systemctl enable nfs-server
[root@nas ~]# exportfs -v
/webdata 192.168.122.0/24(rw,wdelay,no_root_squash,no_subtree_check,sec=sys,rw,secure,no_root_squash,no_all_squash)
二、web1 web2 web3 客戶端
以web1為例:
[root@web1 ~]# yum -y install nfs-utils httpd
[root@web1 ~]# systemctl start httpd
[root@web1 ~]# systemctl enable httpd
1. 查看存儲端共用 [可選]
[root@web1 ~]# showmount -e nas
Export list for nas:
/webdata 192.168.122.0/24
2. 手動掛載 [可選]
[root@web1 ~]# mount -t nfs nas:/webdata /var/www/html/
[root@web1 ~]# umount /var/www/html/
3. 自動掛載到網站主目錄
[root@web1 ~]# vim /etc/fstab
nas:/webdata /var/www/html nfs defaults 0 0
[root@web1 ~]# mount -a
4. 查看掛載
[root@web1 ~]# df
nas:/webdata 7923136 692416 6821568 10% /var/www/html
[root@web1 ~]# ls /var/www/html/
index.html
5. web2 web3同上
三、測試網站訪問
# firefox 192.168.122.85
# firefox 192.168.122.111
# firefox 192.168.122.166
NAS之CIFS
CIFS:Common Internet File System Windows和Unix系統之間共用文件的一種協議
CIFS:客戶端主要是Windows
支持多節點同時掛載以及併發寫入
========================================================
一、Samba伺服器 (存儲端)
1. 安裝軟體
[root@samba ~]# yum -y install samba
2. 建立共用所需要目錄
[root@samba ~]# mkdir /data
[root@samba ~]# chmod 777 /data
[root@samba ~]# cp -rf /etc/hosts /data/
3. 建立訪問用戶
[root@samba ~]# useradd alice
[root@samba ~]# useradd jack
[root@samba ~]# smbpasswd -a alice
[root@samba ~]# smbpasswd -a jack
4. 通過Samba共用
[root@samba ~]# vim /etc/samba/smb.conf
[data]
path = /data
;valid users = alice jack
;hosts allow = 192.168.122.
;write list = jack
writable = yes
5. 啟動Samba服務
[root@samba ~]# systemctl start nmb smb
[root@samba ~]# systemctl enable nmb smb
6. firewalld
[root@samba ~]# firewall-cmd --permanent --add-service=samba
[root@samba ~]# firewall-cmd --permanent --add-service=samba-client
[root@samba ~]# firewall-cmd --permanent --add-service=mouted
[root@samba ~]# firewall-cmd --reload
7. SELinux
[root@samba ~]# vim /etc/selinux/config
SELINUX=disabled
[root@samba ~]# setenforce 0
二、客戶端連接測試
Windows端:
1. \\192.168.2.168
2. 映射網路驅動器
Linux端: [瞭解]
# yum -y install samba-client cifs-utils
1. 查看存儲端共用 [可選]
# smbclient -L 192.168.5.240 --user=alice%1 //查看伺服器共用
2. 手動掛載 [可選]
# mkdir /mnt/cifs
# mount -t cifs -o user=alice,pass=1 //192.168.122.166/data /mnt/cifs
3. 自動掛載到指定目錄
# vim /etc/fstab
//192.168.122.166/data /mnt/cifs cifs user=alice,pass=1 0 0
# mount -a
4. 查看掛載
# df -P
//192.168.122.166/data 7923120 767480 6746504 11% /mnt/cifs
# cp -rf /etc/hosts /mnt/cifs/
# mount
//192.168.122.105/data on /mnt type cifs (rw,relatime,vers=1.0,cache=strict,username=alice,domain=SAMBA,uid=0,noforceuid,gid=0,noforcegid,
addr=192.168.122.105,unix,posixpaths,serverino,acl,rsize=1048576,wsize=65536,actimeo=1)