일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- python subprocess
- snmp test
- influxdb 설치
- semanage
- python popen
- python os
- c3 step graph
- gcc regex
- InfluxDB
- snmp
- selinux port 등록
- c3 second
- c3 축 가리기
- c++ 정규식
- c3 축 없애기
- g++ 업데이트
- 1697
- gcc 업데이트
- CentOS7
- centos pyhon 설치
- telegraf
- 정규식 컴파일
- c3 초
- grafana dashboard
- linux시간으로 변경
- subporcess path
- 정규식 활용
- 백준
- regex_search
- 정규식 문자열 출력
- Today
- Total
목록분류 전체보기 (560)
리셋 되지 말자
https://sodocumentation.net/ko/python/topic/4247/%ED%8C%8C%EC%9D%B4%EC%8D%AC-http-%EC%84%9C%EB%B2%84 Python Language - 파이썬 HTTP 서버 | python Tutorial python documentation: 파이썬 HTTP 서버 sodocumentation.net https://www.hanbit.co.kr/channel/category/category_view.html?cms_code=CMS6163871474 파이썬 기본 모듈로 HTTPS 서버 구축하기 파이썬은 스크립트 언어로서 자바와 같은 VM 기반의 언어이기도 합니다. 프론트엔드 사이트 구축이나 일회성 용도로 웹 서버 기능이 종종 필요한 경우가 있습니..
https://fmd1225.tistory.com/93 systemd unit 등록 관련 옵션 정리 - RHEL 7 의 OS 적인 가장 큰 변화는 3.x 커널을 사용한다는 점(물론 2.6.x 커널에서 큰 차이가 있는 것은 아니다.) 그리고 정통적인 init 데몬에서 systemd 데몬으로 변경이 되었다는 점이다. systemd 에 대� fmd1225.tistory.com
https://stackoverflow.com/questions/48195340/systemd-with-multiple-execstart Systemd with multiple execStart i Would know if it's possible to create service with the same script started with different input parameters. Such as: [Unit] Description=script description [Service] Type=simple ExecStart=/scrip... stackoverflow.com 동시에 서비스가 실행되는 걸 원했는데, 내가 알고 있던 방식은 serial이라고 한다. http://alesnosek.com/bl..
https://tecadmin.net/install-python-3-7-on-centos-8/ How to Install Python 3.7 on CentOS/RHEL 8 – TecAdmin How to install Python version on CentOS 8. Steps to compile and install Python 3.7 from source code on CentOS 8. Installing Python on CentOS 8 tecadmin.net http://wiki.pchero21.com/wiki/Rpmbuild_spec_file Rpmbuild spec file - 탱이의 잡동사니 Overview RPM spec file 내용 정리 Preamble Preamble 에는 패키지 기본..
https://wiki.mageia.org/en/Packaging_problems_and_solutions Packaging problems and solutions - Mageia wiki build errors unrecognized option --tag=CXX' Try libtool --help' for more information The libtoolize macro is part of the %configure macro (check with rpm --eval %configure ), and because there is a version mismatch, things will break. Mageia Linux uses li wiki.mageia.org 정리 엄청 잘 되어있음!
https://all-record.tistory.com/157
sort 활용 예시 vector v; v.sort(v.begin(), v.end());위처럼 하면 자동으로 first를 기준으로 오름차순으로 정렬된다 first가 같으면 second를 기준으로 오름차순으로 정렬된다. second를 기준으로 우선 오름차순 정렬 후, second가 같으면 x를 기준으로 오름차순 정렬 코드1 (백준 11651) #include using namespace std; bool compare(pair a, pairb){ if(a.second==b.second){ return a.firstc; vector v(c); for(int i=0; i>v[i].first>>v[i].second; } sort(v.begin(), v.end(), compare); for(int i=0; i
PSA(Portable Service Abstraction) 서비스 추상화의 예로 JDBC를 들 수 있다. JDBC라고 하는 표준 스펙으로 인해 오라클을 사용하던 MySQL을 사용하던 Connection, Statement, ResultSet을 이용해 공통된 방식으로 코드를 작성할 수 있다. 이처럼 DB의 종류에 관계없이 같은 방식으로 제어할 수 있는 이유는 디자인 패턴중 어댑터(변환기) 패턴을 활용했기 때문이다. 이처럼 어댑터 패턴을 적용해 같은 일을 하는 다수의 기술을 공통의 인터페이스로 제어할 수 있게 한 것을 서비스 추상화 라고 한다. Spring Framework에서는 서비스 추상화를 위해 다양한 어댑터를 제공한다. 예를 들어, OXM(Object XMI Mapping: 객체와 XML 매핑) 기..