I got the below error when my server was up and running ?

khadevishal18khadevishal18 Member Posts: 6 Newbie
edited December 2018 in Help
The below warning gets printed continuously

08:15:08,769 INFO  [stdout] (ActiveMQ Transport: tcp:///127.0.0.1:63838@5672)   at java.lang.Thread.run(Unknown Source)
08:15:08,769 INFO  [stdout] (ActiveMQ Transport: tcp:///127.0.0.1:63838@5672)
08:15:08,770 INFO  [stdout] (ActiveMQ Transport: tcp:///127.0.0.1:63838@5672) 2018-12-06 08:15:08.769  WARN 15215 --- [.0.1:63838@5672] o.a.a.b.TransportConnection.Service      : Security Error occurred on connection to: tcp://127.0.0.1:63838, User name [1rTDfFb2MR41jiVtN3xgpJys] or password is invalid.
08:15:08,863 INFO  [stdout] (ActiveMQ Transport: tcp:///127.0.0.1:63839@5672) 2018-12-06 08:15:08.863  WARN 15215 --- [.0.1:63839@5672] o.a.activemq.broker.TransportConnection  : Failed to add Connection id=ID:ace2v218-22829-1542359522529-1:61747, clientId=ID:ace2v218-22829-1542359522529-0:61747 due to {}
08:15:08,863 INFO  [stdout] (ActiveMQ Transport: tcp:///127.0.0.1:63839@5672)
08:15:08,863 INFO  [stdout] (ActiveMQ Transport: tcp:///127.0.0.1:63839@5672) java.lang.SecurityException: User name [1rTDfFb2MR41jiVtN3xgpJys] or password is invalid.
08:15:08,863 INFO  [stdout] (ActiveMQ Transport: tcp:///127.0.0.1:63839@5672)   at org.apache.activemq.security.SimpleAuthenticationBroker.authenticate(SimpleAuthenticationBroker.java:103)
08:15:08,863 INFO  [stdout] (ActiveMQ Transport: tcp:///127.0.0.1:63839@5672)   at org.apache.activemq.security.SimpleAuthenticationBroker.addConnection(SimpleAuthenticationBroker.java:71)
08:15:08,863 INFO  [stdout] (ActiveMQ Transport: tcp:///127.0.0.1:63839@5672)   at org.apache.activemq.broker.MutableBrokerFilter.addConnection(MutableBrokerFilter.java:103)
08:15:08,864 INFO  [stdout] (ActiveMQ Transport: tcp:///127.0.0.1:63839@5672)   at org.apache.activemq.broker.TransportConnection.processAddConnection(TransportConnection.java:852)
08:15:08,864 INFO  [stdout] (ActiveMQ Transport: tcp:///127.0.0.1:63839@5672)   at org.apache.activemq.broker.jmx.ManagedTransportConnection.processAddConnection(ManagedTransportConnection.java:77)
08:15:08,864 INFO  [stdout] (ActiveMQ Transport: tcp:///127.0.0.1:63839@5672)   at org.apache.activemq.command.ConnectionInfo.visit(ConnectionInfo.java:139)
08:15:08,865 INFO  [stdout] (ActiveMQ Transport: tcp:///127.0.0.1:63839@5672)   at org.apache.activemq.broker.TransportConnection.service(TransportConnection.java:336)
08:15:08,865 INFO  [stdout] (ActiveMQ Transport: tcp:///127.0.0.1:63839@5672)   at org.apache.activemq.broker.TransportConnection$1.onCommand(TransportConnection.java:200)
08:15:08,865 INFO  [stdout] (ActiveMQ Transport: tcp:///127.0.0.1:63839@5672)   at org.apache.activemq.transport.MutexTransport.onCommand(MutexTransport.java:50)
08:15:08,865 INFO  [stdout] (ActiveMQ Transport: tcp:///127.0.0.1:63839@5672)   at org.apache.activemq.transport.WireFormatNegotiator.onCommand(WireFormatNegotiator.java:125)
08:15:

Tagged:

Answers

  • JessForbesRMJessForbesRM RapidMiner Certified Analyst, RapidMiner Certified Expert, Member Posts: 38 RM Data Scientist
     : Security Error occurred on connection to: tcp://127.0.0.1:63838, User name [1rTDfFb2MR41jiVtN3xgpJys] or password is invalid.

    Looks like your job agent is trying to connect with bad information.  This can happen if the server was upgraded but agents were not.  

    You need to ensure that the information inside of execution.properties matches what your job agent config.properties has.

    ---

    Inside of the config for a job agent at job-agent\home\config\agent.properties you will find something like the following

    "##

    1. Queue related configuration in case ActiveMQ is enabled as the broker.
      #
      jobagent.queue.activemq.host = 127.0.0.1
      jobagent.queue.activemq.port = 5672
      jobagent.queue.activemq.username = 
      jobagent.queue.activemq.password =

    This should match what is in the execution.properties file from the rapidminer server home at \rapidminer-server\rapidminer-server-home\configuration\execution.properties

    #

    1. ActiveMQ configuration / Queue configuration
      #
      jobservice.queue.activemq.embeddedBroker.enabled = true
      jobservice.queue.activemq.uri = failover:(tcp://0.0.0.0:5672)
      jobservice.queue.activemq.username = 
      jobservice.queue.activemq.password =

    The agent should be restarted once you match the information

Sign In or Register to comment.