반응형
최신글
- spring boot 구동시 로깅 레벨 변경 GC_OPTS=" -XX:+UseParallelGC -verbose:gc -XX:+PrintGCDetails -XX:+PrintGCTimeStamps -XX:+PrintGCDateStamps -Xloggc:${LOG_PATH}/verbosegc.vgc "LOG_OPTS=" -Dlogging.level.root=DEBUG -Dlogging.level.com=DEBUG "JAVA_OPTS=" -server -Dnop -Dfile.encoding=utf-8 -Dhttp.keepAlive=true -Dhttp.maxConnections=200 "JAVA_OPTS="${JAVA_OPTS} -Xmx2G -Xms2G ${GC_OPTS} ${JMX_OPTS} ${LOG_OPTS}"SPRING_OPTS=" -Dspri.. 2024.09.25
- ftp 디렉토리 download ftp서버가 업그레이드 된후에 ftp mget 명령어에 wildcard를 포함하면 아래와 같은 에러가 발생한다.ftp> mget *txtCan't check for file existenceftp> mget *.txtCan't check for file existence관련 내용 : https://stackoverflow.com/a/58019755 Batch FTP mget command not working with wildcard?I have written a batch script that logs into my ftp server, then navigates to a directory. I am having trouble with the mget command, I want it to downl.. 2024.08.22
- intellij console log 에서 jsp 컴파일 에러 확인 intellij에서 톰캣을 실행할때 vm args의 옵션으로 logging.properties를 명시할 수 있다.-Djava.util.logging.config.file="C:\work\tomcat\tomcat9\conf\logging.properties" logging.properties 파일에서 아래 항목에 대해서 주석처리를 하면 jsp 컴파일 에러는 intellij 콘솔 로그에서 확인할 수 있다.#org.apache.catalina.core.ContainerBase.[Catalina].[localhost].level = FINE#org.apache.catalina.core.ContainerBase.[Catalina].[localhost].handlers = 2localhost.org.apache.j.. 2024.07.22
- wifi adb를 통한 갤럭시 설정 변경 핸드폰에서 준비 더보기핸드폰 개발자 옵션 활성화설정 > 휴대전화 정보 > 소프트웨어 정보 - 빌드번호 영역을 여러번 터치해서 개발자 옵션을 활성화 한다.무선 디버깅 활성화 설정 > 개발자 옵션 > 무선 디버깅 1. 무선 디버깅 영역 터치 2. 사용으로 변경 3. ip 주소 및 포트 - ip:port 따로 기록 =========> A 4. 페어링 코드로 기기 페어링 터치 - 페어링 코드 기록 =========> B - ip:port 기록 =========> C - 컴퓨터에서 윈도우용 SDK 플랫폼 도구 다운로드https://developer.android.com/tools/releases/platform-to.. 2024.07.01
- websocket wss nginx 403에러 nginx reverse proxy 설정으로 서버를 구성한 상태에서ws:// 일 경우에는 문제없이 정상적으로 서비스가 되지만wss://에서 403 에러가 발생했다.wss://시에도 정상적으로 서비스를 위해서는 아래 header추가가 필요하다 - proxy_set_header Origin '';nginx 서버 : 192.168.0.7application서버 : 192.168.0.8 NGINX 설정 server { listen 80; listen 443 ssl; server_name test.karint.dev; ssl_certificate cert/all_dev.crt; ssl_certificate_key cert/dev.key; .. 2024.06.26
- tomcat9 jmx jconsole 연결 옵션 tomcat9은 톰캣7, 8 버전과는 다르게 별도로 라이브러리를 추가할 필요가 없다. 톰캣 실행시 옵션을 추가하면 된다. 톰캣 9 문서https://tomcat.apache.org/tomcat-9.0-doc/monitoring.html Apache Tomcat 9 (9.0.89) - Monitoring and Managing TomcatMonitoring is a key aspect of system administration. Looking inside a running server, obtaining some statistics or reconfiguring some aspects of an application are all daily administration tasks. Note: This co.. 2024.05.08
반응형