「CentOS」NFSサーバーのインストール、設定
サーバー側設定
1.nfs-utilsとrpcbindのインストール
yum install nfs-utils rpcbind
2.自動起動の設定
chkconfig nfs on
chkconfig rpcbind on
3.サーバーが起動
service rpcbind start
service nfs start
4.共有ディレクトリを作成
mkdir -p /export/primary
mkdir -p /export/secondary
5./etc/exportsを編集し、次の内容を追加
vi /etc/exports
/export*(rw,async,no_root_squash,no_subtree_check)
6.コンフィギュレーションをリフレッシュして有効
exportfs -a
クライアント設定
1.nfs-utilsとrpcbindのインストール
yum install nfs-utils rpcbind
2.自動起動の設定
chkconfig nfs on
chkconfig rpcbind on
3.サーバーが起動
servicerpcbind start
servicenfs start
4.マウントポイントを作成
mkdir -p /mnt/primary
mkdir -p /mnt/secondary
5.マウントディレクトリ
mount -t nfs server_ip:/export/primary /mnt/primary
mount -t nfs server_ip:/export/secondary /mnt/secondary
6.マウントされたディレクトリを表示
df -h
7.マウントされたディレクトリをアンインストール
umount /mnt/primary
umount /mnt/secondary
8./etc/fstabを編集し、自動的にマウント
vi /etc/fstab
server_ip:/export/primary/mnt/primary nfs rw,tcp,intr 0 1
server_ip:/export/secondary/mnt/secondary nfs rw,tcp,intr 0 1