코린이의 기록

[Eclipse] Eclipse Tomcat 8.5 installation error 본문

IDE/Eclipse

[Eclipse] Eclipse Tomcat 8.5 installation error

코린이예요 2018. 11. 9. 10:29
반응형

Eclipse에서 Tomcat Server를 등록하려는데 아래와 같은 에러가 발생하였다. 

The Apache Tomcat installation at this directory is version 8.5.34.  A Tomcat 8.0 installation is expected.


해결 방법


lib/catalina.jar/org/apache/catalina/util 에 있는 ServerInfo.properties를 수정해주어야 함

(C:\Users\dev\tomcat\apache-tomcat-8.5.34-windows-x64\apache-tomcat-8.5.34\lib\catalina.jar\org\apache\catalina\util\)



1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements.  See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use this file except in compliance with
# the License.  You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
 
server.info=Apache Tomcat/8.0.0
server.number=8.0.0
server.built=Sep 4 2018 22:28:22 UTC
cs


반응형
Comments