É este servidor Tomcat funcionando corretamente? Por que parece que não está escutando na porta 8080? [fechadas]

1

Eu não sou tão engenheiro de sistemas (eu sou um desenvolvedor de Java) e estou encontrando algumas dificuldades tentando entender se um servidor Tomcat (em um servidor remoto) no qual eu tenho que implantar um a aplicação está bem configurada ou tem algum problema de configuração.

O sistema operacional é o Linux CentOS versão 6.7 (Final)

Preciso da sua ajuda para entender qual é a situação e o que tenho a dizer quando entrar em contato com o administrador do sistema deste servidor.

Então, para reiniciar o Tomcat, tenho a seguinte declaração:

sudo -i -u projectname

sudo service projectnames top sudo service projectname start

Primeiro tenho que ativar um usuário com o mesmo nome do projeto que tenho que implantar e da instância do Tomcat que tenho que iniciar que hospedará esse projeto (essas informações foram fornecidas pelo administrador de sistema deste servidor) .

O servidor parece iniciar, esta é a saída:

[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

A pasta webaps deve conter o aplicativo implantado e parece conter a versão antiga do aplicativo que preciso implantar:

[projectname@servername webapps]$ ls
ROOT  ROOT.war

Onde ROOT.war é a versão antiga de guerra do meu aplicativo e o diretório ROOT parece ser a versão explodida desse arquivo war.

O problema é que parece que o Tomcat não responde. Tentando abrir este URL do navegador (este é o endereço do servidor usado para conectar via SSH):

http://myservername.hq.mycompany.org:8080/

Eu obtenho um erro 404 .

Seguindo estas sugestões:

Realizando o ps -ef | grep tomcat declaração eu obtenho:

[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

Parece que o servidor foi iniciado.

Mas se eu executar o netstat -a | grep 8080 para ver o que está escutando na porta 8080 Eu não obtenho nada, esta é minha saída:

[projectname@servername webapps]$ netstat -a | grep 8080
[projectname@hqldservername webapps]$

Então o que isso significa? O Tomcat não está funcionando na porta 8080 ou pode estar configurado incorretamente? (porque começa mas não lista).

Este é o conteúdo do arquivo de configuração /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 &quot;%r&quot; %s %b" />

      </Host>
    </Engine>
  </Service>
</Server>

Então, tenho as seguintes dúvidas e preciso de uma explicação para expor corretamente o problema ao meu administrador de sistema:

1) É este servidor corretamente executado?

2) Está listado na porta 8080 ? Se não está listando em outra porta ou pode ser que é executado, mas não está listando em nenhuma porta?

3) O diretório webapps contém o arquivo war (no meu caso ROOT.war ) para implantar e o diretório ROOT explodido é o versão implantada deste arquivo? Ou é em outro lugar?

    
por AndreaNobili 06.02.2017 / 10:44

1 resposta

0

http://myservername.hq.mycompany.org:8080/

I obtain a 404 error.

Tudo o que você descreveu é um comportamento correto e esperado. O tomcat está escutando em 8080, caso contrário você nunca obteria um 404. Qualquer código 3xx, 4xx, 5xx e todos os outros HTTP vêm do servidor, portanto, uma sessão TCP funcionou, portanto connect / listen / bind todo trabalhado.

Acho que o que você deve perguntar é:

  • Qual é o URL completo para ver a interface? (Provavelmente, é o link )

  • Descubra um fluxo básico para testar algumas funcionalidades mínimas (por exemplo, usuário e senha para fazer login, fazer uma coisa, ver uma coisa, sair)

Específicos:

  1. O Tomcat parece ser bom.

  2. Em vez de netstat -a , você deve fazer nestat -an ou melhor netstat -lntp ou, melhor ainda, um moderno ss -lntp

  3. O Tomcat ouve as alterações no subdiretório webapps . Depois de colocar um .war , você deve esperar que o tomcat comece a implantá-lo automaticamente. Se o tomcat estiver inativo, quando ele for iniciado, ele implantará o webapps . Não há outra loja de aplicativos. Para os restituições de implantação, verifique o logs/catalina.out e outros registros.

P.S. Muitos aplicativos também têm requisitos "feios" para uma implantação bem-sucedida: sempre pare o tomcat, exclua tudo de temp , tudo de work , inicie o tomcat.

    
por 06.02.2017 / 13:13