Changes between Version 9 and Version 10 of REDCap HowTo Install Using Docker


Ignore:
Timestamp:
09/19/16 15:34:02 (8 years ago)
Author:
saj.issa
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • REDCap HowTo Install Using Docker

    v9 v10  
    55== Prerequisites
    66
    7 Install git
     7'''Step 1 - Install Git'''
    88
    99    {{{$ sudo apt-get update }}}
     
    1111    {{{$ sudo apt-get install git }}}
    1212
     13Please note you will need to have an account on git.
     14
     15'''Step 2 - Backup Redcap Database'''
     16
     17Log on to the mysql database machine.
     18
     19    {{{mysqldump --routines --skip-extended-insert --force -h localhost -u root -p redcap > $(date +\%d-\%m-\%Y-)_redcap.sql }}}
     20
     21This will create a database dump file.
     22
     23Connect to my sql.
     24
     25    {{{mysql -u root -p}}}
     26
     27Create a database, make sure you postfix with Redcap version number
     28
     29    {{{mysql > create database redcap6168}}}
     30
     31Import the lastest database.
     32
     33    {{{mysql -u root -p -h localhost redcap6168 < 19-09-2016-_redcap.sql}}}
    1334
    1435There are 3 docker scripts available from github :