0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

VirtualBox+Vagrant+centOS-7.3+Windows10で環境構築

Last updated at Posted at 2019-04-23

##インストール

####VirtualBoxをインストール
https://www.virtualbox.org/wiki/Downloads

####Vagrantをインストール
https://www.vagrantup.com/downloads.html

##仮想マシンの準備
####利用するBOXのダウンロード
コマンドプロンプトを立ち上げて以下を実行。

vagrant box add bento/centos-7.3  --provider virtualbox

##Vagrantfileの作成
任意のフォルダを作り以下をコマンドプロンプトで実行

> mkdir mycentos
> cd mycentos
> vagrant init bento/centos-7.3

実行したディレクトリに設定ファイル Vagrantfile ができるので確認。

##Vagrantfileの変更
作成された環境設定ファイル Vagrantfile ファイルを編集します。
以下の部分のコメントを外す

  • IPアドレスの設定
 config.vm.network "private_network", ip: "192.168.33.10"

##仮想マシンの起動
コマンドプロンプトで実行

vagrant up

##ログイン
SSHでログイン

putty
https://www.chiark.greenend.org.uk/~sgtatham/putty/latest.html

アドレス:192.168.33.10
ポート:22
ユーザ名:vagrant
パスワード:vagrant

##仮想マシンの停止

vagrant halt

VirtualBoxで確認すると「電源オフ」と表示されます。

##参考
https://eng-entrance.com/virtualbox-install
https://eng-entrance.com/linux-vagrant-install

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?