Server testServer was unable to start within 45 seconds. If the server requires more time, try increasing the timeout in the server editor.

2012. 1. 17. 14:57Was/Tomcat

반응형
error 내용

Server testServer was unable to start within 45 seconds. If the server requires more time, try increasing the timeout in the server editor.


해결 방법으로는 2가지가 있겠다.

1) timeout 시간을 늘려본다. 보통 45초던가 그랬던거 같다.
200초나 250초로 늘려본다.

아래그림 참조



2) host 이름을 살펴본다~



host이름이 잘못 설정되어있으면 톰캣이 Starting..으로만 뜨다가 죽는다.-_-;;

mylocalhost, taehalocalhost등 이상한 이름으로 설정을 했다면 아래와 같이 호스트를 설정 해주면 된다.

127.0.0.1       taehalocalhost

http://taehalocalhost:9001/  <--이런식으로 호출도 해줘야 한다.

위와같이 설정이 안되어있다면 http://localhost:9091 로 해야 할 것 이다.


127.0.0.1       taehalocalhost   <--이부분이 이해가 안가는 분을 위해 설명을 해보면

window에서 보면 아래의  path로 가면 hosts라는 file이 있다 그것을 열어서보면 위의 내용처럼 설정하는 부분이 있을 것이다. localhost, 127.0.0.1 은 지금 하고 계시는 ip가 되겠다. local이라고 흔히 부른다.
C:\WINDOWS\system32\drivers\etc

- End -








반응형