1 Reply Latest reply on Dec 27, 2006 5:17 AM by mahendra_kutare

    Running TWIDDLE..Name Not Found Exception..JNDI.PROPERTIES a

    mahendra_kutare

      While trying to run twiddle on my Jboss 4.0.4 installation it throws the
      following error -

      sh ./twiddle.sh -s 10.129.50.4 serverinfo --count

      04:29:29,352 ERROR [Twiddle] Exec failed
      org.jboss.util.NestedRuntimeException Source code of org.jboss.util.NestedRuntimeException: jmx not bound; - nested throwable:
      (javax.naming.NameNotFoundException Source code of javax.naming.NameNotFoundException: jmx not bound) at org.jboss.console
      .twiddle.Twiddle$1.getServer(Twiddle.java:143)
      at org.jboss.console.twiddle.command.MBeanServerCommand Source code of org.jboss.console.twiddle.command.MBeanServerCommand
      (MBeanServerCommand.java:59)
      at org.jboss.console.twiddle.command.ServerInfoCommand Source code of org.jboss.console.twiddle.command.ServerInfoCommand
      (ServerInfoCommand.java:130)
      at org.jboss.console.twiddle.Twiddle Source code of org.jboss.console.twiddle.Twiddle(Twiddle.java:305)
      Caused by: javax.naming.NameNotFoundException Source code of javax.naming.NameNotFoundException: jmx not bound
      at org.jnp.server.NamingServer Source code of org.jnp.server.NamingServer(NamingServer.java:529)
      at org.jnp.server.NamingServer Source code of org.jnp.server.NamingServer(NamingServer.java:537)
      at org.jnp.server.NamingServer Source code of org.jnp.server.NamingServer(NamingServer.java:543)
      at org.jnp.server.NamingServer Source code of org.jnp.server.NamingServer(NamingServer.java:267)
      at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
      at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl
      .java:39)
      at sun.reflect.DelegatingMethodAccessorImpl.invoke
      (DelegatingMethodAccessorImpl.java:25)
      at java.lang.reflect.Method Source code of java.lang.reflect.Method(Method.java:585)
      at sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:294)
      at sun.rmi.transport.Transport$1.run(Transport.java:153)
      at java.security.AccessController Source code of java.security.AccessController(Native Method)
      at sun.rmi.transport.Transport.serviceCall(Transport.java:149)
      at sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java
      :466)
      at sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run
      (TCPTransport.java:707)
      at java.lang.Thread Source code of java.lang.Thread(Thread.java:595)
      at sun.rmi.transport.StreamRemoteCall.exceptionReceivedFromServer
      (StreamRemoteCall.java:247)
      at sun.rmi.transport.StreamRemoteCall.executeCall(StreamRemoteCall.java
      :223)
      at sun.rmi.server.UnicastRef.invoke(UnicastRef.java:126)
      at org.jnp.server.NamingServer_Stub.lookup(Unknown Source)
      at org.jnp.interfaces.NamingContext Source code of org.jnp.interfaces.NamingContext(NamingContext.java:625)
      at org.jnp.interfaces.NamingContext Source code of org.jnp.interfaces.NamingContext(NamingContext.java:587)
      at javax.naming.InitialContext Source code of javax.naming.InitialContext(InitialContext.java:351)
      at org.jboss.console.twiddle.Twiddle Source code of org.jboss.console.twiddle.Twiddle
      (Twiddle.java:250)
      at org.jboss.console.twiddle.Twiddle Source code of org.jboss.console.twiddle.Twiddle(Twiddle.java:268)
      at org.jboss.console.twiddle.Twiddle Source code of org.jboss.console.twiddle.Twiddle$300(Twiddle.java:62)
      at org.jboss.console.twiddle.Twiddle Source code of org.jboss.console.twiddle.Twiddle$1.getServer(Twiddle.java:139)
      ... 3 more

      Can anyone please explain this and possible solution ?

      - Mahendra

        • 1. Re: Running TWIDDLE..Name Not Found Exception..JNDI.PROPERTI
          mahendra_kutare

          For benefit of those, who may be facing this -

          a) Twiddle uses default JNDI name of - jmx/invoker/RMIAdaptor

          b) If you application deployment does not have jmx-invoker-service.xml , JMX will not be registered with JNDI

          c) Copy jmx-invoker-service.xml from all/deploy to [my-app]/deploy

          d) Start Jboss

          e) Run twiddle script as - sh ./twiddle.sh -s 10.129.50.4:1100 -a jmx/invoker/RMIAdaptor invoke jboss:service=JNDIView list true
          to test if twiddle is running fine.

          f) It displays the entire JNDIView

          - Mahendra