4 Replies Latest reply on Feb 21, 2013 11:04 AM by stphnlwlsh

    Admin Console with Fedora 17

    stphnlwlsh

      Just installed jboss-as 7 on my Fedora 17 box.  Below is my iptables file.  I'm still not able to get to the admin console.

       

      Understandably, I can't get to 8080 because I haven't opened it, but I don't understand why I can't get to 9990.

       

      Any thoughts?

       

      # Firewall configuration written by system-config-firewall

      # Manual customization of this file is not recommended.

      *filter

      :INPUT ACCEPT [0:0]

      :FORWARD ACCEPT [0:0]

      :OUTPUT ACCEPT [0:0]

      -A INPUT -m state --state ESTABLISHED,RELATED -j ACCEPT

      -A INPUT -p icmp -j ACCEPT

      -A INPUT -i lo -j ACCEPT

      -A INPUT -m state --state NEW -m tcp -p tcp --dport 22 -j ACCEPT

      -A INPUT -m state --state NEW -m tcp -p tcp --dport 80 -j ACCEPT

      -A INPUT -m state --state NEW -m tcp -p tcp --dport 9990 -j ACCEPT

      -A INPUT -j REJECT --reject-with icmp-host-prohibited

      -A FORWARD -j REJECT --reject-with icmp-host-prohibited

      COMMIT

      ~       

        • 1. Re: Admin Console with Fedora 17
          wdfink

          Hi Stephen,

           

          how do you start the JBoss and how do you access the admin console.

          Also what version of JBoss do you have installed?

          • 2. Re: Admin Console with Fedora 17
            stphnlwlsh

            I believe it's 7.1.1.  I installed from yum (yum install jboss-as) which subsequently knocked out Java 1.6 which I'll have to fix later.

             

            I've been starting by either systemctl start jboss-as.service or ./standalone.sh from /usr/share/jboss-as/bin

             

            It's a clean install so port 9990 has not be reconfigured or anything.

            • 3. Re: Admin Console with Fedora 17
              wdfink

              I'm not sure, maybe SeLinux will block it. You will find page how to disable or configure it with Google

              1 of 1 people found this helpful
              • 4. Re: Admin Console with Fedora 17
                stphnlwlsh

                I've been searching for answers on why it won't open that port even though the iptables is correct.  Figured the default install from yum would be good.  Clearly it's not, and I need to wipe that out and do a manual install.

                 

                Thanks for the help.