2012-01-01から1ヶ月間の記事一覧

CentOS5.7にRubyを入れる

libyaml-develが必要らしいので入れる。 CentOS標準レポジトリにはないのでEPELから入れる。 # cd /usr/local/src # wget http://download.fedora.redhat.com/pub/epel/5/x86_64/epel-release-5-4.noarch.rpm # rpm -Uvh epel-release-5-4.noarch.rpm # yum …

CentOS5.7にMongoDBを入れる

# vi /etc/yum.repos.d/10gen.repo [10gen] name=10gen Repository baseurl=http://downloads-distro.mongodb.org/repo/redhat/os/x86_64 gpgcheck=0 enabled=0 # yum --enablerepo=10gen install mongo-10gen-server.x86_64 # mongod --version db version …