Step by step installation problems

Application Name: OpenMRS platform Version Number: Replace this text with the version number of the above application your question is about.

Question: Hi, I’m starting new on OpenMRS. I tried to follow the step by step installation for developers, I installed Java, MySQL, Eclipse and Jetty. I did mvn clean install and that was a success. I did mvn jetty:run, I got “Started Jetty Server” message. But when I go to http://localhost:8080/openmrs., I get this- HTTP ERROR 404

Problem accessing /openmrs. Reason:

Not Found

Also I was going through lines before Jetty started, there were no warnings, but I got these, don’t know if that helps. [INFO] Classes directory C:\Basanthi\GitHub\Basanthi_GitHub\openmrs-core-master
target\classes does not exist … [INFO] No Transaction manager found - if your webapp requires one, please config ure one. [WARNING] !RequestLog [INFO] Started SelectChannelConnector@0.0.0.0:8080 [INFO] Started Jetty Server

Please let me know if I can fix something so I can run OpenMRS.

Thanks, Basanthi

This seems like a jetty problem. The error No Transaction manager found - if your webapp requires one, please configure one.

comes when you dont have a XA Transaction Manager declared in JNDI. You can configure this in the /WEB-INF/jetty-env.xml [1] or on a server side using a Deployment Context Descriptor [2].

I am not an expert in jetty. :slightly_smiling: Hope it helps!

[1] http://www.eclipse.org/jetty/documentation/current/using-jetty-jndi.html [2] http://www.eclipse.org/jetty/documentation/current/configuring-specific-webapp-deployment.html#deployable-descriptor-file