Tomcat 썸네일형 리스트형 [Bash] jar파일 실행(내장 톰캣) 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 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 #!/bin/sh SERVICE_NAME=HALF-JANG-API PATH_TO_JAR=/app/ua_api/HALF-JANG-API-1.0.0.jar PID_PATH_NAME=./HALF-JANG-API.pid JAVA_OPT="-Xms1024m -Xmx1024m" PROFILES_ACTIVE=dev case $1 in start) echo "Starting $SERVICE_NAME ..." if [ ! -f $PID_PATH_NAME ]; then no.. 더보기 [Eclipse&STS] 톰캣 등록 오류 기존에 톰캣을 등록하여 사용하다가, 톰캣 경로를 변경하여 신규로 추가하려고 하다보니 아래와 같이 추가할 수 없었습니다. 출처 : http://www.eclipse.org/forums/index.php/t/453143/ - 해결방법 : 툴 종료 후 하기 경로의 파일 2개 삭제 - path : {workspace}/.metadata/.plugins/org.eclipse.core.runtime/.settings - file : org.eclipse.wst.server.core.prefs, org.eclipse.jst.server.tomcat.core.prefs - 재구동 후 정상화 확인했습니다. 더보기 [Tomcat] Apache Tomcat 403 ERROR 1. 톰캣 교체 시 403 에러 발생 톰캣 server.xml 파일을 이전 server.xml 파일과 동일하게 변경했었는데, AJP 설정에서 requiredSecret="false"로 설정할 경우 발생할 가능성 존재합니다. * 톰캣에서 8.5.51 버전과 9.0.31 버전을 릴리즈하며 해당 속성이 secretRequired로 변경되었습니다. secretRequired="false"로 설정 출처 : https://nirsa.tistory.com/131 + 2. 무한로딩 SSL 미사용 환경이라면 AJP Connector설정에서 secretRequired="false"로 설정, 위에 언급한 8.5.51 버전과 9.0.31 버전을 릴리즈되며 SSL이 기본값으로 사용되도록 설정!! 3. 503에러 AJP Conn.. 더보기 [Tomcat] Tomcat 보안취약점(CVE-2020-1938) Apache Tomcat의 원격코드실행 취약점(CVE-2020-1938)을 악용한 공격사례가 증가 출처 : https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-1938 CVE - CVE-2020-1938 When using the Apache JServ Protocol (AJP), care must be taken when trusting incoming connections to Apache Tomcat. Tomcat treats AJP connections as having higher trust than, for example, a similar HTTP connection. If such connections are available to an a .. 더보기 이전 1 다음