CentOS ミラーサーバーの構築
ミラーサーバーを立てる時のメモ。
仮想化により、お手軽にサーバーを立てれるようになってくると、ミラーサーバーを内部に持った方が効率が良い。
ミラーリングする方法をいくつか載せておきます。
lftpを使う
mkdir -p /var/www/centos cd /var/www/centos lftp -e 'open ftp://ftp.riken.jp/Linux/centos && mirror -c --delete 5.4 && exit'
wgetを使う
mkdir -p /var/www/centos cd /var/www/centos wget -nH -m -np --cut-dirs=2 ftp://ftp.riken.jp/Linux/centos/5.4
rsyncを使う
以下を参考に
http://www.centos.org/modules/tinycontent/index.php?id=22
rsync -aqvzH --delete us-msync.centos.org::CentOS/5.4 /var/www/centos rsync -aqvzH --delete us-msync.centos.org::CentOS/5 /var/www/centos
後はhttpなり、ftpなりで共有する。