일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- vagrant kubernetes
- HTTPD
- permission
- chatGPT
- 엑셀파일명변경
- docker
- docker network
- yum
- pvcreate
- Kubernetes
- mount
- 날짜변경
- swapon
- docker image
- tar
- 리다이렉션
- newbingai
- MSBing
- journalctl
- 랜카드인식불량
- chmod
- 프로세스
- nmcli
- vgcreate
- lvcreate
- M365필터
- ansible
- firewalld
- 같은폴더
- ssh
- Today
- Total
목록ansible (2)
becool
09:33 review adhoc 명령어 추가 설명 [user@ansible-server work]$ ansible all -m copy -a "src=/etc/resolv.conf dest=/tmp/" [user@ansible-server work]$ ansible all -m shell -a "ls -l /tmp/resolv.conf" [user@ansible-server work]$ ansible all -m user -a "name=work password=1234" [user@ansible-server work]$ ansible all -m user -a "name=work state=absent" [user@ansible-server work]$ ansible webservers -m yum ..
9:33 review ansible 모듈 : https://docs.ansible.com/ansible-core/devel/collections/ansible/builtin/index.html#plugins-in-ansible-builtin ansible ad-hoc 명령어 ansible [pattern] -m MODULE [-a ARGUMENT] ※ shell 모듈은 멱등성을 지원하지 않고, 결과값에 지속적으로 CHANGED로 보여지게되므로 상황에 맞게 사용. [user@ansible-server work]$ ansible all -m shell -a "yum list |grep python2" [user@ansible-server work]$ ansible webservers -m yum -a "na..