2012年12月22日土曜日

MongoDBをUbuntuServer12.04へインストール

MongoDBをUbuntuServer12.04へインストールしてみたので、なんとくなくメモ。

10genのリポジトリを追加すると、apt-getコマンドでインストールできるので簡単。



1)PGP鍵のインストール
 $sudo apt-key adv --keyserver keyserver.ubuntu.com --recv 7F0CEB10

2) 10genリポジトリの作成
 $sudo vim /etc/apt/sources.list.d/10gen.list
-----内容-----
 deb http://downloads-distro.mongodb.org/repo/ubuntu-upstart dist 10gen
----ここまで--

3) aptのアップデート
 $sudo apt-get update

4) MongoDBのインストール
 $sudo apt-get install mongodb-10gen

5) 一応確認
 $mongo --version

UbuntuServer 12.04 固定IPアドレス化

Ubuntu Server12.04をインストールしたら、DHCPでIPアドレスを取得するようになっていた。
固定IPアドレスに変更してみたので、なんとくなくメモ
 
 /etc/network/interfacesでDHCPの部分をコメントアウトし、必要な情報を設定する。

1) 設定を変更
$sudo  vi /etc/network/interfaces
----------192.168.1.100に設定する例----------------
# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).

# The loopback network interface
auto lo
iface lo inet loopback

# The primary network interface
auto eth0
#iface eth0 inet dhcp
iface eth0 inet static
address 192.168.1.100
netmask 255.255.255.0
network 192.168.1.0
broadcast 192.168.1.255
gateway 192.168.1.1
--------------------------ここまで---------------








2) eth0の再起動
$sudo ifdown eth0
$sudo ifup eht0