일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- c3 축 없애기
- g++ 업데이트
- snmp
- python os
- snmp test
- semanage
- grafana dashboard
- 정규식 문자열 출력
- regex_search
- linux시간으로 변경
- c3 step graph
- 백준
- centos pyhon 설치
- python popen
- CentOS7
- 1697
- telegraf
- python subprocess
- gcc regex
- InfluxDB
- subporcess path
- gcc 업데이트
- influxdb 설치
- 정규식 컴파일
- c3 second
- c3 초
- c++ 정규식
- 정규식 활용
- selinux port 등록
- c3 축 가리기
- Today
- Total
목록Infra (24)
리셋 되지 말자
필요사항 Virtualbox Vagrant VSCode vagrant 로 가상머신 두개 생성 - Virtualbox의 호스트 네트워크 ip 대역 확인 : 여기선 192.168.56.x - Vagrantfile 작성 Vagrant.configure("2") do |config| #my ubuntu config.vm.define "my-ubuntu" do |cfg| cfg.vm.box = "ubuntu/bionic64" # 시스템 사양에 알맞게 cpu, memory 설정 cfg.vm.provider "virtualbox" do |vb| vb.name = "my-ubuntu" vb.cpus = 2 vb.memory = 2048 end cfg.vm.host_name = "my-ubuntu" # virtualbo..
https://docs.ansible.com/ansible/latest/collections/ansible/builtin/wait_for_connection_module.html ansible.builtin.wait_for_connection – Waits until remote system is reachable/usable — Ansible Documentation Note This module is part of ansible-base and included in all Ansible installations. In most cases, you can use the short module name wait_for_connection even without specifying the collectio..
https://docs.w3cub.com/ansible~2.9/modules/timezone_module Timezone – Configure Timezone Setting - Ansible 2.9 - W3cubDocs timezone – Configure timezone setting Synopsis This module configures the timezone setting, both of the system clock and of the hardware clock. If you want to set up the NTP, use service module. It is recommended to restart crond after changing the timez docs.w3cub.com
Vagrantfile Vagrant.configure("2") do |config| #ansible-client001 config.vm.define "ansible-client001" do |cfg| cfg.vm.box = "ubuntu/bionic64" cfg.vm.provider "virtualbox" do |vb| vb.name = "ansible-client001" vb.cpus = 2 vb.memory = 2048 end cfg.vm.host_name = "ansible-client001" cfg.vm.network "private_network", ip: "192.168.56.101", :adapter => 2 end #ansible-server config.vm.define "ansible-..
ssh key 동작 방식 대충 ssh key 생성부터 public key 배포하고, password 없이 로그인 자동화 하는 과정을 생각해보자 우선, private key와 public key를 분배하는 과정부터 생각해보자. Private key, Public key 생성과 분배 Ansible Server가 Ansible Client001에 접속해서 작업을 해야하는 상황을 가정한다. 즉, Ansible Server에서 패스워드 입력 없이 Ansible Client001에 접속이 가능해야 한다. 1. ssh key 생성 - Ansible Server에서 key 생성 ssh-keygen -t rsa Generating public/private rsa key pair. Enter file in which t..
Lightsail 이란? 간단하게 구성할 수 있는 VPS (Virtual Private Server) 라고 한다. 잘 정리된 글이 있어서 설명을 대신한다. https://www.44bits.io/ko/keyword/amazon-lightsail EC2 대신 쓰는 이유? 간단하게 구현할 수 있다. 무엇보다도 가격이 저렴하다. 시스템 사양 os : ubuntu 18.04 terraform version : 0.14.8 하게될 것 Lightsail 생성을 위한 Lightsail 전용 IAM 사용자 생성 Lightsail IAM 사용자에 대한 권한 부여 Lightsail 전용 keypair 생성 ubuntu 18.04 이미지의 Lightsail 인스턴스 생성 (사양 : micro) aws cli 설치 (Ligh..
https://stackoverflow.com/questions/55023605/aws-and-terraform-default-egress-rule-in-security-group AWS and Terraform - Default egress rule in security group There is a repeatable configuration that I see in many Terraform projects where the provider is AWS: The configuration of an outbound (egress) rule to allow ALL outbound traffic. As far as I under... stackoverflow.com outbound 를 all 로 설정할수..
환경 os : ubuntu18.04 가입된 aws 계정 terraform : 설치방법 참고 사이트 https://www.44bits.io/ko/post/terraform_introduction_infrastrucute_as_code https://honglab.tistory.com/114 소스코드 https://github.com/Penguin135/IaC/tree/main/terraform/aws example-2 IAM 계정 생성 및 ACCESS KEY 획득 root 계정의 권한으로 aws에서 어떤 작업을 하는건 권장되지 않는 방식이다. 특정 작업의 최소권한만 부여하는것이 중요하다. 최소권한까지는 아니더라도 큰 덩어리로 권한을 가진 계정을 따로 생성하여 사용해본다. 1. aws 콘솔 로그인 IAM 생..