저는 시스템 엔지니어가 아니기 때문에(Java 개발자입니다)수코양이애플리케이션을 배포해야 하는 서버(원격 서버)가 잘 구성되어 있거나 일부 구성 문제가 있습니다.
운영 체제는Linux CentOS 버전 6.7(최종 버전)
상황을 이해하는 데 도움이 필요하며, 이 서버의 시스템 관리자에게 연락할 때 제가 말해야 할 내용도 있습니다.
따라서 Tomcat을 다시 시작하려면 다음 명령문이 있습니다.
sudo -i -u 프로젝트 이름
sudo 서비스 프로젝트 이름 top sudo 서비스 프로젝트 이름 시작
먼저 배포해야 하는 프로젝트와 프로젝트를 호스팅할 시작해야 하는 Tomcat 인스턴스와 동일한 이름을 가진 사용자를 열어야 했습니다(이 정보는 서버의 시스템 관리자가 제공한 정보입니다).
서버가 시작된 것으로 보입니다. 출력은 다음과 같습니다.
[projectname@servername webapps]$ sudo service projectname start
getsebool: SELinux is disabled
Using CATALINA_BASE: /usr/local/tomcat/projectname
Using CATALINA_HOME: /usr/local/tomcat/default
Using CATALINA_TMPDIR: /usr/local/tomcat/projectname/temp
Using JRE_HOME:
Using CLASSPATH: /usr/local/tomcat/default/bin/tomcat-juli.jar:/usr/local/tomcat/default/bin/bootstrap.jar
이것웹 애플리케이션폴더에는 배포된 애플리케이션이 포함되어야 하며, 배포해야 하는 애플리케이션의 이전 버전이 포함되어 있는 것 같습니다.
[projectname@servername webapps]$ ls
ROOT ROOT.war
어디루트 전쟁내 앱의 오래된 전쟁 버전입니다뿌리디렉토리는 이 war 파일의 확장된 버전인 것으로 보입니다.
문제는 Tomcat이 응답하지 않는 것 같습니다. 브라우저에서 다음 URL을 열어보세요(SSH를 통해 연결하는 데 사용되는 서버 주소).
http://myservername.hq.mycompany.org:8080/
나 하나 있어404 오류.
따라서 다음 제안 사항을 따르십시오.
구현하다ps-ef | grep 톰 고양이내가 받은 진술:
[projectname@servername webapps]$ ps -ef | grep tomcat
projectname 8454 1 1 10:11 ? 00:00:06 /usr/local/jvm/default/bin/java -Djava.util.logging.config.file=/usr/local/tomcat/projectname/conf /logging.properties -Xmx512m -Xms128m -XX:MaxPermSize=512m -XX:PermSize=256m -XX:+UseConcMarkSweepGC -Djava.util.logging.manager=org.apache .juli.ClassLoaderLogManager -Djava.endorsed.dirs=/usr/local/tomcat/default/endorsed -classpath /usr/local/tomcat/default/bin/tomcat-juli.ja r:/usr/local/tomcat/default/bin/bootstrap.jar -Dcatalina.base=/usr/local/tomcat/projectname -Dcatalina.home=/usr/local/tomcat/default -Djava.io.tm pdir=/usr/local/tomcat/projectname/temp org.apache.catalina.startup.Bootstrap start
projectname 8488 8119 0 10:20 pts/0 00:00:00 grep tomcat
그래서 서버가 시작된 것 같습니다.
하지만 내가 실행하면netstat -a 쿼리 8080 |듣고 있는 내용 보기8080포트에서 아무것도 얻지 못했습니다. 이것이 내 결과입니다.
[projectname@servername webapps]$ netstat -a | grep 8080
[projectname@hqldservername webapps]$
그렇다면 이것은 무엇을 의미합니까? 톰캣이 작동하지 않아요8080포트 또는 잘못 구성되었을 수 있습니까? (시작하지만 나열되지 않기 때문입니다).
이 글의 내용입니다/usr/local/tomcat/projectname/conf/server.xml구성 파일:
<?xml version='1.0' encoding='utf-8'?>
<!--
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.
-->
<!-- Note: A "Server" is not itself a "Container", so you may not
define subcomponents such as "Valves" at this level.
Documentation at /docs/config/server.html
-->
<Server port="8005"
shutdown="SHUTDOWN">
<!-- Security listener. Documentation at /docs/config/listeners.html
<Listener className="org.apache.catalina.security.SecurityListener" />
-->
<!--APR library loader. Documentation at /docs/apr.html -->
<!--
<Listener className="org.apache.catalina.core.AprLifecycleListener" SSLEngine="on" />
-->
<!--Initialize Jasper prior to webapps are loaded. Documentation at /docs/jasper-howto.html -->
<Listener className="org.apache.catalina.core.JasperListener" />
<!-- Prevent memory leaks due to use of particular java/javax APIs-->
<Listener className="org.apache.catalina.core.JreMemoryLeakPreventionListener" />
<Listener className="org.apache.catalina.mbeans.GlobalResourcesLifecycleListener" />
<Listener className="org.apache.catalina.core.ThreadLocalLeakPreventionListener" />
<!-- Global JNDI resources
Documentation at /docs/jndi-resources-howto.html
-->
<GlobalNamingResources>
<!-- Editable user database that can also be used by
UserDatabaseRealm to authenticate users
-->
<Resource name="UserDatabase" auth="Container"
type="org.apache.catalina.UserDatabase"
description="User database that can be updated and saved"
factory="org.apache.catalina.users.MemoryUserDatabaseFactory"
pathname="conf/tomcat-users.xml" />
</GlobalNamingResources>
<!-- A "Service" is a collection of one or more "Connectors" that share
a single "Container" Note: A "Service" is not itself a "Container",
so you may not define subcomponents such as "Valves" at this level.
Documentation at /docs/config/service.html
-->
<Service name="Catalina">
<!--The connectors can use a shared executor, you can define one or more named thread pools-->
<!--
<Executor name="tomcatThreadPool" namePrefix="catalina-exec-"
maxThreads="150" minSpareThreads="4"/>
-->
<!-- A "Connector" represents an endpoint by which requests are received
and responses are returned. Documentation at :
Java HTTP Connector: /docs/config/http.html (blocking & non-blocking)
Java AJP Connector: /docs/config/ajp.html
APR (HTTP/AJP) Connector: /docs/apr.html
Define a non-SSL HTTP/1.1 Connector on port 8080
-->
<Connector port="8080"
protocol="HTTP/1.1"
connectionTimeout="20000"
URIEncoding="UTF-8"
redirectPort="8443" />
<!-- A "Connector" using the shared thread pool-->
<!--
<Connector executor="tomcatThreadPool"
port="8080" protocol="HTTP/1.1"
connectionTimeout="20000"
redirectPort="8443" />
-->
<!-- Define a SSL HTTP/1.1 Connector on port 8443
This connector uses the JSSE configuration, when using APR, the
connector should be using the OpenSSL style configuration
described in the APR documentation -->
<!--
<Connector port="8443" protocol="HTTP/1.1" SSLEnabled="true"
maxThreads="150" scheme="https" secure="true"
clientAuth="false" sslProtocol="TLS" />
-->
<!-- Define an AJP 1.3 Connector on port 8009 -->
<!--
<Connector port="8009" protocol="AJP/1.3" redirectPort="8443" />
-->
<Connector port="8009"
protocol="AJP/1.3"
redirectPort="8443" />
<!-- An Engine represents the entry point (within Catalina) that processes
every request. The Engine implementation for Tomcat stand alone
analyzes the HTTP headers included with the request, and passes them
on to the appropriate Host (virtual host).
Documentation at /docs/config/engine.html -->
<!-- You should set jvmRoute to support load-balancing via AJP ie :
<Engine name="Catalina" defaultHost="localhost" jvmRoute="jvm1">
-->
<Engine name="Catalina" defaultHost="localhost">
<!--For clustering, please take a look at documentation at:
/docs/cluster-howto.html (simple how to)
/docs/config/cluster.html (reference documentation) -->
<!--
<Cluster className="org.apache.catalina.ha.tcp.SimpleTcpCluster"/>
-->
<!-- Use the LockOutRealm to prevent attempts to guess user passwords
via a brute-force attack -->
<Realm className="org.apache.catalina.realm.LockOutRealm">
<!-- This Realm uses the UserDatabase configured in the global JNDI
resources under the key "UserDatabase". Any edits
that are performed against this UserDatabase are immediately
available for use by the Realm. -->
<Realm className="org.apache.catalina.realm.UserDatabaseRealm"
resourceName="UserDatabase"/>
</Realm>
<Host name="localhost" appBase="webapps"
unpackWARs="true"
autoDeploy="true"
xmlValidation="false" xmlNamespaceAware="false">
<!-- SingleSignOn valve, share authentication between web applications
Documentation at: /docs/config/valve.html -->
<!--
<Valve className="org.apache.catalina.authenticator.SingleSignOn" />
-->
<!-- Access log processes all example.
Documentation at: /docs/config/valve.html
Note: The pattern used is equivalent to using pattern="common" -->
<Valve className="org.apache.catalina.valves.AccessLogValve" directory="logs"
prefix="localhost_access_log." suffix=".txt"
pattern="%h %l %u %t "%r" %s %b" />
</Host>
</Engine>
</Service>
</Server>
따라서 다음과 같은 질문이 있으며 시스템 관리자에게 문제를 적절하게 노출하려면 설명이 필요합니다.
1) 서버가 제대로 작동하고 있나요?
2) 시장 상장 여부8080포트? 그렇지 않은 경우 다른 포트에 나열되어 있습니까? 아니면 실행 중이지만 어떤 포트에도 나열되지 않을 수 있습니까?
3) 중웹 애플리케이션디렉토리에 전쟁이 포함되어 있습니다(제 경우에는루트 전쟁) 배포 및 분해할 파일뿌리디렉터리가 배포된 파일 버전입니까? 아니면 다른 곳인가요?
답변1
http://myservername.hq.mycompany.org:8080/
404 오류가 발생합니다.
귀하가 설명하는 모든 것은 정확하고 예상되는 동작입니다. Tomcat은 8080을 수신하고 있습니다. 그렇지 않으면 404를 얻을 수 없습니다. 3xx, 4xx, 5xx 및 기타 모든 HTTP 코드는 서버에서 나오므로 TCP 세션이 유효하므로 연결/수신/바인딩이 모두 유효합니다.
관리자에게 물어봐야 할 내용은 다음과 같습니다.
이 인터페이스를 볼 수 있는 전체 URL은 무엇입니까? (아마도http://myservername.hq.mycompany.org:8080/something.jsp.blahblahblah)
몇 가지 최소한의 기능(예: 로그인을 위한 사용자 및 비밀번호, 한 가지 작업 수행, 한 가지 작업 보기, 로그아웃)을 테스트하기 위한 기본 흐름을 파악합니다.
사양:
톰캣이 좋아보이네요.
netstat -a
당신이 해야 할 일nestat -an
이나 더 나은 일netstat -lntp
, 더 나은 현대적인 일 대신에ss -lntp
Tomcat은 하위 디렉터리의 변경 사항을 수신합니다
webapps
. 일단 거기에 넣으면.war
Tomcat이 자동으로 배포를 시작할 것으로 예상됩니다. Tomcat이 종료되면 시작 시webapps
다른 앱 스토어가 배포되지 않습니다. 배포 결과는logs/catalina.out
기타 로그를 확인하시기 바랍니다.
PS 많은 응용 프로그램에는 성공적인 배포를 위한 "추악한" 요구 사항도 있습니다. 즉, 항상 Tomcat을 중지하고, 의 모든 항목을 삭제하고 temp
, work
Tomcat을 시작합니다.