상세 컨텐츠

본문 제목

Tomcat 브라우저 로그인 문제

TOOLS/TIPS

by koharin 2021. 5. 15. 18:08

본문

728x90
반응형

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이 디폴트인데 다른 포트로 변경해서 진행한다.

 

728x90
반응형

관련글 더보기