1 Reply Latest reply on Dec 27, 2013 4:47 PM by oresistemas

    Error when creating a container (fabric - shh)

    oresistemas

      Hi everyone. I was creating a fabric in JBoss Fuse and then I created a container with the command:

       

      fabric:container-create-ssh --host svrfuse2 --user fuse --password fuse123 --path /home/fuse/containers --resolver manualip camel_01

       

      But the container cannot starts. When I saw the info:

       

      JBossFuse:admin@root> container-info camel_01

      Name:                          camel_01

      Version:                       1.0

      Alive:                         false

      Resolver:                      manualip

      Network Address:               null

      SSH Url:                       null

      JMX Url:                       null

      Profiles:                      default

      Provision Status:              not provisioned

       

      Why the Network Address, SSH and JMX URLs are null? What is wrong?

       

      I use:

      apache-maven-3.1.0

      jboss-fuse-full-6.0.0.redhat-024

      JDK 1.6.0_45

       

      Thanks for your help.

        • 1. Re: Error when creating a container (fabric - shh)
          oresistemas

          Almost forgot: I'm behind a proxy and I had to add the proxy details in the maven file  "settings.xml" and in ".bash_profile".

           

          In settings.xml:


            <proxies>

             <proxy>

                <active>true</active>

                <protocol>http</protocol>

                <host>160.160.4.245</host>

                <port>8080</port>

                <nonProxyHosts>localhost|127.0.0.1|10.1.44.61|10.1.44.62|10.1.44.63|svrfuse1|svrfuse2|svrfuse3</nonProxyHosts>

              </proxy>

            </proxies>

           

          In .bash_profile:

           

          #HTTP Proxy

          export http_proxy=http://160.160.4.245:8080

          export no_proxy="localhost,127.0.0.1,10.1.44.61,10.1.44.62,10.1.44.63,svrfuse1,svrfuse2,svrfuse3"