Changes between Version 8 and Version 9 of OTM-Windows
- Timestamp:
- 02/16/12 11:48:54 (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
OTM-Windows
v8 v9 47 47 After previous step completes, type python, run the following command to check the installation. 48 48 {{{ 49 import django 50 print django.get_version() 51 49 import django 50 print django.get_version() 52 51 }}} 53 52 … … 58 57 Then navigate to the django-supervisor folder. Type 59 58 {{{ 60 59 easy_install django-supervisor 61 60 }}} 62 61 … … 86 85 87 86 {{{ 88 Ppm> install http://theoryx5.uwinnipeg.ca/ppms/Crypt-SSLeay.ppd87 ppm> install http://theoryx5.uwinnipeg.ca/ppms/Crypt-SSLeay.ppd 89 88 }}} 90 89 … … 115 114 Use the following command to generate cert and key 116 115 openssl req -new -x509 -days 365 -nodes -config config.txt -out server-cert.pem -keyout server-key.pem 117 118 116 }}} 119 117 … … 141 139 Locate: 142 140 {{{ 143 141 my $CurrTestTs = sprintf('%04d-%02d-%02d.%02d:%02d:%02d', 144 142 }}} 145 143 change to: 146 144 {{{ 147 145 my $CurrTestTs = sprintf('%04d-%02d-%02d.%02dX%02dX%02d' 148 146 }}} 149 147 … … 153 151 Locate 154 152 {{{ 155 153 $tt1 =~ s/\.//g; 156 154 }}} 157 155 Add a line behind: 158 156 {{{ 159 $tt1 =~ s/X//g; 160 157 $tt1 =~ s/X//g; 161 158 }}} 162 159 … … 188 185 return $dline; 189 186 } 190 191 192 187 }}} 193 188 … … 198 193 199 194 {{{ 200 201 195 cd Datagen 202 196 perl file_server.pl … … 207 201 cd Datagen 208 202 python node_service.py 209 210 203 }}} 211 204