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
- scala
- leetcode
- redis
- zookeeper
- 파이썬
- 동적프로그래밍
- HBase
- dynamic programming
- boj
- 스칼라
- 코드워
- codewars
- 주키퍼
- 프로그래머스
- 자바
- Python
- 리눅스
- Linux
- gradle
- go
- Go언어
- programmers
- docker
- DP
- OOM
- 문제풀이
- golang
- 알고리즘
- 튜토리얼
- Java
Archives
- Today
- Total
파이문
[Ansible] 디렉토리 생성 하기 본문
728x90
서버에 환경 설정 배포할 일이 있는데 그동안 ssh 나 fabric 이나 이런것들로만 하다가 ansible 을 써보기로 했다. (ansible 1일차)
test 란 유저로 /path/to/test 란 디렉토리를 생성하는 예제이다. (become 옵션을 yes 로 하면 sudo 권한을 준 것과 같다.)
#
#
# 디렉토리 생성 예제
#
#
- hosts: tester
remote_user: test
tasks:
- name: Create a test1 directory if it does not exist
become: yes
file:
owner: test
group: test
path: /path/to/test1
state: directory
mode: 0755
hosts 란 키 값에 tester 를 넣었다. 실행할 때 인벤토리 옵션으로 tester 란 키를 가진 hosts 파일 정보를 넘겨야 한다. hosts 파일이 아래와 같이 생겨야 하고 (경로는 /path/to/hosts/sample)
[tester]
some-example-host.com
실행할 땐 요렇게 주면 된다.
ansible-playbook create_default_dir.yml -i /path/to/hosts/sample
'TIL' 카테고리의 다른 글
[Redis] 레디스는 싱글 쓰레드인데 어떻게 동시에 접근하지? (0) | 2020.10.27 |
---|---|
[HBase] 테이블 별 용량 확인하기 (0) | 2020.10.20 |
[Java] FailSafe 를 사용한 Java Retry 예제 (0) | 2019.09.24 |
[Python] xn-- 과 같이 시작하는 URL 을 사람이 볼 수 있는 문자로 변경하기 (0) | 2019.05.09 |
[Scala] 스칼라에서 for loop 2개 동시에 순회하기 (0) | 2019.05.09 |
Comments