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
- 행당한진아파트
- Ansible
- 신혼부부아파트
- 명령어
- 6억이하아파트
- 천호태영아파트
- EC2
- ELB
- 답십리 파크자이
- 아파트
- 응봉현대아파트
- 미아뉴타운sk북한산아파트
- 2025년정책
- React Native
- docker
- 쿠버네티스
- 9억이하
- Configmap
- 행당역
- statefulset
- describe-instances
- 행당대림아파트
- k8s
- pod
- 서버간 파일전송
- kubectl
- 황학동롯데캐슬
- 5호선
- aws cli
- 옥수삼성아파트
Archives
- Today
- Total
게으름을 위한 부지런한 게으름뱅리' 블로그
[Ansible] fetch, copy 모듈을 사용하여 파일 복사하기 본문
반응형
♬ Fetch, Copy 모듈 사용하기
ansible(앤서블)의 Fetch, Copy 모듈은 linux의 scp명령어 동작방식과 유사하게 동작합니다.
아래는 기본적인 Fetch와 Copy 모듈 사용에 관한 설명으로 자세한 설명은 Ansible 가이드 페이지에서 확인할 수 있습니다.
<Fetch 모듈>
docs.ansible.com/ansible/2.3/fetch_module.html
fetch - Fetches a file from remote nodes — Ansible Documentation
You are reading an unmaintained version of the Ans
docs.ansible.com
<Copy 모듈>
docs.ansible.com/ansible/2.4/copy_module.html
copy - Copies files to remote locations — Ansible Documentation
You are reading an unmaintained version of the Ans
docs.ansible.com
♪ Fetch 모듈
fetch 모듈은 Remote Server에서 로컬로 파일을 복사할 때 사용합니다.
Fetch 모듈 사용하기
- name: Test Fetch
hosts: {{ RemoteServer }}
remote_user: ubuntu
tasks:
- name: Copying files from remote server
fetch:
src: "/path/to/RemoteServerFilePath"
dest: "/path/to/localhostPath"
- src: Remote server의 파일 위치
- dest: 복사할 localhost의 위치
♪ Copy 모듈
copy 모듈은 로컬의 파일을 Remote Server로 복사할 때 사용합니다.
Copy 모듈 사용하기
- name: Test Copy
hosts: {{ RemoteServer }}
remote_user: ubuntu
tasks:
- name: Copying files from remote server
copy:
src: "/path/to/localhostFilePath"
dest: "/path/to/RemoteServerPath"
- src : localhost의 파일 위치
- dest: 복사할 Remote Server의 위치
반응형
'IT > Ansible' 카테고리의 다른 글
[Ansible] wait_for 와 wait_for_connection 사용하기 (0) | 2021.01.14 |
---|---|
[Ansible] lineinfile 모듈을 사용하여 파일 수정하기 (0) | 2021.01.13 |
[Ansible] Synchronize 모듈을 사용하여 Remote to Remote 파일전송하기 (0) | 2020.12.18 |
Comments