분류 전체보기
![[Postgresql] 기본 구문](https://img1.daumcdn.net/thumb/R750x0/?scode=mtistory2&fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2Fb6tama%2FbtrB8YrnxzY%2F4kc7lYPCbFXlPjUgOK6r2K%2Fimg.png)
[Postgresql] 기본 구문
db 생성 create database simpleboard; db 삭제 drop database post; 역할 생성 create role seung with login password '1234' createdb; table 생성 create table post ( id serial, title text, content text, author text, primary key(id) ); 현재 db 테이블 목록 조회 \dt
[Spring boot] mybatis 설정 sqlsession 관련 설정이 필요없는 이유
http://mybatis.org/spring-boot-starter/mybatis-spring-boot-autoconfigure mybatis-spring-boot-autoconfigure – Introduction Introduction What is MyBatis-Spring-Boot-Starter? The MyBatis-Spring-Boot-Starter help you build quickly MyBatis applications on top of the Spring Boot. By using this module you will achieve: Build standalone applications Reduce the boilerplate to almost z mybatis.org 위 링크의 Q..
[Git] remote 브랜치로 변경하기
터미널 환경에서.. 다음 명령어로 브랜치 목록 확인 git branch -v -a 리모트 브랜치의 경우 remotes/origin/dev 식으로 앞에 remote가 붙어있음 거기서 앞 부분 떼고 dev로 switch 실행 git switch
![[EFK] fluentd 오류 해결 failed to flush the buffer](https://img1.daumcdn.net/thumb/R750x0/?scode=mtistory2&fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2FYLpY2%2Fbtrzr8xTxWc%2FEdxUOxT7EG5b7fotsWzuq1%2Fimg.png)
[EFK] fluentd 오류 해결 failed to flush the buffer
※ Docker 환경 1. http://localhost:9200/_cluster/health?pretty 로 elasticsearch cluster 상태를 확인해보자 (localhost부분은 서버 hostname, 9200부분은 자신이 설정한 elasticsearch 노드 포트 중 하나로 알아서 변경해서 사용하자) { "cluster_name" : "es", "status" : "green", "timed_out" : false, "number_of_nodes" : 3, "number_of_data_nodes" : 3, "active_primary_shards" : 11, "active_shards" : 22, "relocating_shards" : 0, "initializing_shards" : 0,..