Skip to content
Robert Clark edited this page Jun 20, 2014 · 14 revisions

These instructions are for installing a development environment for the most up to date version of the popHealth application. They are based off of installing from the current master branch of repository which is a work in progress until it is tagged.

You will need an NLM VSAC account to download value set definitions and finalize the installation of the VM. You can sign up for an NLM VSAC account at https://uts.nlm.nih.gov/home.html. Click the Sign Up link in the upper right of the page

Furthermore, these instructions are written under the assumption that system user that the commands are being run as has the username pophealth and that the pophealth user has sudo access on the system in question and the application is being installed in the users home directory. This is not a requirement and any user that has sudo access should be able to install pophealth. You will just need to adjust the directory paths in the commands below appropriately.

1. Installing Ubuntu

The ISO for ubuntu 12.04 LTS can be downloaded from the following URL: http://releases.ubuntu.com/precise/

These instructions were developed against the "64-bit PC (AMD64) server install CD" (ubuntu-12.04.1-server-amd64.iso).

Installing Ubuntu is a fairly straight-forward process, but for more details on installing Ubuntu please visit the following URLs:

Graphical install using the desktop CD: https://help.ubuntu.com/community/GraphicalInstall

Installation using the Alternate CD (more configuration options): https://help.ubuntu.com/12.04/installation-guide/index.html

Once Ubuntu has been installed you need to update the Apt packages.  Apt is a software package management system used by Ubuntu. Note: the last command in the group below is only necessary if any packages were actually upgraded.

sudo apt-get update
sudo apt-get upgrade
sudo shutdown -r now

2. Configure Proxy Settings

This step is only required if the server you are installing popHealth onto needs to go through an HTTP proxy server to reach the internet. These steps will ensure that the appropriate proxy settings are in place for every user that logs into the system.

Use your favourite text editor to create a file in /etc/profile.d named http_proxy.sh with the following contents. In the sample below, replace your.proxy.host.com with the fully-qualified host name of your proxy server, and your.proxy.port with the port number that the proxy server uses.

# Set up system-wide HTTP proxy settings for all users
http_proxy='http://your.proxy.host.com:your.proxy.port/'
https_proxy='http://your.proxy.host.com:your.proxy.port/'
export http_proxy https_proxy

Set proper permissions on the new file, and load the settings into the current environment. NOTE: the proxy settings will automatically be loaded when a user logs in, but we are manually loading them here, to avoid having to log out and log back in again.

sudo chmod 0644 /etc/profile.d/http_proxy.sh
source /etc/profile.d/http_proxy.sh

Make sure that the sudo command will allow the new proxy settings to be passed to commands it launches. This is done by using your text editor to create a file in the /etc/sudoers.d directory named http_proxy (no extension) with the following contents:

# keep http_proxy environment variables.
Defaults env_keep += "http_proxy https_proxy"

Set proper permissions on the new file:

sudo chmod 0440 /etc/sudoers.d/http_proxy

3. Installing Git

Git is a source control system.  It will be used later to download the popHealth source code.

sudo apt-get install git-core

4. Installing RVM and Ruby 2.1.1

RVM is a system that allows managing different versions of Ruby.  It will allow the correct version of ruby to be easily installed on the system. Ruby is the development language used for the popHealth application.

First we will need to install some dependencies:

sudo apt-get install build-essential openssl libssl-dev libreadline6 libreadline6-dev curl zlib1g zlib1g-dev libyaml-dev libsqlite3-dev sqlite3 libxml2-dev libxslt-dev autoconf libc6-dev ncurses-dev automake libtool bison subversion pkg-config unzip

Next install RVM.  This will install RVM for all users

curl -L get.rvm.io | sudo -i bash -s stable

Log out, and then log back in again so that the settings RVM installs will be loaded in your environment. Once you have logged back in, run the following commands. These will install some more dependencies.

We will install these dependencies using an admin console. The admin console can be opened with the following command:

sudo -i

Next we want to set the autolibs flag in rvm

rvm autolibs enable

Next we want to install Ruby 2.1.1 using RVM

rvm install 2.1.1

If you get a message about installing dependencies, press 'q'.  We have already installed everything we will need.

