Skip to content

Instantly share code, notes, and snippets.

@jmewes
Created April 17, 2017 08:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jmewes/d991ad99b2dddcf181fab16837e15270 to your computer and use it in GitHub Desktop.
Save jmewes/d991ad99b2dddcf181fab16837e15270 to your computer and use it in GitHub Desktop.
Bahmni Service commands
# command to list all services
sudo service --status-all
# command to list all configured services
chkconfig --list
# Command to start or stop a service is: service <service-name> start | stop | status | restart
# -----------------------------------------------------------------------------------------------
# Check status of Apache httpd service (runs Bahmni EMR UI)
sudo service httpd status
# Check status of OpenMRS Backend (needed for Bahmni EMR UI to talk to OpenMRS)
sudo service openmrs status
# Check status of Reports (needed to see reports inside EMR UI)
sudo service bahmni-reports status
# Check status of OpenELIS / Bahmni-Lab
sudo service bahmni-lab status
# Check status of OpenERP / Odoo
sudo service openerp status
# Check status of Bahmni and ERP Connector (for data sync between systems)
sudo service bahmni-erp-connect status
# Check the status of atomfeed-console Service (Looking at the failed events and retrying failed events)
sudo service atomfeed-console status
# Databases needed to be running (mysqld for Bahmni EMR / OpenMRS, and Postgres for Lab and ERP)
sudo service mysqld status
sudo service postgresql-9.2 status
@jmewes
Copy link
Author

jmewes commented Apr 17, 2017

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment