Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/its-kios09/openmrs-db
- Owner: its-kios09
- Created: 2024-03-26T11:45:36.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2024-03-26T21:15:08.000Z (8 months ago)
- Last Synced: 2024-03-26T22:27:50.550Z (8 months ago)
- Topics: bash, database, sql, tomcat
- Homepage:
- Size: 23 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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;