tomcat
-
[Python] pandas를 이용한 tomcat accesslog 분석 및 활용Python/Python for Linux 2019. 9. 5. 13:06
톰캣 웹 로그도 pandas를 이용하면 빠른 속도로 처리할 수 있다. 로그가 100만 ~ 1000만 이상 넘어가면 pandas를 이용하는 게 상당히 빠르며, DataFrame으로 저장하고, CSV로 파일로 만들거나 다른 DB에 import 가 가능하기 때문에 활용도도 좋다고 볼 수 있다. 엘라스틱서치, 몽고DB도 python API가 있기 때문에 역시 가능하다. 톰캣을 기본설치하게 되면, 아래와 같이 기본 로깅세팅이 되어 있다. pattern="%h %l %u %t "%r" %s %b" tomcat logging에 관한 정보는 아래 링크를 참조 https://pydole.tistory.com/entry/Apache-Tomcat-Logging-%EA%B2%BD%EB%A1%9C%EC%9..
-
특정 계정으로 부팅시 톰캣 자동실행Linux/RedHat, CentOS, ubuntu 2019. 7. 24. 13:48
tomcatservice(가칭) 계정으로 리눅스 부팅시 자동으로 톰캣서비스를 실행하려한다. 사전에 tomcat 폴더가 tomcatservice 계정으로 권한부여가 되어 있어야 한다. /etc/rc.local 파일을 열어서 아래와 같이 추가해준다 su - tomcatservice -c '/usr/local/apache-tomcat-8.5.43/bin/startup.sh' 부팅시 실행될 수 있도록 rc.local 파일에 실행권한을 준다 chmod +x rc.local 그리고 재부팅을 해보면, tomcatservice로 정상적으로 실행됨을 알 수 있다. tomcats+ 1128 1 6 00:41 ? 00:00:05 //bin/java -Djava.util.logging.config.file=/usr/local..
-
Apache Tomcat Logging 경로와 Logging 항목 변경Windows/Windows 2008 , 2012 2019. 4. 19. 20:56
OS : Windows 2012 R2 - 로그파일 용량관리를 별도의 디렉토리로 분리와 일 단위 로그파일 생성 - 분석 항목 추가 %a Remote IP address %A Local IP address %b Bytes sent, excluding HTTP headers, or '-' if zero %B Bytes sent, excluding HTTP headers %h Remote host name (or IP address if enableLookups for the connector is false) %H Request protocol %I Remote logical username ..
-
Windows 2012 Tomcat 8 InstallWindows/Windows 2008 , 2012 2019. 4. 19. 20:01
Tomcat Homepage : https://tomcat.apache.org Step 1. Windows Service Installer Download Step 2. "Windows Service Installer Downloadapache-tomcat-8.5.40" Execute - Next Step 2. License Agreement - Next Step 3. Choose Components - Next Step 4. Choose Components - Next Step 5. Configuration Option. Tomcat Administrator Login Input User Name : Input Password : Step 6. Java Vitual Machine Input JRE Pa..