일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 컨테이너
- multivm
- mongodb operator
- docker
- 파이썬
- devops #engineer
- RSS
- 초간단파이썬
- springboot
- nginx
- ioredirection
- namespace
- k8s
- 쿠버네티스
- java
- httpd실행
- Vagrant
- 도커
- Strimzi
- devops #jenkins
- Kubernetes
- python
- Engineer
- container
- DOIK
- bash
- variable
- WEB
- linux
- aws #engineer
- Today
- Total
목록전체 글 (81)
샤인의 IT (막 적는) 메모장
노션에 정리했던 내용 VM 구성 VirtualBox 설치 Vagrant Setup vagrant init #Vagrantfile vi Vagrantfile Vagrant.configure("2") do |config| config.vm.box = "geerlingguy/centos7" #네트워크 private 설정 config.vm.network "private_network", ip: "192.168.100.111" #네트워크 Public 설정 config.vm.network "public_network" #리소스 설정 config.vm.provider "virtualbox" do |vb| # # Display the VirtualBox GUI when booting the machine vb.gui ..
노션에서 정리한 내용 아키텍처 Codecommit → codebuild → codedeploy → beanstalk Elastic Beanstalk AWS DEVOPS Service 개발자를 위한 빠른 배포와 어플리케이션을 관리할 수 있는 서비스 Create App → Platform 선택 → App Type 설정 Software → Proxy 서버(아파치,Nginx) → S3 Log 스토리지 → Log Stream 설정 Instance → 볼륨 설정 → SG 설정 Capacity → Auto Scaling Group → Instance Type → AZ 설정 LoadBalancer → LB 설정 → Access 로그 Rolling Update → 업데이트 Type 설정 → Login Key 설정 AWS..
노션에 작성했는 내용 정리 S3에 로그를 저장하여 Cloudwatch에서 확인 httpd 로그 /var/log/httpd에서 access.log 확인 가능 /var/log/httpd 에 있는 내부 로그들을 Archive s3 생성 로그 저장용 버킷 생성 yum -y install awscli #IAM 에 S3 권한을 부여 후 User 생성 후 Access Key 복사 aws configure aws s3 ls aws s3 cp access.log.tar.gz s3://web-logs/ IAM role 생성 log admin role 생성 s3fullAccess / cloudwatchlogsfullAccess Policy 지정 WEB EC2 인스턴스 IAM role 변경 하여 생성한 role 설정 웹서버 ..