반응형
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 |
Tags
- variable
- linux
- httpd실행
- mongodb operator
- Kubernetes
- WEB
- java
- Engineer
- devops #jenkins
- namespace
- 파이썬
- docker
- nginx
- bash
- RSS
- 쿠버네티스
- 초간단파이썬
- devops #engineer
- python
- DOIK
- springboot
- Vagrant
- 컨테이너
- k8s
- ioredirection
- 도커
- container
- multivm
- aws #engineer
- Strimzi
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