전자정부표준프레임워크의 easy company3예제 입니다.
기본적인 내용은 거의 동일하고, 다음 세 가지를 추가 진행하고 있습니다.
- 정적 분석을 감안한 환경 구성
- 정적 분석 결과, 개선 작업
- 테스트 소스 추가/ 커버리지 추가
- Porting end : Windows, Raspberry pi, MacOSX
- H2 데이터베이스 다운로드(위치: http://h2database.com/html/main.html )
- bin/ 아레에서 h2.sh 실행 (localhost:8082 로 콘솔 접근)
- 신규 생성
* Driver Class : org.h2.Driver
* JDBC : jdbc:h2:file:/home/pi/Desktop/git_clone/easyCompany3/db/easyDB;MODE=MySQL;AUTO_SERVER=TRUE
* USER/Password : ec/ec
- 이 때, MODE는 MySQL 호환모드로, 다른 프로세스에서 접근 허용하기 위해 AUTO_SERVER=TRUE를 지정함.
- DDL : script/script_h2.sql 실행.
- DML : script/data_h2.sql 실행.
- easyCompany-3.5.0.war 파일을 옮기고 실행.
- 별도로 계정 생성할 것
- 로그인 후 여러 페이지 이동
- localhost_access_log.2016-09-15.txt
input {
file {
path => "/Users/limsunghyun/DEV/apache-tomcat-8.0.36/logs/localhost_access_log.*.txt"
start_position => "beginning"
}
}
filter {
grok {
match => { "message" => "%{COMMONAPACHELOG}"}
}
date {
match => [ "timestamp", "dd/MMM/yyyy:HH:mm:ss Z" ]
}
}
output {
elasticsearch {
hosts => ["127.0.0.1"]
index => "easycompany3-2016"
document_type => "easycompany3"
}
stdout {
codec => "rubydebug"
}
}
- log4j2.conf 패턴
<PatternLayout pattern="%d %5p [%c] %m%n" />
- Logstash의 conf 파일 매칭