Ignore:
Timestamp:
06/09/13 23:52:36 (11 years ago)
Author:
jripsl
Message:

Add demo scenarios.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Monitoring/doc/README

    r859 r866  
    66        - Supervisor installation 
    77                - Python installation 
    8                         - TODO: add python install instructions here 
     8                        - yum install python26 
     9                        - yum install python26-devel 
     10                        - yum install sqlite 
     11                        - yum install sqlite-devel 
     12                        - yum install python-sqlite 
    913                - Virtualenv installation 
    10                         - TODO: add virtual env install instructions here 
     14                        - cd /opt/src/ 
     15                        - wget http://pypi.python.org/packages/source/v/virtualenv/virtualenv-1.6.1.tar.gz 
     16                        - tar xzvf virtualenv-1.6.1.tar.gz 
     17                        - rm virtualenv-1.6.1.tar.gz 
     18                        - cd /opt/src/virtualenv-1.6.1 
     19                        - /usr/bin/python26 virtualenv.py --distribute --unzip-setuptools /opt/python2.6_ve 
     20                        - source /opt/python2.6_ve/bin/activate 
    1121                - Python PYPI libraries installation 
    1222                        - procedure (as root) 
     
    1727                                - pip install <package name> 
    1828                        - packages list 
    19                                 - packages below are needed by SMON 
    20                                         - pip install pika # RabbitMQ client library 
    21                                 - packages below are needed by Prodiguer library 
    22                                         - 
    23                                                 - pip install psycopg2 
    24                                                         - doesn't work (Error: pg_config executable not found) 
    25                                                                 - solution is 
    26                                                                         - yum install python-psycopg2.x86_64 
    27                                                                         - yum install libpqxx-devel 
    28                                                                         - yum install python-devel 
    29                                                                         - pip install psycopg2 
    30                                                                                 - works 
    31                                                 - pip install Sqlalchemy 
    32                                                 - pip install elixir 
    33                                                 - pip install simplejson 
    34                                         - note: some Elixir/SQLAlchemy versions are not compatible. 
    35                                           to be sure, you can use version below which are compatible 
    36                                                 - Elixir-0.7.1-py2.6.egg-info 
    37                                                 - SQLAlchemy-0.7.8-py2.6.egg-info 
     29                                - pika     # RabbitMQ client library 
     30                                - networkx # graph library 
     31                                - #pip amqplib # not used for now 
    3832                - Prodiguer library installation 
    39                         - svn co svn+ssh://<login here>@forge.ipsl.jussieu.fr/ipsl/forge/projets/prodiguer/svn/sw/src/python/trunk/prodiguer_shared/src 
    40                         - edit "watch" script and edit line below accordingly 
    41                                 - sys.path.append("/home/jripsl/snapshot/src")  
     33                        - dependencies (PYPI packages) 
     34                                - 
     35                                        - pip install psycopg2 
     36                                                - doesn't work (Error: pg_config executable not found) 
     37                                                        - solution is 
     38                                                                - yum install python-psycopg2.x86_64 
     39                                                                - yum install libpqxx-devel 
     40                                                                - yum install python-devel 
     41                                                                - pip install psycopg2 
     42                                                                        - works 
     43                                        - pip install Sqlalchemy 
     44                                        - pip install elixir 
     45                                        - pip install simplejson 
     46                                - notes 
     47                                        - some Elixir/SQLAlchemy versions are not compatible. 
     48                                                - to be sure, you can use version below which are compatible 
     49                                                        - Elixir-0.7.1-py2.6.egg-info 
     50                                                        - SQLAlchemy-0.7.8-py2.6.egg-info 
     51                                                - to install specific version with pip, do 
     52                                                        - pip install SQLAlchemy==0.7.8 
     53                        - Prodiguer package 
     54                                - svn co svn+ssh://<login here>@forge.ipsl.jussieu.fr/ipsl/forge/projets/prodiguer/svn/sw/src/python/trunk/prodiguer_shared/src 
     55                                - edit "watch" script and edit line below accordingly 
     56                                        - sys.path.append("/home/jripsl/snapshot/src")  
Note: See TracChangeset for help on using the changeset viewer.