NIH | National Cancer Institute | NCI Wiki  

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Instructions for installing LexEVS 6.x CTS2 Documentation API Service.

  • The installation directory can be anywhere.

...

  • The name of the install directory will be "cts2Docs".
  • The path to the install directory will be referred to as "<path to install dir>"

Access to other Systems

Step-by-step installation guide

...

  1. Clone git repository

    1. git clone https://github.com/cts2/lexevs-service-rest-docs.git
    2. This will create a project under <path to install dir>/cts2Docs/lexevs-service-rest-docs
     

Install Node.js

  1. Download Node.js (linux 64 bit) (v0.10.35) to <path to install dir>/cts2Docs
    1. File download location: nodejs.org/dist/v0.10.35/node-v0.10.35-linux-x64.tar.gz
  2. Unzip the file node-v0.10.35-linux-x64.tar.gz in <path to install dir>/cts2Docs
    1. tar -vxzf node-v0.10.35-linux-x64.tar.gz
  3. Add an environment variable for NPM
    1. export NPM_HOME=<path to install dir>/cts2Docs/node-v0.10.35-linux-x64

    2. export PATH=${PATH}:$NPM_HOME/bin

  4. Update the port that node.js runs on (OPTIONAL step)
    1. Edit this file: <path to install dir>/cts2Docs/lexevs-service-rest-docs/config.json
    2. the The "port" parameter is set to 3000 by default.  It can be changed as needed.  This port used by the end URL to get to the CTS2 API Documentation: (http://<server_name>:port)

...

  1. Download Redis version 2.8.19 to <path to install dir>/cts2Docs
    1. File download location: https://github.com/antirez/redis/archive/2.8.19.tar.gz
  2. Unzip the file redis-2.8.19.tar.gz in <path to install dir>/cts2Docs
    1. tar -vxzf redis-2.8.19.tar.gz
  3. Build redis
    1. cd <path to install dir>/cts2Docs/redis-2.8.19
    2. make

Install Directory File Structure

At this point the install directory should have the following structure:

  •  cts2Docs
    • lexevs-service-rest-docs
    • node-v0.10.35-linux-x64
    • redis-2.8.19

Change Directory permissions

...

  1. Start the redis server
    1. nohup <path to install dir>/cts2Docs/redis-2.8.19/src/redis-server &
    2. By default, redis is running on port 6379
  2. Start the Node.js server
    1. nohup cd <path to install dir>/cts2Docs/lexevs-service-rest-docs
    2. nohup npm start &
    3. node.js is set to run on port 3000 by default.

...