ページ

2015年5月9日土曜日

Vagrant導入

Mac上で実験的にサーバを立てる際にVagrantがあれば便利そうなので導入してみた。

事前にVirtualBoxのインストールが必要なのでインストールする。
※VMWare Fusionでもできるが有料なのでVirtualBoxをインストールorz























現時点での最新版は4.3.26
インストール完了




















次にVagrantをインストール
公式サイト
https://www.vagrantup.com













現時点のバージョンはVer1.7.2

$ vagrant --version
Vagrant 1.7.2

インストール完了!!

仮想マシン作成&起動の流れ


  1. BOX(テンプレート)の取得
  2. 仮想マシンの初期化
  3. 仮想マシン起動



1. BOX(テンプレート)の取得
http://www.vagrantbox.es

上記サイトから作成したいテンプレートをダウンロードする
$ vagrant box add centos7 https://github.com/holms/vagrant-centos7-box/releases/download/7.1.1503.001/CentOS-7.1.1503-x86_64-netboot.box
==> box: Adding box 'centos7' (v0) for provider: 
    box: Downloading: https://github.com/holms/vagrant-centos7-box/releases/download/7.1.1503.001/CentOS-7.1.1503-x86_64-netboot.box
==> box: Successfully added box 'centos7' (v0) for 'virtualbox'!

BOXに追加されているか確認
$ vagrant box list
centos7 (virtualbox, 0)


2. 仮想マシンの初期化

特定のディレクトリを作成し実行
$ vagrant init centos7
A `Vagrantfile` has been placed in this directory. You are now
ready to `vagrant up` your first virtual environment! Please read
the comments in the Vagrantfile as well as documentation on
`vagrantup.com` for more information on using Vagrant.
$ ls
Vagrantfile

Vagrantfileが作られる。そしてVagrantfileがあるディレクトリで起動
$ vagrant up
Bringing machine 'default' up with 'virtualbox' provider...
==> default: Importing base box 'centos7'...
==> default: Matching MAC address for NAT networking...
==> default: Setting the name of the VM: centos7_default_1431140154221_49934
==> default: Clearing any previously set forwarded ports...
==> default: Clearing any previously set network interfaces...
==> default: Preparing network interfaces based on configuration...
    default: Adapter 1: nat
==> default: Forwarding ports...
    default: 22 => 2222 (adapter 1)
==> default: Booting VM...
==> default: Waiting for machine to boot. This may take a few minutes...
    default: SSH address: 127.0.0.1:2222
    default: SSH username: vagrant
    default: SSH auth method: private key
    default: Warning: Connection timeout. Retrying...
    default: 
    default: Vagrant insecure key detected. Vagrant will automatically replace
    default: this with a newly generated keypair for better security.
    default: 
    default: Inserting generated public key within guest...
    default: Removing insecure key from the guest if its present...
    default: Key inserted! Disconnecting and reconnecting using new SSH key...
==> default: Machine booted and ready!
==> default: Checking for guest additions in VM...
==> default: Mounting shared folders...
    default: /vagrant => /Users/ユーザ名/Documents/develop/vagrant/boxes/centos7

VirtualBoxを見てみると




















ちゃんとできている^^

便利なコマンド

vagrant status           ・・・現在のステータス表示
vagrant suspend       ・・・一時停止
vagrant resume        ・・・suspendからの復帰
vagrant halt              ・・・シャットダウン
vagrant up                ・・・起動
vagrant reload          ・・・再起動
vagrant destory        ・・・仮想マシン自体を削除
vagrant ssh               ・・・仮想マシンにssh接続

ホストから接続できるようにする
一番簡単な方法
Vagrantfileの以下をコメント削除





































これで192.168.33.10でアクセスできる。




0 件のコメント:

コメントを投稿