Oscar EMR Installation with Caisi Integrator from Source
Preface
This document is an A-Z installation guide on installing the Oscar EMR with the Caisi Integrator. The OscarSetup.zip file will be available on Google Drive. In most cases in this document, the process will be described, followed by the bolded instructional steps. All paths are absolute.
* See bottom of document for list of commonly used commands *
Prerequisites
Install Ubuntu 12.04 LTS (host or vm). Run all updates.
Java
See instructions on how to get sun-java below.
MySQL 5.1 or 5.5+
Tomcat
The tomcat service will run automatically. Enter the following command to stop the service.
Git
Maven2
Download the apache-maven-2.2.1.zip file. It must be 2.2.1.
Create a directory called bin in the home folder.
Extract the zip file to the bin folder.
Configure your environment variables:
Enter these lines at the bottom of the file:source
Logout and in to see changes
Check your versions to confirm it’s all working
MySQL Workbench
Eclipse (install java first, instruction below)
Your working directory should be named "workspace" and is located at /home/username/
How to get sun-java
To install the official Sun JDK, enter the following commands:
Running java -version in command line should now read
Lastly the new Java environment needs to be pointed to a different SWT library. Execute:
on a 64-bit installation and
on a 32-bit. I have not confirmed the 32-bit one.
*If using eclipse, you will want to install egit and m2e (Help > Install New Software > All Available Sites > search for ‘egit’ and ‘m2e’ and install each).
MySQL Setup
You will want to create a mysql user named 'oscar' with the password 'oscar' and grant this user all permissions to your databases. The easiest way to perform these mysql operations is to use mysql workbench.
Setup a new Server Instance:
Click New Server Instance (Under Server Administration)
Select localhost
Click Next
Make sure Connection Name is localhost
Host Name is localhost
Username is root
click Next, Select your Install Variant and continue until Finish appears.
When the Server Instance has been created, click Finish.
- Open (Double Click) your new server instance from the list box on the right (mysqld@localhost)
- Select Users and Privileges under Security on the left menu.
- Click the Add Account button and enter the following credentials:
- Login name: oscar
- Limit connectivity: localhost
- Password: oscar
- Confirm password: oscar
- Select Administrative Roles tab and select the DBA Role. This way the oscar user has all permissions.
The user oscar@localhost will be used for all mysql operations from this point on, rather than root@localhost.
Getting the Latest Version of Oscar
To clone Oscar from gerrit, you will have create an account on gerrit - the code review system of choice for Oscar – generate an ssh key, and link it to your account. In terminal, follow the steps below:
This will display the ssh-key that you will be copying into gerrit.
Log into gerrit (https://source.oscartools.org:8080)
Click Settings (top-right)
Click SSH Public Keys
Click the Add Key button
Now copy the ssh key from the text editor, and paste it into the ssh-key field in Gerrit and click "Add".
In order to get the latest version of the Oscar project, we will have to clone the oscar project from Gerrit. Enter these commands to setup a new project directory in your workspace folder:
Setting Up a Custom Tomcat Installation
Download the OscarSetup.zip file from the google docs and unzip it into the user directory.
Next you will have to copy the tomcat-local folder into your local workspace
Setting Up the Oscar Database
Don’t do this unless you have to. Instead ask for the latest MySQL dump from someone who cares. If you can’t find anyone, do it this way.
Run the initialization script to setup your databases. This script accepts 3 parameters:
i. mysql username (oscar)
ii. mysql password (oscar)
iii. the name of the database that you are running creating
Next you will need to fill the oscar database with sample data:
If you get a fresh mysql dump, login to mysql as oscar and run
Then run
Now we will want to create the test database.
create database oscar_test # if this database already exists, it’s ok
Now run
Building and Running Oscar
Copy the files into your home folder
Oscar.properties
Deploy-oscar.sh
Drugref.properties
Now to build the project, in terminal, you’ll want to run the following:
Go to home folder and run
Now open up a web browser, and navigate to http://localhost:8080/oscar
You’re done! You should now have a "working" copy of the Oscar EMR. Lucky You!!!
-------------------------------------------------------
Command: Description:
Command | Description |
sudo /etc/init.d/tomcat6 start/restart/stop | Restarts tomcat engine |
sudo nano /etc/profile/ | Edit environment variables |
mv /home/mohawk/workspace/oscar_source/oscar/target/oscar-SNAPSHOT.war $CATALINA_BASE/webapps/oscar.war | Move compiled war file to $CATALINA_BASE |
mvn clean package | Compile oscar |
sudo /etc/init.d/tomcat6 stop