1.
virtualbox 설치 - OX x host 버전 4.3.10
https://www.virtualbox.org/wiki/Downloads
2.
vagrant 설치 - mac 버전 1.6.3 (2.0이 조만간 나온다고 한다. 기능이 훨씬 좋아져서 기대가 됨)
https://www.vagrantup.com/downloads.html
3.
특정 디렉토리로 이동 ($ mkdir -p vagrant-test; cd vagrant-test)
1) box image 추가
$ vagrant box add precise64 http://files.vagrantup.com/precise64.box
2) box init
$ vagrant init precise64
3) box up
$ vagrant up
또는 아래와 같이 진행한다. (다운로드 속도가 더 빠르다...)
1) box image 추가
$ vagrant box add hashicorp/precise64
(터미널에서 virtualbox image 선택)
2) box init
$ vagrant init hashicorp/precise64
3) box up
$ vagrant up
4. 연결
$ vagrant ssh
먼가 꼬였거나 이상하다 싶으면 특정 파일들을 삭제하고 다시 진행한다.
$ rm -rf vagrant-test/.vagrant (vagrant meta 파일)
$ rm -rf ~/.vagrant.d (여기에 다운 받은 이미지와 meta 파일이 저장되어 있다.)
'Ansible-Puppet-Chef' 카테고리의 다른 글
[ansible] directory 가 없을 때 생성하기 (if directory not exists, make the directory) (0) | 2014.06.25 |
---|---|
[ansible] whitespace, indent (0) | 2014.06.18 |
[ansible] oracle java 7 설치하기 (0) | 2014.06.18 |
[ansible] 디버그하기 ( debug ) - echo, debug, tags, step (0) | 2014.06.18 |
[ansible] MAC OS에서 ansible 설치 & 이슈 (0) | 2014.06.13 |