tomcat webapp not showing up on browser due to connection timeout











up vote
-1
down vote

favorite












i deployed some webapps under /opt/tomcat/webapps, using the port 8090 (change made in server.xml), Linux/Ubuntu 16.04. It used to work fine.



At one pointed I decided to update my firewall, something must have gone wrong during the process and now my web apps stopped showing up.



Here is my diagnosis:



$ sudo ufw status verbose
Status: active
Logging: on (low)
Default: allow (incoming), allow (outgoing), disabled (routed)
New profiles: skip

To Action From
-- ------ ----
...
8090 ALLOW IN Anywhere
...
8090 (v6) ALLOW IN Anywhere (v6)


$ ps -ef | grep tomcat
tomcat 1327 1 0 22:24 ? 00:00:09 /usr/lib/jvm/java-1.8.0-openjdk-amd64/jre/bin/java -Djava.util.logging.config.file=/opt/tomcat/conf/logging.properties -Djava.util.logging.manager=org.apache.juli.ClassLoaderLogManager -Djava.awt.headless=true -Djava.security.egd=file:/dev/./urandom -Djdk.tls.ephemeralDHKeySize=2048 -Djava.protocol.handler.pkgs=org.apache.catalina.webresources -Xms512M -Xmx1024M -server -XX:+UseParallelGC -classpath /opt/tomcat/bin/bootstrap.jar:/opt/tomcat/bin/tomcat-juli.jar -Dcatalina.base=/opt/tomcat -Dcatalina.home=/opt/tomcat -Djava.io.tmpdir=/opt/tomcat/temp org.apache.catalina.startup.Bootstrap start

$ sudo netstat -plnt | grep 8090
tcp6 0 0 :::8090 :::* LISTEN 1327/java

$ nmap localhost

