oboki
  • ABOUT
  • WORKSPACE
    • data-engineering
  • 2018-07-17
  • in fluentd
  • 오복애비
  • 0 Comments

[Fluentd] Fluentd 소개

Fluentd 소개 with Fluentd 내부 언어 Cruby 로 작성. 루비는 객체 지향 인터프리터 언어 https://www.ruby-lang.org/ko/about/ Cruby vs. Jruby The default Ruby, the one people think of as "just Ruby," is CRuby. JRuby is a Ruby interpreter written in Java. It’s written and maintained by a different team. It focuses hard on performance – especially for […]

Read More
  • 2018-06-04
  • in regex
  • 오복애비
  • 0 Comments

[Regex] 전/후방 탐색

정규표현식 전방탐색과 후방탐색 정규표현식을 사용하여 문자열을 검색할 때, 특정 문자열의 위치 조건을 더해 정밀한 탐색이 가능하다. 흔히 쓰는 pcre 정규식과 vim 에서 쓰는 방식이 약간 다르다. 예제 apache 로그 0.0.0.0 – – [03/Jun/2019:03:05:45 +0900] “POST /xmlrpc.php HTTP/1.1” 200 418 0.0.0.0 – – [03/Jun/2019:03:51:56 +0900] “GET / HTTP/1.0” 400 362 0.0.0.0 – – [03/Jun/2019:03:52:07 +0900] “GET […]

Read More
  • 2018-05-18
  • in linux
  • 오복애비
  • 0 Comments

[Linux] rsyslog timestamp format

vi /etc/rsyslog.conf #Use default timestamp format #$ActionFileDefaultTemplate RSYSLOG_TraditionalFileFormat $ActionFileDefaultTemplate RSYSLOG_FileFormat service rsyslog restart https://rsyslog-5-8-6-doc.neocities.org/rsyslog_conf_templates.html https://access.redhat.com/documentation/en-US/Red_Hat_Enterprise_Linux_OpenStack_Platform/3/html/Installation_and_Configuration_Guide/Starting_rsyslog_Server.html

Read More
  • 2018-04-18
  • in linux
  • 오복애비
  • 0 Comments

[Linux] php 설치

php 설치 의존 라이브러리 libxml2-devel libwebp-devel libjpeg-devel libpng-devel libXpm-devel libicu-devel 설치 1. Configuration ./configure –prefix=/apps/php/7.1.8 \ –with-config-file-path=/apps/php \ –with-config-file-scan-dir=/apps/php/conf.d \ –with-apxs2=/apps/httpd/bin/apxs –with-mysqli \ –with-pdo-mysql –enable-calendar \ –enable-sockets –enable-sysvsem \ –enable-sysvshm –enable-zip –with-zlib \ –with-curl=/apps/share/curl –with-gd \ –enable-mbstring –with-openssl=/apps/share/openssl \ –with-openssl-dir=/apps/share/openssl \ –with-jpeg-dir=/apps/php/img_format_dir/jpeg \ –with-png-dir=/apps/php/img_format_dir/png \ –with-xpm-dir=/apps/php/img_format_dir/xpm \ –with-webp-dir=/apps/php/img_format_dir/webp \ –enable-pcntl \ –enable-intl 2. Build make […]

Read More
  • 2018-04-17
  • in linux
  • 오복애비
  • 0 Comments

[Linux] httpd 설치

Apache Httpd 설치 의존 패키지 버전 PROGRAM VERSION apr 1.6.2 apr-util 1.5.3 curl 7.30.0 pcre 8.00 openssl 1.0.2m httpd 2.4.27 apr 설치 1. Configuration ./configure –prefix=/apps/share/apr/1.6.2 2. Build make 3. Install make install apr-util 설치 1. Configuration ./configure –prefix=/apps/share/apr-util/1.5.3 \ –with-apr=/apps/share/apr 2. Build make 3. Install make install curl 설치 1. Configuration ./configure –prefix=/apps/share/curl/7.30.0 2. […]

Read More
  • 2018-04-16
  • in mysql
  • 오복애비
  • 2 Comments

[MySQL] mysql 설치

사전 준비 mysql 시스템 유저 생성 mysql:x:3306:1000::/home/mysql:/bin/bash 디렉토리 생성 및 권한 부여 엔진 경로 mkdir /apps/mysql chown mysql /apps/mysql 데이터파일 경로 mkdir /data/mysql chown mysql /data/mysql 로그 경로 mkdir /data/mysql chown mysql /logs/mysql my.cnf 파일 생성 및 권한 부여 touch /etc/my.cnf chwon mysql /etc/my.cnf mysql 설정 vi /etc/my.cnf [mysqld] user = mysql port = 3306 […]

