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
- Configmap
- 명령어
- 쿠버네티스
- pod
- docker
- aws cli
- 답십리 파크자이
- 9억이하
- 응봉현대아파트
- EC2
- describe-instances
- linux 파일복사
- 황학동롯데캐슬
- 5호선
- k8s
- statefulset
- 행당한진아파트
- 2025년정책
- kubectl
- 천호태영아파트
- private repostiroy
- 행당역
- 아파트
- sql 공유
- 행당대림아파트
- nexus proxy
- React Native
- ELB
- 서버간 파일전송
- Ansible
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
<Copy 모듈>
docs.ansible.com/ansible/2.4/copy_module.html
♪ 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