** 動作環境 [#k9bb21a2]

- Windows 7 (32bit)
- Oracle VM VirtualBox 5.0.16
- Cygwin

** 仮想マシン作成・起動 [#of04b149]

- CentOS7.0(64bit)のbox(テンプレート)を追加

 $ vagrant box add CentOS7.0 https://github.com/tommy-muehle/puppet-vagrant-boxes/releases/download/1.1.0/centos-7.0-x86_64.box

- boxのテンプレート一覧: http://www.vagrantbox.es/

- box一覧表示

 $ vagrant box list
 CentOS7.0 (virtualbox, 0)

- 仮想マシン用ディレクトリ作成

 $ mkdir ~/MyVagrant
 $ cd MyVagrant
 $ mkdir CentOS7.0
 $ cd CentOS7.0

- vagrantの初期化

 $ vagrant init CentOS7.0
 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.

- Vagrantfileを編集してIP記述行のコメントアウトを解除

 $ vi Vagrantfile
 --------------------
 config.vm.network "private_network", ip: "192.168.33.10"
 --------------------

- boxを利用して仮想マシン起動

 $ vagrant up

- SSH接続確認

 $ vagrant ssh
 Welcome to your Vagrant-built virtual machine.
 [vagrant@localhost ~]$

- 状態確認

 $ vagrant status

- 停止

 $ vagrant halt

** Webサーバーの設定 [#a3ebb2f3]

 $ sudo yum -y install httpd
 $ sudo systemctl start httpd.service    // Apacheを起動
 $ sudo systemctl enable httpd.service    // Apacheを常時起動
 $ sudo systemctl stop firewalld    // ファイアーウォールを停止
 $ sudo systemctl disable firewalld    // ファイアーウォールを常時停止
 $ ps aux | grep httpd

** Hello World! [#x1b47fcc]

 $ cd /var/www/html
 $ vi hello.js
 --------------------
 alert("Hello World!");
 --------------------

- &color(red){※};hello.jsが保存できない(4/5)

トップ   新規 一覧 単語検索 最終更新   ヘルプ   最終更新のRSS