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 |
Tags
- K8S
- audit
- docker
- 디렉토리
- GPU
- Python
- Linux
- Shell
- 크롬
- Kubernetes
- Chrome
- bash
- 파이썬
- GNOME
- Elk
- C
- 서울시민카드
- log
- Elasticsearch
- syslog
- Audit Log
- JSON
- RHEL
- zabbix
- yum
- 빅데이터
- PostgreSQL
- rsyslog
- CentOS
- centos 7.5
Archives
- Today
- Total
목록chmod (1)
Sysops Notepad
[Linux] Ansible을 용한 디렉토리 755, 파일 644로 권한 설정하기
Ansible을 용한 디렉토리 755, 파일 644로 권한 설정하는 방법입니다. - name: "Mode 755 for directory and 644 for files" file: path: "/home/test" mode: u=rwX,g=rX,o=rX recurse: yes 만약 그냥 쉘에서 입력하고 싶으면 아래와 같이 입력하시면 됩니다. # find /home/test -type d -exec chmod 755 {} \;" # find /home/test -type f -exec chmod 644 {} \;"
업무/etc
2021. 4. 13. 16:03