Read More
  • 2018-04-13
  • in BaekJoon Online Judge
  • 오복애비
  • 0 Comments

[BaekJoon Online Judge] 2178 – 미로 탐색

[BaekJoon Online Judge] 2178 – 미로 탐색 문제 https://www.acmicpc.net/problem/2178 N×M크기의 배열로 표현되는 미로가 있다. 1 0 1 1 1 1 1 0 1 0 1 0 1 0 1 0 1 1 1 1 1 0 1 1 미로에서 1은 이동할 수 있는 칸을 나타내고, 0은 이동할 수 없는 칸을 나타낸다. 이러한 미로가 주어졌을 때, […]

Read More
  • 2018-04-03
  • in BaekJoon Online Judge
  • 오복애비
  • 0 Comments

[BaekJoon Online Judge] 9095 – 1, 2, 3 더하기

BaekJoon Online Judge 9095: 1, 2, 3 더하기 문제 https://www.acmicpc.net/problem/9095 정수 4를 1, 2, 3의 합으로 나타내는 방법은 총 7가지가 있다. 합을 나타낼 때는 수를 1개 이상 사용해야 한다. 1+1+1+1 1+1+2 1+2+1 2+1+1 2+2 1+3 3+1 정수 n이 주어졌을 때, n을 1, 2, 3의 합으로 나타내는 방법의 수를 구하는 프로그램을 작성하시오. 입력 첫째 줄에 테스트 […]

Read More
  • 2018-04-03
  • in BaekJoon Online Judge
  • 오복애비
  • 0 Comments

[BaekJoon Online Judge] 11727 – 2Xn 타일링 2

BaekJoon Online Judge 11727: 2Xn 타일링 2 문제 https://www.acmicpc.net/problem/11727 2×n 직사각형을 2×1과 2×2 타일로 채우는 방법의 수를 구하는 프로그램을 작성하시오. 아래 그림은 2×17 직사각형을 채운 한가지 예이다. 입력 첫째 줄에 n이 주어진다. (1 ≤ n ≤ 1,000) 출력 첫째 줄에 2×n 크기의 직사각형을 채우는 방법의 수를 10,007로 나눈 나머지를 출력한다. 소스코드 n = int(input()) d […]

Read More
  • 2018-04-03
  • in BaekJoon Online Judge
  • 오복애비
  • 0 Comments

[BaekJoon Online Judge] 11726 – 2Xn 타일링

BaekJoon Online Judge 11726: 2Xn 타일링 문제 https://www.acmicpc.net/problem/11726 2×n 크기의 직사각형을 1×2, 2×1 타일로 채우는 방법의 수를 구하는 프로그램을 작성하시오. 아래 그림은 2×5 크기의 직사각형을 채운 한 가지 방법의 예이다. 입력 첫째 줄에 n이 주어진다. (1 ≤ n ≤ 1,000) 출력 첫째 줄에 2×n 크기의 직사각형을 채우는 방법의 수를 10,007로 나눈 나머지를 출력한다. 소스코드 n […]

Read More

글 페이지 매김

1 … 15 16 17 … 21

카테고리

최신 글

  • imagemagick 2025-04-28
  • [Books] Source Code – Bill Gates 2025-02-08
  • Iceberg 맛보기 2025-01-12
  • Excalidraw 2024-12-29
  • Ollama ✕ WSL 2 ✕ VSCode Code GPT 2023-12-18
  • Vagrant ✕ WSL 2 2023-11-19
  • OAuth2 Proxy 2023-07-29
  • NVIDIA Container Runtime on Rocky Linux 2023-07-22
  • code-server (설치형 VSCode 웹버전) 2023-03-18
  • re:Invent 2022 참가 후기 2022-12-02
  • nextcloud 백업 전략 2022-10-10
  • WSL2 Symantec 네트워크 차단 우회하기 2022-05-15
  • [System] Docker 로 간편하게 openldap 서버 구성하기 2022-03-08
  • [VSCode] Remote Container 에서 파이썬 디버깅하기 (feat. Airflow) 2022-02-25
  • Airflow 2.x HA 구성 (3 node docker 환경) 2021-11-14
  • ec2 에서 도커로 운영하는 워드프레스 업데이트 2021-11-09