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
- kubectl명령어
- pod
- ELB
- EC2
- private repostiroy
- describe-instances
- 명령어
- sql 공유
- React Native
- 쿠버네티스
- yaml예시
- amazon ebs활용
- aws cli
- 쿠버네티스교과서
- Configmap
- statefulset
- linux 파일복사
- 서버간 파일전송
- docker myql
- cli ec2
- nexus proxy
- k8s
- aws cli ec2
- kubectl
- amazon ebs종류
- Ansible
- SecurityContextHolder
- amazon ebs
- jenkins parameter
- docker
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