Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/its-kios09/openmrs-db

Sourcing up OpenMRS empty database
https://github.com/its-kios09/openmrs-db

bash database sql tomcat

Last synced: 7 days ago
JSON representation

Sourcing up OpenMRS empty database

Awesome Lists containing this project

README

        

## Sourcing up OpenMRS empty database

Follow these steps to set up OpenMRS on your system:

1. **Copy Files:**
- Transfer the `openmrs.war` file and modules to their respective directories.

2. **Database Setup:**
```bash
mysql -uroot -p
drop database openmrs;
create database openmrs;
source ~/openmrs.sql;
exit;