회사에서 내부적으로 Object Strorage와 NAS를 2가지를 Spark으로 Read/Write 성능 테스트를 위해 설치해봤다.
생각보다 간단하다.
rpm -qa nfs-utils
mkdir share
chmod 707 share
vi /etc/exports
/share 192.168.1.*(rw/sync)
exportfs -r
systemctl start nfs-server
systemctl enable nfs-server
service firewalld stop
mount -t nfs 192.168.1.1:/share cilentShare