#手順
1.VirtualBoxとVagrantをインストール
2.仮想マシン用のファルダを作成
3.boxの用意(OSのイメージファイルのようなもの)
4.vagrant init
5.vagrant up
#1.VirtualBoxとVagrantをインストール
VirtualBoxをインストール
https://www.virtualbox.org/wiki/Downloads
Vagrantをインストール
https://www.vagrantup.com/downloads.html
#2.仮想マシン用のフォルダを作成
今回はCentOS7を入れるのでWindows Power Shellで以下のフォルダを作成しました。
C:\Users\ユーザー名\MyVagrant\CentOS7
#3.boxの用意(OSのイメージファイルのようなもの)
vagrant Cloud または vagrantbox.es でboxを追加します。
####1.Vagrant Cloud
https://app.vagrantup.com/boxes/search
Vagrant Cloudから入れる場合は以下のコマンドです。
$ vagrant box add {名前}
####2.Vagrant box.es
http://www.vagrantbox.es/
vagrant box.esから入れる場合は以下のコマンドです。
$ vagrant box add {名前} {url}
####今回はVagrant CloudのCentOS7のboxを追加するので以下のコマンドを入力します。
$ vagrant box add centos/7
※vagrant box listで 現在あるboxの一覧が確認でき、centos/7が追加された事が分かります。
$ vagrant box list
centos/7
#4.vagrant init
$ vagrant init
Vagrantfileがフォルダ内に作成されます。
#5.vagrant up
上記コマンドでVagrantが起動され、Virtual Box上にCentOS7が作られます。
#操作コマンド
コマンド | 機能 |
---|---|
vagrant init | Vagrantの初期化 |
vagrant box add {名前} | boxの追加 |
vagrant box remove | boxの削除 |
vagrant box list | box一覧の確認 |
vagrant up | 仮想マシンの起動 |
vagrant halt | 仮想マシンの停止 |
vagrant suspend | 仮想マシンを一時停止 |
vagrant resume | 仮想マシン一時停止からの復帰 |
vagrant ssh | 仮想マシンにsshでログイン |
vagrant status | 仮想マシンの起動状態を確認 |
vagrant destroy | 仮想マシンを破棄 |
#参照元
Vagrantで仮想環境構築入門
https://webbibouroku.com/Blog/Article/vagrant