일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- g++ 업데이트
- c3 축 가리기
- subporcess path
- selinux port 등록
- 백준
- snmp
- semanage
- 정규식 활용
- regex_search
- telegraf
- gcc regex
- python os
- c++ 정규식
- c3 초
- 정규식 문자열 출력
- influxdb 설치
- c3 second
- 정규식 컴파일
- c3 step graph
- gcc 업데이트
- 1697
- python popen
- InfluxDB
- c3 축 없애기
- grafana dashboard
- centos pyhon 설치
- snmp test
- python subprocess
- linux시간으로 변경
- CentOS7
- Today
- Total
목록분류 전체보기 (560)
리셋 되지 말자
리스트의 주요 연산 시간 복잡도 len(a) : O(1) a[i] : O(1) a[i:j] : O(k) a[i:j:k] : i~j-1 까지 리스트를 k 간격으로 뽑아냄 element in a : O(n) a.count(element) : O(n) a.index(element) : O(n) a.append(element) : O(1) a.pop() : O(1) a.pop(0) : O(n) => 사용하면 안됨 del a[i] : O(n) => i에 따라 다르며 최악의 경우 O(n) a.sort() : O(n log n) => timsort 사용. 최선의 경우 O(n) min(a), max(a) : O(n) a.reverse : O(n) a.insert(index, value)
https://stackoverflow.com/questions/42345235/how-to-specify-memory-cpu-limit-in-docker-compose-version-3 How to specify Memory & CPU limit in docker compose version 3 I am unable to specify CPU & memory for services specified in version 3 . With version 2 it works fine with "mem_limit" & "cpu_shares" parameters under the services . But it fails while us... stackoverflow.com 봤던 글도 다시보자
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 생..
https://stackoverflow.com/questions/7288814/download-a-file-from-nodejs-server-using-express Download a file from NodeJS Server using Express How can I download a file that is in my server to my machine accessing a page in a nodeJS server? I'm using the ExpressJS and I've been trying this: app.get('/download', function(req, res){ va... stackoverflow.com res.download(file)
https://m.blog.naver.com/PostView.naver?isHttpsRedirect=true&blogId=gjdeveloper&logNo=220890331194 [Linux 공통]wget 다른이름으로 저장 wget - Linux환경에서 사용하는 다운로드 프로그램. HTTP, HTTPS, FTP 등 다양한 프로토콜을 ... blog.naver.com 감사합니다
https://sevendollars.tistory.com/92 [Linux] grep으로 검색한 문자열에서 특정 문자 추출. uniq 중복 제거 안될 때. (cut uniq sort ) index.html 이라는 파일의 내용을 보자. cat index.html 엄청 길다. 여기서 "color"가 포함된 문자열을 출력해보자. cat index.html | grep "color" 2020/02/14 - [개발] - [Linux] 원하는 디렉토리/파일/문자.. sevendollars.tistory.com 감사합니다
문제 ssh로 처음 접속을 할 때, 아래와 같이 신뢰할 수 있냐 마냐를 물어본다. ssh vagrant@192.168.56.201 The authenticity of host '192.168.56.201 (192.168.56.201)' can't be established. ECDSA key fingerprint is SHA256:MhZLkVZMcsNgbx8bxcXy+fBeEjecMgKgx7HhmRwpfrQ. Are you sure you want to continue connecting (yes/no)? 해결 ssh-keyscan 커맨드를 통해 자동으로 known_hosts에 등록할 수 있다. - example $ cat known_hosts $ ssh-keyscan -t rsa 192.168.56.2..