Starting Nmap 7.01 ( https://nmap.org ) at 2018-11-08 23:23 EST
Nmap scan report for localhost (127.0.0.1)
Host is up (0.00013s latency).
PORT STATE SERVICE
...
8090/tcp open unknown


it appears to me that tomcat is up and the port is open, so why I can't see my web app pages? The error message on the browser is:



The connection has timed out


what step did I just miss?










share|improve this question


























    up vote
    -1
    down vote

    favorite












    i deployed some webapps under /opt/tomcat/webapps, using the port 8090 (change made in server.xml), Linux/Ubuntu 16.04. It used to work fine.



    At one pointed I decided to update my firewall, something must have gone wrong during the process and now my web apps stopped showing up.



    Here is my diagnosis:



    $ sudo ufw status verbose
    Status: active
    Logging: on (low)
    Default: allow (incoming), allow (outgoing), disabled (routed)
    New profiles: skip

    To Action From
    -- ------ ----
    ...
    8090 ALLOW IN Anywhere
    ...
    8090 (v6) ALLOW IN Anywhere (v6)


    $ ps -ef | grep tomcat
    tomcat 1327 1 0 22:24 ? 00:00:09 /usr/lib/jvm/java-1.8.0-openjdk-amd64/jre/bin/java -Djava.util.logging.config.file=/opt/tomcat/conf/logging.properties -Djava.util.logging.manager=org.apache.juli.ClassLoaderLogManager -Djava.awt.headless=true -Djava.security.egd=file:/dev/./urandom -Djdk.tls.ephemeralDHKeySize=2048 -Djava.protocol.handler.pkgs=org.apache.catalina.webresources -Xms512M -Xmx1024M -server -XX:+UseParallelGC -classpath /opt/tomcat/bin/bootstrap.jar:/opt/tomcat/bin/tomcat-juli.jar -Dcatalina.base=/opt/tomcat -Dcatalina.home=/opt/tomcat -Djava.io.tmpdir=/opt/tomcat/temp org.apache.catalina.startup.Bootstrap start

    $ sudo netstat -plnt | grep 8090
    tcp6 0 0 :::8090 :::* LISTEN 1327/java

    $ nmap localhost

    Starting Nmap 7.01 ( https://nmap.org ) at 2018-11-08 23:23 EST
    Nmap scan report for localhost (127.0.0.1)
    Host is up (0.00013s latency).
    PORT STATE SERVICE
    ...
    8090/tcp open unknown


    it appears to me that tomcat is up and the port is open, so why I can't see my web app pages? The error message on the browser is:



    The connection has timed out


    what step did I just miss?










    share|improve this question
























      up vote
      -1
      down vote

      favorite









      up vote
      -1
      down vote

      favorite











      i deployed some webapps under /opt/tomcat/webapps, using the port 8090 (change made in server.xml), Linux/Ubuntu 16.04. It used to work fine.



      At one pointed I decided to update my firewall, something must have gone wrong during the process and now my web apps stopped showing up.



      Here is my diagnosis:



      $ sudo ufw status verbose
      Status: active
      Logging: on (low)
      Default: allow (incoming), allow (outgoing), disabled (routed)
      New profiles: skip

      To Action From
      -- ------ ----
      ...
      8090 ALLOW IN Anywhere
      ...
      8090 (v6) ALLOW IN Anywhere (v6)


      $ ps -ef | grep tomcat
      tomcat 1327 1 0 22:24 ? 00:00:09 /usr/lib/jvm/java-1.8.0-openjdk-amd64/jre/bin/java -Djava.util.logging.config.file=/opt/tomcat/conf/logging.properties -Djava.util.logging.manager=org.apache.juli.ClassLoaderLogManager -Djava.awt.headless=true -Djava.security.egd=file:/dev/./urandom -Djdk.tls.ephemeralDHKeySize=2048 -Djava.protocol.handler.pkgs=org.apache.catalina.webresources -Xms512M -Xmx1024M -server -XX:+UseParallelGC -classpath /opt/tomcat/bin/bootstrap.jar:/opt/tomcat/bin/tomcat-juli.jar -Dcatalina.base=/opt/tomcat -Dcatalina.home=/opt/tomcat -Djava.io.tmpdir=/opt/tomcat/temp org.apache.catalina.startup.Bootstrap start

      $ sudo netstat -plnt | grep 8090
      tcp6 0 0 :::8090 :::* LISTEN 1327/java

      $ nmap localhost

      Starting Nmap 7.01 ( https://nmap.org ) at 2018-11-08 23:23 EST
      Nmap scan report for localhost (127.0.0.1)
      Host is up (0.00013s latency).
      PORT STATE SERVICE
      ...
      8090/tcp open unknown


      it appears to me that tomcat is up and the port is open, so why I can't see my web app pages? The error message on the browser is:



      The connection has timed out


      what step did I just miss?










      share|improve this question













      i deployed some webapps under /opt/tomcat/webapps, using the port 8090 (change made in server.xml), Linux/Ubuntu 16.04. It used to work fine.



      At one pointed I decided to update my firewall, something must have gone wrong during the process and now my web apps stopped showing up.



      Here is my diagnosis:



      $ sudo ufw status verbose
      Status: active
      Logging: on (low)
      Default: allow (incoming), allow (outgoing), disabled (routed)
      New profiles: skip

      To Action From
      -- ------ ----
      ...
      8090 ALLOW IN Anywhere
      ...
      8090 (v6) ALLOW IN Anywhere (v6)


      $ ps -ef | grep tomcat
      tomcat 1327 1 0 22:24 ? 00:00:09 /usr/lib/jvm/java-1.8.0-openjdk-amd64/jre/bin/java -Djava.util.logging.config.file=/opt/tomcat/conf/logging.properties -Djava.util.logging.manager=org.apache.juli.ClassLoaderLogManager -Djava.awt.headless=true -Djava.security.egd=file:/dev/./urandom -Djdk.tls.ephemeralDHKeySize=2048 -Djava.protocol.handler.pkgs=org.apache.catalina.webresources -Xms512M -Xmx1024M -server -XX:+UseParallelGC -classpath /opt/tomcat/bin/bootstrap.jar:/opt/tomcat/bin/tomcat-juli.jar -Dcatalina.base=/opt/tomcat -Dcatalina.home=/opt/tomcat -Djava.io.tmpdir=/opt/tomcat/temp org.apache.catalina.startup.Bootstrap start

      $ sudo netstat -plnt | grep 8090
      tcp6 0 0 :::8090 :::* LISTEN 1327/java

      $ nmap localhost

      Starting Nmap 7.01 ( https://nmap.org ) at 2018-11-08 23:23 EST
      Nmap scan report for localhost (127.0.0.1)
      Host is up (0.00013s latency).
      PORT STATE SERVICE
      ...
      8090/tcp open unknown


      it appears to me that tomcat is up and the port is open, so why I can't see my web app pages? The error message on the browser is:



      The connection has timed out


      what step did I just miss?







      tomcat ubuntu-16.04 iptables ufw






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Nov 9 at 4:30









      J.E.Y

      349315




      349315





























          active

          oldest

          votes











          Your Answer






          StackExchange.ifUsing("editor", function () {
          StackExchange.using("externalEditor", function () {
          StackExchange.using("snippets", function () {
          StackExchange.snippets.init();
          });
          });
          }, "code-snippets");

          StackExchange.ready(function() {
          var channelOptions = {
          tags: "".split(" "),
          id: "1"
          };
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function() {
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled) {
          StackExchange.using("snippets", function() {
          createEditor();
          });
          }
          else {
          createEditor();
          }
          });

          function createEditor() {
          StackExchange.prepareEditor({
          heartbeatType: 'answer',
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader: {
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          },
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          });


          }
          });














          draft saved

          draft discarded


















          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53219905%2ftomcat-webapp-not-showing-up-on-browser-due-to-connection-timeout%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown






























          active

          oldest

          votes













          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes
















          draft saved

          draft discarded




















































          Thanks for contributing an answer to Stack Overflow!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid



          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.


          To learn more, see our tips on writing great answers.





          Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


          Please pay close attention to the following guidance:


          • Please be sure to answer the question. Provide details and share your research!

          But avoid



          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.


          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53219905%2ftomcat-webapp-not-showing-up-on-browser-due-to-connection-timeout%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          這個網誌中的熱門文章

          Tangent Lines Diagram Along Smooth Curve

          Yusuf al-Mu'taman ibn Hud

          Zucchini