Changes between Version 8 and Version 9 of OTM-Windows


Ignore:
Timestamp:
02/16/12 11:48:54 (12 years ago)
Author:
yxu@osc.edu
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • OTM-Windows

    v8 v9  
    4747After previous step completes, type python, run the following command to check the installation.
    4848{{{
    49  import django
    50  print django.get_version()
    51 
     49import django
     50print django.get_version()
    5251}}}
    5352
     
    5857Then navigate to the django-supervisor folder. Type
    5958{{{
    60  easy_install django-supervisor
     59easy_install django-supervisor
    6160}}}
    6261
     
    8685
    8786{{{
    88 Ppm> install http://theoryx5.uwinnipeg.ca/ppms/Crypt-SSLeay.ppd
     87ppm> install http://theoryx5.uwinnipeg.ca/ppms/Crypt-SSLeay.ppd
    8988}}}
    9089
     
    115114Use the following command to generate cert and key
    116115    openssl req -new -x509 -days 365 -nodes -config config.txt -out server-cert.pem -keyout server-key.pem
    117 
    118116}}}
    119117
     
    141139Locate:
    142140{{{
    143    my $CurrTestTs = sprintf('%04d-%02d-%02d.%02d:%02d:%02d',
     141my $CurrTestTs = sprintf('%04d-%02d-%02d.%02d:%02d:%02d',
    144142}}}
    145143change to:
    146144{{{
    147    my $CurrTestTs = sprintf('%04d-%02d-%02d.%02dX%02dX%02d'
     145my $CurrTestTs = sprintf('%04d-%02d-%02d.%02dX%02dX%02d'
    148146}}}
    149147
     
    153151Locate
    154152{{{
    155    $tt1 =~ s/\.//g;
     153$tt1 =~ s/\.//g;
    156154}}}
    157155Add a line behind:
    158156{{{
    159    $tt1 =~ s/X//g;
    160 
     157$tt1 =~ s/X//g;
    161158}}}
    162159
     
    188185        return $dline;
    189186}
    190 
    191 
    192187}}}
    193188
     
    198193
    199194{{{
    200 
    201195cd Datagen
    202196perl file_server.pl
     
    207201cd Datagen
    208202python node_service.py
    209 
    210203}}}
    211204