Bahmni EMR and Clinical UI service not loading

I have installed Bahmni using vagrant and virtual box on Ubuntu. The Bahmni Home Landing Page, OpenELIS and Odoo pages are all running perfectly fine, however the EMR and Clinical UI page (https://192.168.33.10/home ) has been buffering for a very long time, without showing the login screen.

I tried to do another installation on windows and countered the exact same issue. The wiki page says to “start the service” and redirects to CentOS installation wiki page, where the service is started using "sudo service start <service_name> ". When I try to do so on the VM on Ubuntu, error comes saying “Unit <service_name>.service not found”.

Hello @anilesh How did you resolve this ?

If the EMR and Clinical UI page for Bahmni is buffering for a long time without showing the login screen, there are a few possible causes and solutions you can try:

  1. Check that the Bahmni EMR and Clinical UI services are running. You can do this by running the following command in the terminal:

luaCopy code

sudo service bahmni-erp-connect status
sudo service bahmni-emr status

If the services are not running, you can start them by running:

sqlCopy code

sudo service bahmni-erp-connect start
sudo service bahmni-emr start
  1. Check that the required ports for Bahmni are open. Bahmni requires several ports to be open for the different components to communicate with each other. The required ports are:

yamlCopy code

80, 443, 8069, 5432, 8050, 8052, 8053, 8054, 8055, 8056, 8057

You can check if the ports are open by running the following command in the terminal:

perlCopy code

sudo netstat -tulpn | grep LISTEN

If any of the required ports are not open, you can open them by modifying your firewall settings. 3. Check that your computer’s resources are not being overused. Running Bahmni requires a significant amount of resources, and if your computer is low on resources, the EMR and Clinical UI page may take a long time to load. You can check your computer’s resource usage by opening the system monitor or task manager and checking the CPU, memory, and disk usage. 4. Try clearing your browser cache or using a different browser. Sometimes browser caches can cause issues with web applications, and clearing the cache or using a different browser can help.

If none of these solutions work, you may need to troubleshoot further or seek additional support from the Bahmni community or support team.

1 Like