반응형
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
- springboot
- Engineer
- namespace
- devops #jenkins
- Strimzi
- bash
- devops #engineer
- Vagrant
- 쿠버네티스
- Kubernetes
- DOIK
- 도커
- httpd실행
- mongodb operator
- k8s
- container
- docker
- aws #engineer
- variable
- java
- WEB
- python
- linux
- 파이썬
- ioredirection
- 초간단파이썬
- multivm
- nginx
- 컨테이너
Archives
- Today
- Total
샤인의 IT (막 적는) 메모장
[Vagrant] Sync Directory 본문
반응형
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:43 .
dr-xr-xr-x. 18 root root 239 Jan 14 13:09 ..
drwxrwxrwx. 1 vagrant vagrant 0 Jan 15 04:43 devopsdir
-rwxrwxrwx. 1 vagrant vagrant 0 Jan 15 04:43 test.txt
drwxrwxrwx. 1 vagrant vagrant 0 Jan 14 10:49 .vagrant
-rwxrwxrwx. 1 vagrant vagrant 506 Jan 15 04:37 Vagrantfile
VM에서 확인 시
Vagrant 파일 수정
#(참고) Shell을 수행할 때 해당 파일의 포맷을 변경해야 할 수도 있음!
#VagrantFile에 디렉토리 싱크 설정 후 reload
Vagrant.configure("2") do |config|
...
#Sync Directory 설정 <host 디렉토리> <vm 디렉토리>
#Host 디렉토리에 백슬래시 \ 2개 주의
config.vm.synced_folder "D:\\mydata", "/opt/scripts"
...
Host에 디렉토리 생성
VM에 접속하여 디렉토리 생성 후 확인
Shin@DESKTOP-EAFOCLM MINGW64 /d/vagrant/centos7
$ vagrant reload
==> default: Attempting graceful shutdown of VM...
==> default: Checking if box 'geerlingguy/centos7' version '1.2.25' is up to date...
==> default: Clearing any previously set forwarded ports...
==> default: Clearing any previously set network interfaces...
==> default: Preparing network interfaces based on configuration...
default: Adapter 1: nat
default: Adapter 2: hostonly
default: Adapter 3: bridged
==> default: Forwarding ports...
default: 22 (guest) => 2222 (host) (adapter 1)
==> default: Running 'pre-boot' VM customizations...
==> default: Booting VM...
==> default: Waiting for machine to boot. This may take a few minutes...
default: SSH address: 127.0.0.1:2222
default: SSH username: vagrant
default: SSH auth method: private key
==> default: Machine booted and ready!
==> default: Checking for guest additions in VM...
==> default: Configuring and enabling network interfaces...
==> default: Mounting shared folders...
default: /vagrant => D:/vagrant/centos7
default: /opt/scripts => D:/mydata
==> default: Machine already provisioned. Run `vagrant provision` or use the `--provision`
==> default: flag to force provisioning. Provisioners marked to run always will still run.
Shin@DESKTOP-EAFOCLM MINGW64 /d/vagrant/centos7
$ vagrant ssh
[vagrant@localhost ~]$ cd /opt/scripts/
[vagrant@localhost scripts]$ mkdir isoptscript
VM에서 디렉토리 생성하고 host에서 Sync된 폴더 확인
반응형
'IaC > Vagrant' 카테고리의 다른 글
[Vagrant] Multi VM (0) | 2022.01.17 |
---|---|
[Vagrant] Provisioning (0) | 2022.01.16 |
[Vagrant] IP 및 리소스 설정 (0) | 2022.01.16 |
Comments