Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Home           Previous Page         

When uploading the war file, Tomcat hangs and stops responding. This typically occurs when you have not defined a MySQL user account that OpenMRS can use to access the database or you have not granted this user full access to the openmrs database. The default username is test with password test. The default username/password can be overridden in the OPENMRS_RUNTIME_PROPERTIES.PROPERTIES configuration file.

To fix this: use Navicat or the MySQL administration tool (available frommysql.com) to verify that you have a user with username "test" and password "test" and this user has full access to the openmrs database.

Cannot connect to Tomcat on port 8080. This port is sometimes used by other programs, such as Popfile and TivoServer. You can use the Windows "netstat -ao" command to discover if another process is using port 8080. Also, a case was found where software for a HP Laserjet 2840 printer was trying to use port 8005, which conflicts with Tomcat startup.

.war file deploys in Tomcat but it won't start OpenMRS

Try this:

...

  • use OpenMRS;
  • create user openmrs identified by 'openmrs';
  • GRANT ALL ON openmrs.* TO 'openmrs'@'%';

...

Note

This page is outdated and no longer receives updates!