일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- 도커
- Vagrant
- namespace
- httpd실행
- multivm
- ioredirection
- 파이썬
- 초간단파이썬
- variable
- bash
- aws #engineer
- container
- devops #engineer
- 쿠버네티스
- WEB
- 컨테이너
- RSS
- docker
- k8s
- devops #jenkins
- DOIK
- springboot
- python
- Kubernetes
- linux
- java
- Strimzi
- nginx
- Engineer
- mongodb operator
- Today
- Total
목록IaC/Vagrant (4)
샤인의 IT (막 적는) 메모장
여러 VM을 설정 예를 들어 WEB - WAS - DB 3Tier 구조의 5대의 VM을 생성하고 싶다! 면 config.vm.define을 각 VM에 맞게 정의한다. #Vagrantfile Vagrant.configure("2") do |config| config.hostmanager.enabled = true config.hostmanager.manage_host = true ### Nginx VM ### config.vm.define "web01" do |web01| web01.vm.box = "ubuntu/xenial64" web01.vm.hostname = "web01" web01.vm.network "private_network", ip: "192.168.33.11" end ### tomcat ..
Provisioning VagrantFile 해당 VM에서 실행하는 명령어를 VagrantFile에 정의할 수 있다. #Vagrantfile 내 provisioning 설정 Vagrant.configure("2") do |config| ... #프로비저닝 설정 부분 해당 명령어를 순차적으로 실행함 config.vm.provision "shell", inline: default: Matching MAC address for NAT networking... ==> default: Checking if box 'geerlingguy/centos7' version '1.2.25' is up to date... ==> default: Setting the name of the VM: centos7_default_..
Sync Directory VM 내 Sync 된 디렉토리 확인 (default 경로는 /vagrant) 해당 VM 내 /vagrant에서 파일 생성해도 Windows에서도 확인 가능함 Host에서 디렉토리 생성 후 해당 VM의 /vagrant 접속하여 확인 Shin@DESKTOP-EAFOCLM MINGW64 /d/vagrant/centos7 $ mkdir devopsdir Shin@DESKTOP-EAFOCLM MINGW64 /d/vagrant/centos7 $ touch test.txt [vagrant@localhost ~]$ cd /vagrant/ [vagrant@localhost vagrant]$ ls -al total 4 drwxrwxrwx. 1 vagrant vagrant 0 Jan 15 04:4..
Vagrant OS 설치 없음 이미지를 통해 VM 세팅 Vagrant Cloud에서 이미지를 다운로드 받음. Vagrantfile을 통해 관리 #global status 확인 Shin@DESKTOP-EAFOCLM MINGW64 /d/vagrant/centos7 $ vagrant global-status id name provider state directory ------------------------------------------------------------------------ 1db2c86 default virtualbox running D:/vagrant/centos7 The above shows information about all known Vagrant environments on ..