6 Replies Latest reply on Jan 14, 2013 5:13 AM by mariani

    JBoss 7.0.2 : The controller is not available

    mariani

      Dear All,

       

      I'm using standalone, and have 4 instance running

      For every instance I'm start using : ./standalone.sh -Djboss.server.base.dir=/opt/jboss-as/standalonexxx/

       

       

       

      I try to connect to CLI command

      ./jboss-admin.sh --connect --controller=192.168.25.30:10999

       

      But I got disconnected. It said The controller is not available at 192.168.25.30:10999.

       

       

      Do i missed some step? Can anybody help?

       

       

      Thanks in advance.

       

       

      Mariani

        • 1. Re: JBoss 7.0.2 : The controller is not available
          wdfink

          Do you set any offset for the port configuration or do you change the standalonexxx/configuration/standalone.xml?

           

          If you don't change anything the controller is available ONLY with 127.0.0.1/9999 and not with the external IP.

          If you have more questions please provide the standalone.xml config and the full start command.

          • 2. Re: JBoss 7.0.2 : The controller is not available
            mariani

            Thanks for your response

             

             

            Yes I have change my standalone. I can connect through http management console.

             

            I add these lines in order to binding address in standalone.conf

            JAVA_OPTS="$JAVA_OPTS -Djboss.bind.address.management=192.168.25.30"

            JAVA_OPTS="$JAVA_OPTS -Djboss.bind.address=192.168.25.30"

             

            And for the standalone.xml, I do change the port offset, either for management or socket binding.

            <management>

                    ...

                    <management-interfaces>

                        <native-interface interface="management" port="10999"/>

                        <http-interface interface="management" port="10990"/>

                    </management-interfaces>

            </management>

            ...

            <socket-binding-group name="standard-sockets" default-interface="public" port-offset="1000">

            ...

            </socket-binding-group>

             

             

            And I start the server using ./standalone.sh -Djboss.server.base.dir=/opt/jboss-as/standalonexxx/ ( I ran it from service)

             

             

            Thanks in advance,

             

             

             

            Mariani

            • 3. Re: JBoss 7.0.2 : The controller is not available
              wdfink

              I'm not sure how it works in AS7.0.

               

              But I suppose the offset '1000' will be added to '10999' so in fact you have to use 11999.

               

              I would not change the port settings in that way, as this is not possible in AS7.1. I recommend to set all ports inside the socket-bindings section for a better readablity.

              • 4. Re: JBoss 7.0.2 : The controller is not available
                mariani

                It's quite different between AS 7.0.2 and 7.1.x.

                 

                In 7.0.2, the socket binding didn't include management interface. So the port for management is not added by port-offset.

                When it called from http, it will show port 10990. That prove the management port isn't added

                • 5. Re: JBoss 7.0.2 : The controller is not available
                  wdfink

                  Dit it work if you start it not as a service?

                  Do you see any errors or warnings during startup?

                  Do yo see that there is a listener on this port?

                  • 6. Re: JBoss 7.0.2 : The controller is not available
                    mariani

                    Yes it work, and no error during startup

                     

                    here is the server.log snapshot during startup

                     

                    14:13:56,509 INFO  [org.jboss.as.remoting] (MSC service thread 1-2) Listening on /192.168.25.30:10999

                    14:13:56,524 INFO  [org.jboss.as.ee] (Controller Boot Thread) Activating EE subsystem

                    14:13:56,534 INFO  [org.jboss.as.jmx.JMXConnectorService] (MSC service thread 1-2) Starting remote JMX connector

                    14:13:56,688 INFO  [org.apache.coyote.ajp.AjpProtocol] (MSC service thread 1-4) Starting Coyote AJP/1.3 on ajp--192.168.25.30-9009

                    14:13:57,257 INFO  [org.apache.coyote.http11.Http11Protocol] (MSC service thread 1-3) Starting Coyote HTTP/1.1 on http--192.168.25.30-9080