Tomcat 작동을 확인하려고 localhost:8080을 브라우저에서 해보면, 로그인하라는 팝업창이 뜬다.
이는 오라클의 포트와 겹쳐서 발생하는 문제이다.
<!-- A "Connector" represents an endpoint by which requests are received
and responses are returned. Documentation at :
Java HTTP Connector: /docs/config/http.html
Java AJP Connector: /docs/config/ajp.html
APR (HTTP/AJP) Connector: /docs/apr.html
Define a non-SSL/TLS HTTP/1.1 Connector on port 8080
-->
<Connector port="8090" protocol="HTTP/1.1"
connectionTimeout="20000"
redirectPort="8443" />
<!-- A "Connector" using the shared thread pool-->
<!--
<Connector executor="tomcatThreadPool"
port="8090" protocol="HTTP/1.1"
connectionTimeout="20000"
redirectPort="8443" />
Tomcat 설치경로/conf/server.xml 파일에서 Ctrl + F로 8080을 찾고, Connector port="8080" 을 Connector port="8090"과 같이 다른 포트로 변경한다.
아니면 처음 설치 시부터 HTTP/1.1 Connector Port를 8080이 디폴트인데 다른 포트로 변경해서 진행한다.
Oracle ORA-04098 해결 방법 (0) | 2021.05.20 |
---|---|
Tomcat server in Eclipse (0) | 2021.05.17 |
How to Enable Ubuntu Virtualization( VT-x/EPT or AMD-V/RVI) in VMware (0) | 2021.05.03 |
Oracle charset 확인, 변경 (0) | 2021.03.25 |
우분투 VSCode CMake 사용하기 VSCode CMake for Ubuntu (0) | 2021.03.20 |