Yanor.net/
Wiki
Blog
GitHub
Sandbox
開始行:
* UNFS3(User-space NFSv3 Server) [#r28d56e0]
** NFSサーバ側のセットアップ [#z9d85d1d]
*** UNFS3のインストール [#l5870612]
wget http://packages.sw.be/unfs3/unfs3-0.9.22-1.el5.rf.x...
rpm -ivh unfs3-0.9.22-1.el5.rf.x86_64.rpm
*** 起動スクリプトの作成 [#sc7de570]
/etc/rc.d/init.d/unfsd:
#!/bin/bash
# -*- mode: shell-script; coding: UTF-8 -*-
#
# chkconfig: 235 99 10
# description: Start or stop the unfs3 server
#
### BEGIN INIT INFO
# Provides: unfsd
# Required-Start: $network
# Required-Stop: $network
# Default-Start: 2 3 4 5
# Default-Stop: 0 1 6
# Description: Start or stop the unfs3 server
### END INIT INFO
description="unfs3 NFS server"
lockfile="/var/lock/subsys/unfsd"
pidfile="/var/run/unfsd.pid"
case "$1" in
'start')
echo "Starting" ${description}
/usr/sbin/unfsd -i ${pidfile}
RETVAL=$?
if [ "${RETVAL}" = "0" ]; then
touch ${lockfile} >/dev/null 2>&1
fi
;;
'stop')
echo "Shutting down" ${description}
if [ -s ${pidfile} ]; then
pid=`cat ${pidfile}`
kill -TERM ${pid} 2>/dev/null
sleep 2
if kill -0 ${pid} 2>/dev/null; then
kill -KILL ${pid}
fi
fi
rm -f ${lockfile} ${pidfile}
;;
'status')
if [ -s ${pidfile} ]; then
pid=`cat ${pidfile}`
if kill -0 ${pid} 2>/dev/null; then
echo "${description} (pid ${pid}) is running"
RETVAL=0
else
echo "${description} is stopped"
RETVAL=1
fi
else
echo "${description} is stopped"
RETVAL=1
fi
;;
'restart')
$0 stop && $0 start
RETVAL=$?
;;
'condrestart')
[ -f /var/lock/subsys/unfsd ] && $0 stop &&
$0 start
RETVAL=$?
;;
*)
echo "Usage: $0 {start|stop|restart|condrestart|status}"
RETVAL=1
;;
esac
exit $RETVAL
*** 公開ディレクトリの作成と設定 [#r9be9747]
mkdir /export/share01
/etc/exports:
/export/share01 192.168.0.0/24(rw,sync,all_squash,anonui...
- anonuid=5000,anongid=5000 → サーバ群で共通のUID/GIDなユ...
- all_squash → ファイルオーナーを指定したユーザにする。
*** NFSツールのインストール [#g9e687a0]
yum install nfs-utils
*** NFSサーバ起動設定と起動 [#oaa8a350]
chkconfig unfsd on
chkconfig portmap on
service portmap start
service unfs start
** NFSクライアント側のセットアップ [#kc651242]
*** NFSツールのインストール [#c6c05247]
yum install nfs-utils
*** マウントポイントの作成 [#q8fa195e]
mkdir /mnt/share01
*** ファイルシステムのマウント設定 [#f890141f]
192.168.0.10:/export/share01 /mnt/share01 nfs bg,nfsve...
*** NFSクライアント起動設定と起動 [#je241dec]
chkconfig portmap on
chkconfig netfs on
service portmap start
service netfs start
*** NFS公開ディレクトリのマウント [#jb7ba25f]
mount -t nfs 192.168.0.10:/export/share01 /mnt/share01
終了行:
* UNFS3(User-space NFSv3 Server) [#r28d56e0]
** NFSサーバ側のセットアップ [#z9d85d1d]
*** UNFS3のインストール [#l5870612]
wget http://packages.sw.be/unfs3/unfs3-0.9.22-1.el5.rf.x...
rpm -ivh unfs3-0.9.22-1.el5.rf.x86_64.rpm
*** 起動スクリプトの作成 [#sc7de570]
/etc/rc.d/init.d/unfsd:
#!/bin/bash
# -*- mode: shell-script; coding: UTF-8 -*-
#
# chkconfig: 235 99 10
# description: Start or stop the unfs3 server
#
### BEGIN INIT INFO
# Provides: unfsd
# Required-Start: $network
# Required-Stop: $network
# Default-Start: 2 3 4 5
# Default-Stop: 0 1 6
# Description: Start or stop the unfs3 server
### END INIT INFO
description="unfs3 NFS server"
lockfile="/var/lock/subsys/unfsd"
pidfile="/var/run/unfsd.pid"
case "$1" in
'start')
echo "Starting" ${description}
/usr/sbin/unfsd -i ${pidfile}
RETVAL=$?
if [ "${RETVAL}" = "0" ]; then
touch ${lockfile} >/dev/null 2>&1
fi
;;
'stop')
echo "Shutting down" ${description}
if [ -s ${pidfile} ]; then
pid=`cat ${pidfile}`
kill -TERM ${pid} 2>/dev/null
sleep 2
if kill -0 ${pid} 2>/dev/null; then
kill -KILL ${pid}
fi
fi
rm -f ${lockfile} ${pidfile}
;;
'status')
if [ -s ${pidfile} ]; then
pid=`cat ${pidfile}`
if kill -0 ${pid} 2>/dev/null; then
echo "${description} (pid ${pid}) is running"
RETVAL=0
else
echo "${description} is stopped"
RETVAL=1
fi
else
echo "${description} is stopped"
RETVAL=1
fi
;;
'restart')
$0 stop && $0 start
RETVAL=$?
;;
'condrestart')
[ -f /var/lock/subsys/unfsd ] && $0 stop &&
$0 start
RETVAL=$?
;;
*)
echo "Usage: $0 {start|stop|restart|condrestart|status}"
RETVAL=1
;;
esac
exit $RETVAL
*** 公開ディレクトリの作成と設定 [#r9be9747]
mkdir /export/share01
/etc/exports:
/export/share01 192.168.0.0/24(rw,sync,all_squash,anonui...
- anonuid=5000,anongid=5000 → サーバ群で共通のUID/GIDなユ...
- all_squash → ファイルオーナーを指定したユーザにする。
*** NFSツールのインストール [#g9e687a0]
yum install nfs-utils
*** NFSサーバ起動設定と起動 [#oaa8a350]
chkconfig unfsd on
chkconfig portmap on
service portmap start
service unfs start
** NFSクライアント側のセットアップ [#kc651242]
*** NFSツールのインストール [#c6c05247]
yum install nfs-utils
*** マウントポイントの作成 [#q8fa195e]
mkdir /mnt/share01
*** ファイルシステムのマウント設定 [#f890141f]
192.168.0.10:/export/share01 /mnt/share01 nfs bg,nfsve...
*** NFSクライアント起動設定と起動 [#je241dec]
chkconfig portmap on
chkconfig netfs on
service portmap start
service netfs start
*** NFS公開ディレクトリのマウント [#jb7ba25f]
mount -t nfs 192.168.0.10:/export/share01 /mnt/share01
ページ名: