Tomcat 8 无法在 ubuntu 上启动

标签 tomcat ubuntu

我在 Ubuntu 15.10 上安装 Tomcat 8 时遇到问题 这就是我所做的:

  • 我下载了最后一个版本:apache apache-tomcat-8.0.32.tar.gz
  • 解压到/var/local/
  • 在外壳上:

    /var/local/apache-tomcat-8.0.32/bin/startup.sh

我明白了

    Using CATALINA_BASE:   /var/local/apache-tomcat-8.0.32
    Using CATALINA_HOME:   /var/local/apache-tomcat-8.0.32
    Using CATALINA_TMPDIR: /var/local/apache-tomcat-8.0.32/temp
    Using JRE_HOME:        /usr
    Using CLASSPATH:       /var/local/apache-tomcat-8.0.32/bin/bootstrap.jar:/var/local/apache-tomcat-8.0.32/bin/tomcat-juli.jar
    Tomcat started.

我以为它运行在8080端口,所以我查了一下

    sudo netstat -tulpn | grep 8080

我得到了

    tcp6       0      0 :::8080                 :::*                    LISTEN      1203/apache2

但是如果在浏览器上我继续 localhost:8080 我得到:

Forbidden

You don't have permission to access / on this server. Apache/2.4.12 (Ubuntu) Server at localhost Port 8080

有什么线索吗?

编辑: 我在/var/local/apache-tomcat-8.0.32/conf/server.xml 中检查了我的端口,并在 8080 中更改了它,然后我重新启动了 Tomcat。 如果现在我想检查我的端口 8080

sudo netstat -tulpn | grep 8080

我什么都没看到

编辑 2

这是我的 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="8080" shutdown="SHUTDOWN">
  <Listener className="org.apache.catalina.startup.VersionLoggerListener" />
  <!-- 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" />
  <!-- 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/TLS HTTP/1.1 Connector on port 8080
    -->
    <Connector port="8080" protocol="HTTP/1.1"
               connectionTimeout="20000"
               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/TLS HTTP/1.1 Connector on port 8443
         This connector uses the NIO implementation that requires the JSSE
         style configuration. When using the APR/native implementation, the
         OpenSSL style configuration is required as described in the APR/native
         documentation -->
    <!--
    <Connector port="8443" protocol="org.apache.coyote.http11.Http11NioProtocol"
               maxThreads="150" SSLEnabled="true" scheme="https" secure="true"
               clientAuth="false" sslProtocol="TLS" />
    -->

    <!-- Define an AJP 1.3 Connector on port 8009 -->
    <Connector port="8080" 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">

        <!-- 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>

最佳答案

您收到的错误消息似乎确实揭示了发出此消息的服务器的身份:“Apache/2.4.12 (Ubuntu) 服务器”。

那不是您的 Tomcat 服务器。那就是httpd。端口 8080 是许多引擎的默认安装端口,但当然只有其中一个可以使用它。要为 tomcat 安装更改此值,请在 conf 目录中找到 server.xml 文件。编辑该文件,在适用的情况下用您选择的端口号替换 8080。

关于Tomcat 8 无法在 ubuntu 上启动,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35627142/

相关文章:

tomcat - 更改war的上下文路径,无法使用ant添加JSP文件夹

eclipse - 与 watch 事件 'sun.nio.fs.AbstractWatchKey$Event@3f5ed469' 不匹配,路径 'D:\apache-tomcat-7.0.50\logs\log_file.log'

node.js - #!/usr/bin/env : No such file or directory

eclipse - 将 WebDSL 应用程序部署到 Tomcat v6.0 时出现的问题

eclipse - 我们在 Eclipse 中指定放置构建类的位置?

tomcat - Grails 网络应用程序图像目录在 war 中无法正常工作

c - 32 位编译在 64 位 Ubuntu 16.04 上失败

ubuntu - 如何在 Ubuntu -2021 上更新 VSCode

bash - 阻止 .git/index 更改其权限

linux - pgbouncer是否可以在不重启的情况下重新读取/etc/hosts文件