반응형
목차
이클립스에서 tomcat 2개 이상 띄우는 방법
tomcat server OverView에서 Port Name부분의 Tomcat admin port, HTTP/1.1 port, AJP/1.3 port number를 기존의 tomcat과 겹치지 않는 number로 변경 후 띄우면 됨
로컬에 테스트 ssl 적용
keytool -genkey -alias tomcat -keyalg RSA -validity 3650 -keystore tomcat.keystore -> keystore 생성
아래와 같이 tomcat 설정파일(server.xml) 변경(keystore 경로 및 비밀번호 설정)
<server.xml>
<Connector port="8443" protocol="HTTP/1.1" maxThreads="150" scheme="https" secure="true" sslProtocol="TLS"
KeystoreFile="C:\eGovCI-3.8.0_64bit\bin\tomcat.keystore" SSLEnabled="true" clientAuth="false" keystorePass="dldks12!@" type="RSA">
</Connector>
출처 : https://dy20c.tistory.com/12
windows tomcat cmd 한글 깨짐
출처 :https://dejavuhyo.github.io/posts/tomcat-console-encoding/
반응형
'IT > development' 카테고리의 다른 글
[IDE]IntelliJ idea vim 클립보드 복사 방법 (0) | 2022.11.29 |
---|---|
[Visual SVN]windows visual SVN 세팅 & eclipse 연동 (2) | 2022.11.29 |
[springBoot] 프로젝트 세팅(IntelliJ 사용) (0) | 2022.11.28 |
[Spring]spring REST(Representational State Transfer) (0) | 2022.11.27 |
[Spring]UriComponentsBuilder(서버단에서 동적으로 URI 생성) (0) | 2022.11.27 |