i donwload the agent from this url, i build with maven and copy the zip to my new instance that have installed the puppet agent.
http://apache.dattatec.com/stratos/4.0.0/apache-stratos-4.0.0.zip that is correct or i need to copy the agent from the stratos instance? i review the code and and is try to find in the server public void init(String topicName) throws Exception { InitialContext ctx; Properties environment = Util.getProperties(jndiPropFileDir + File.separator + "jndi.properties"); environment.put(Constants.REQUEST_BASE_CONTEXT, "true"); // always returns the base context. ctx = new InitialContext(environment); // Lookup connection factory String connectionFactoryName = environment.get("connectionfactoryName").toString(); TopicConnectionFactory connFactory = (TopicConnectionFactory) ctx.lookup(connectionFactoryName); // Lookup the topic try { setTopic((Topic) ctx.lookup(topicName)); } catch (NamingException e) { } topicConnection = connFactory.createTopicConnection(); topicConnection.start(); } Thanks Ignacio 2014-08-21 3:28 GMT-03:00 Nirmal Fernando <[email protected]>: > Sorry, I should have asked to set correct MB_URL in jndi.properties file. > And AFAIS you have already done that. I'm assuming you are using Agent from > master branch? > > > On Thu, Aug 21, 2014 at 11:44 AM, Nirmal Fernando <[email protected]> > wrote: > >> Hi, >> >> You need to add the correct mb_url in Agent's stratos.sh file's system >> properties section. >> >> >> On Thu, Aug 21, 2014 at 11:26 AM, Ignacio Ayuste < >> [email protected]> wrote: >> >>> Hi guys, im using EC2 with one instance with docker and stratos, i >>> created and instance with centos and then install the puppet agent, then i >>> copy the cartbrige agent and try to start and give me this error: >>> >>> log4j:WARN No appenders could be found for logger >>> (org.apache.stratos.cartridge. >>> agent.Main). >>> log4j:WARN Please initialize the log4j system properly. >>> [2014-08-21 05:47:01,290] ERROR - [CartridgeAgentConfiguration] Commits >>> enabled >>> payload parameter is not found >>> [2014-08-21 05:47:01,293] INFO - [CartridgeAgentConfiguration] >>> Cartridge agent >>> configuration initialized >>> [2014-08-21 05:47:01,360] INFO - [CartridgeAgent] Cartridge agent >>> started >>> [2014-08-21 05:47:01,497] INFO - [CartridgeAgent] Instance notifier >>> event messa >>> ge receiver thread started >>> [2014-08-21 05:47:01,538] INFO - >>> [InstanceNotifierEventMessageDelegator] Instan >>> ce notifier event message delegator started >>> SLF4J: Class path contains multiple SLF4J bindings. >>> SLF4J: Found binding in >>> [jar:file:/root/apache-stratos-cartridge-agent-4.0.0-SNA >>> >>> PSHOT/lib/slf4j-1.5.10.wso2v1.jar!/org/slf4j/impl/StaticLoggerBinder.class] >>> SLF4J: Found binding in >>> [jar:file:/root/apache-stratos-cartridge-agent-4.0.0-SNA >>> >>> PSHOT/lib/slf4j-log4j12-1.7.5.jar!/org/slf4j/impl/StaticLoggerBinder.class] >>> SLF4J: See http://www.slf4j.org/codes.html#multiple_bindings for an >>> explanation. >>> [2014-08-21 05:47:01,819] INFO - [CartridgeAgent] Tenant event message >>> receiver >>> thread started >>> [2014-08-21 05:47:01,824] INFO - [TenantEventMessageDelegator] Tenant >>> event mes >>> sage delegator started >>> [2014-08-21 05:47:07,637] WARN - [FailoverTransport] Failed to connect >>> to [tcp: >>> //localhost:61616] after: 10 attempt(s) continuing to retry. >>> [2014-08-21 05:47:07,638] WARN - [FailoverTransport] Failed to connect >>> to [tcp: >>> //localhost:61616] after: 10 attempt(s) continuing to retry. >>> >>> the problem is the localhost, i change the jndi.properties file and also >>> the script but always throw me localhost. i attached the script and >>> property file as an evidence. >>> >>> any idea why is happening this? >>> >>> Thanks >>> Ignacio >>> >> >> >> >> -- >> Best Regards, >> Nirmal >> >> Nirmal Fernando. >> PPMC Member & Committer of Apache Stratos, >> Senior Software Engineer, WSO2 Inc. >> >> Blog: http://nirmalfdo.blogspot.com/ >> > > > > -- > Best Regards, > Nirmal > > Nirmal Fernando. > PPMC Member & Committer of Apache Stratos, > Senior Software Engineer, WSO2 Inc. > > Blog: http://nirmalfdo.blogspot.com/ >