Set ruby version 2.1.1 to be the default version:

rvm --default 2.1.1

Finally install bundler.  Bundler is a Ruby Gem that allows downloading additional dependencies once we have the popHealth source code:

gem install bundler -v '1.3.0'

Close the admin console by running:

exit

setup rvm for the admin user:

source /etc/profile.d/rvm.sh
rvm use 2.1.1
rvm --default 2.1.1

5. Installing MongoDB

MongoDB is the database used by popHealth.  To install MongoDB run the commands:

sudo sh -c "echo 'deb http://downloads-distro.mongodb.org/repo/ubuntu-upstart dist 10gen' >> /etc/apt/sources.list"
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv 7F0CEB10
sudo apt-get update
sudo apt-get install mongodb-10gen

To test connection (wait at least 15 seconds to let the db start up), run the command below. If the command exits with a error about not being able to connect, then reboot, and log back in as the admin user. Sometimes mongodb fails to create a network socket when it is started immediately after installation. It should automatically start when the system is rebooted.

mongo

This should output MongoDB shell version: 2.6.x

Note that the version must read 2.4.0 or later (at the time these instructions were written, the current release version of mongodb was 2.6.0).

Type 'exit' to exit the mongo shell

exit

6. PopHealth Source Code

Downloading the pophealth source code from github.

git clone https://github.com/pophealth/popHealth.git
cd popHealth
bundle install

7. Import the measure bundle

popHealth releases measure bundles that contain the measure artifacts that are needed to begin the measure calculation process:

In addition to the measure bundle, the value sets need to be loaded into popHealth from the NLM VSAC Service. You will need an NLM account in order to complete this step and load value sets from the VSAC service._ Register for an account at: https://uts.nlm.nih.gov/home.html

Run the following command to download the measure bundle

Note that the NLM username/password must be entered as part of the third command below:

curl -u NLM_USERNAME:NLM_PASSWORD http://demo.projectcypress.org/bundles/bundle-latest.zip -o ../bundle-latest.zip

Once you have the bundle and the account you can run the following commands to load the bundle.

bundle exec rake bundle:import[/home/pophealth/bundle-latest.zip,false,false,'*',true,true]

8. Seed the database

The popHealth database requires some look up data for things like race and ethnicity codes be available. To set this up, run the following commands:

bundle exec rake db:seed

9. Starting the background processes

Certain tasks such as calculating measures and importer records are handled via a set of job queues and background worker processes that must be running in order for the application to function correctly. The tasks are placed into one of three different queues, calculation, rollup, or import. The simplest means to run these tasks is to use a single worker that will execute all of the jobs as they are added to the queue. This can be done by executing the following command.

bundle exec rake jobs:work

This will start a single worker in the foreground that will execute all tasks regardless of the queue that they are placed in.

As popHealth is using Delayed Job as the background processing library a number of separate workers can run and configured to work off specific queues. Below is an example of how to start a number of workers for each of the different queues. Please bare in mind that you will need to ensure that the --pid-dir setting for each is different and that the directory has been created in advance.

script/delayed_job start -n 1 --pid-dir=tmp/pids/calculation --queue=calculation
script/delayed_job start -n 2 --pid-dir=tmp/pids/rollup --queue=rollup
script/delayed_job start -n 2 --pid-dir=tmp/pids/import --queue=patient_import

For further information on Delayed Job please consult the documentation which can be found here https://github.com/collectiveidea/delayed_job.

10. Starting the application

Starting the application is very simple by running the following command from within the applications root directory.

bundle exec rails s -p <port>

This will start the application running on the port given in the command. If the -p <port> option is left off then the application will start on the default port of 3000. Once started you will be able to access the app in a browser by navigating to http://localhost:<port&gt;. From there click on the "Create New User" link to add a new user to get started with popHealth.

11. Production Environments

A full setup for a production environment is out of scope for the these instructions. As popHealth is a Rails based application there are a number of ways in which you can configure the application for production. We recommend you review the options and documentation available from http://rubyonrails.org/deploy/ and make an informed decision on how to configure you system based on your needs.

Clone this wiki locally