細々した設定

Selinuxを切る

# vi /etc/selinux/config

SELINUX=disabled
# init 6(再起動

nfsを設定
(ちなみに利用するアカウントのuidとgidを各サーバで合わせる事を忘れない事)

# mkdir -p /exports/home
# chmod 777 /exports/home
# vi /etc/exports
/exports/home client_host(rw,no_all_squash,sync)
# chkconfig --list portmap
# chkconfig --list nfs
起動を確認して動いてない(インストールしてないなら)インストール&起動
# exportfs -ra
# exportfs -v

クライアントにログイン
# mkdir -p /exports/home
# mount -t nfs nfs_host:/exports/home /exports/home -o rsize=8192,wsize=8192,hard,intr
マウントできる事を確認
# vi /etc/fstab
nfs_host:/exports/home /exports/home nfs rsize=8192,wsize=8192,hard,intr 0 0