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: about 2 months 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 (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-03-26T21:15:08.000Z (over 2 years ago)
- Last Synced: 2025-01-09T01:08:45.743Z (over 1 year 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;