일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- c3 step graph
- CentOS7
- 정규식 활용
- semanage
- c3 축 가리기
- 백준
- python subprocess
- regex_search
- linux시간으로 변경
- selinux port 등록
- subporcess path
- c++ 정규식
- snmp test
- 1697
- c3 초
- snmp
- grafana dashboard
- gcc regex
- gcc 업데이트
- c3 축 없애기
- c3 second
- python os
- g++ 업데이트
- centos pyhon 설치
- 정규식 컴파일
- InfluxDB
- telegraf
- python popen
- influxdb 설치
- 정규식 문자열 출력
- Today
- Total
목록Infra (24)
리셋 되지 말자
https://donggu1105.tistory.com/m/203 [AWS] EC2 디스크 사용량 부족할때 슬랙으로 알림보내기! 디스크 사용량 모니터링 초 간단 방법 긴급 문제 발생 ! 주말에 쉬고있는데 회사 사업팀 동료가 회사 서비스 페이지가 접속이 안된다고 연락이왔다. 로그를 보니 대충 DB가 작동을 안하길래 원인을 파악해보니 DB를 올려놓은 EC2 서버 donggu1105.tistory.com 감사합니다. IP=$(hostname -I); LIMIT=90; slack_webhook_url="https://hooks.slack.com/{Slack Webhook URL}" root_disk_used=$(df / | grep ^/ | awk '{print $5}'); root_disk_used=${roo..
코드 --- - name: Ansible test hosts: localhost vars: ansible_python_interpreter: /usr/bin/python3 tasks: - name: terminate AWS instance ec2: state: 'absent' region: 'ap-northeast-2' instance_ids: 'i-09ef38a261043aaba'
스크립트 --- - name: Ansible test hosts: localhost vars: ansible_python_interpreter: /usr/bin/python3 vpc_name: tmp_VPC vpc_cidr_block: 10.0.0.0/16 gateway_name: tmp_gateway_name subnet_name: tmp_subnet_name subnet_cidr_block: 10.0.0.0/24 routing_table_name: tmp_routing_table_name region: ap-northeast-2 avail_zone_of_region: ap-northeast-2a security_group_name: tmp_security_group_name key_name: temp..
참고 공식 문서 : https://www.packer.io/docs/post-processors/manifest 사용법 example { "post-processors": [ { "type": "manifest", "output": "manifest.json", "strip_path": true, "custom_data": { "my_custom_data": "example" } } ] } 실제 적용 example (docker가 설치된 aws 이미지 생성) { "variables": { "name": "ubuntu-docker-ce-base", "aws-region": "ap-northeast-2", "ami-name": "packer_ubuntu_18.04 {{timestamp}}", "ec2-ins..
https://runebook.dev/ko/docs/ansible/user_guide/playbooks_variables Ansible - 변수 사용 - Ansible uses variables to manage differences between systems. With Ansible, you - 한국어 변수 사용 Ansible uses variables to manage differences between systems. With Ansible, you can execute tasks and playbooks on multiple different systems with a single command. To represent the variations among those different syste..
참고 사이트 https://honglab.tistory.com/44 [Ansible] Ansible 기초 개념과 AWS에서 사용하기(VPC, EC2) 1. 앤서블이란? IaC(Infrastructure as Code)를 실천하는 자동화 관리 도구 YAML 형식의 플레이북을 실행시키는 형식으로 자동화 구현 2. 멱등성 앤서블은 멱등성(Idempotency)이란 특징을 가진다 이는 여러 honglab.tistory.com 감사합니다.
참고 사이트 - https://www.44bits.io/ko/post/amazon-ecr-login-by-awscliv2 - https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/ecr_repository 실습 환경 vagrant로 centos/7 생성 후, 실행 - Vagrantfile Vagrant.configure("2") do |config| #ansible-client001 config.vm.define "server" do |cfg| cfg.vm.box = "centos/7" cfg.vm.provider "virtualbox" do |vb| vb.name = "server" vb.memory = 2048 vb.c..