반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- RSS
- docker
- springboot
- Vagrant
- httpd실행
- 도커
- Engineer
- variable
- 파이썬
- mongodb operator
- DOIK
- devops #jenkins
- namespace
- aws #engineer
- devops #engineer
- container
- 쿠버네티스
- 컨테이너
- ioredirection
- bash
- linux
- Strimzi
- java
- k8s
- Kubernetes
- WEB
- 초간단파이썬
- multivm
- nginx
- python
Archives
- Today
- Total
목록multivm (1)
샤인의 IT (막 적는) 메모장
[Vagrant] Multi VM
여러 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 ..
IaC/Vagrant
2022. 1. 17. 17:20