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 파일이 저장되어 있다.)



Posted by '김용환'
,