Project

General

Profile

NetDRMS Installation » History » Version 211

Pablo Alingery, 07/06/2016 14:50

1 50 Herve Ballans
{{toc}}
2 1 Herve Ballans
3 1 Herve Ballans
h1. NetDRMS Installation
4 1 Herve Ballans
5 1 Herve Ballans
h2. Requirements
6 1 Herve Ballans
7 47 Pablo Alingery
h3. Configuring production environment
8 1 Herve Ballans
9 121 Pablo Alingery
Adding user production (en root)
10 47 Pablo Alingery
11 1 Herve Ballans
<pre>
12 1 Herve Ballans
# adduser production
13 1 Herve Ballans
# addgroup ias
14 1 Herve Ballans
# adduser production ias
15 1 Herve Ballans
</pre>
16 1 Herve Ballans
17 49 Herve Ballans
h3. Configure /home/production/.profile
18 1 Herve Ballans
19 49 Herve Ballans
Adding environment variables
20 1 Herve Ballans
21 1 Herve Ballans
<pre>
22 122 Herve Ballans
#Modif Herve.B Pablo.A 12/05/2016
23 122 Herve Ballans
24 1 Herve Ballans
PATH="/usr/local/netdrms_current/bin/linux_x86_64:$PATH"
25 49 Herve Ballans
PATH="/usr/local/netdrms_current/scripts:$PATH"
26 122 Herve Ballans
PATH="/usr/local/jmd/bin:$PATH"
27 122 Herve Ballans
PATH="/usr/local/jmd/scripts:$PATH"
28 141 Pablo Alingery
#The following is not needed as installed with 'apt-get install' 
29 141 Pablo Alingery
#PATH="/usr/local/pgsql/bin:$PATH"
30 122 Herve Ballans
PATH="/usr/local/netdrms-tools/scripts:$PATH"
31 49 Herve Ballans
#2014-12-17 Avec Herve et Pablo on pense que la ligne suivante est intutile as it is f.. install in /usr/local/lib
32 140 Pablo Alingery
PATH="/usr/local/cfitsio:$PATH"
33 1 Herve Ballans
#Done
34 49 Herve Ballans
35 122 Herve Ballans
DERBY_HOME=/usr/local/jmd/databases/derby/derbyBD
36 49 Herve Ballans
export DERBY_HOME
37 49 Herve Ballans
38 49 Herve Ballans
export CVSROOT=:pserver:anonymous@solarch.tuc.noao.edu:2401/vtarc1/vso/cvsroot
39 49 Herve Ballans
</pre>
40 49 Herve Ballans
41 162 Pablo Alingery
h3. Configure /varl/lib/postgres/.profile
42 161 Pablo Alingery
43 163 Pablo Alingery
Add to $PATH so postgres can exeute command like initdb
44 161 Pablo Alingery
45 161 Pablo Alingery
<pre>
46 161 Pablo Alingery
#Modif Herve.B Pablo.A 19/05/2016
47 161 Pablo Alingery
PATH="/usr/lib/postgresql/9.4/bin:$PATH"
48 161 Pablo Alingery
</pre>
49 161 Pablo Alingery
50 125 Pablo Alingery
h3. Setting privileges for SUMS_MANAGER
51 87 Herve Ballans
52 126 Pablo Alingery
Please modify file /etc/sudoers so user 'production' will be able to execute  'sum_chown' that we will locate in the dir : /usr/local/bin . See below
53 125 Pablo Alingery
Add to /etc/sudoers the following line :
54 1 Herve Ballans
	production host=NOPASSWD:/usr/local/bin/sum_chmown
55 1 Herve Ballans
56 127 Pablo Alingery
h3. Set passwords file for db postgres 
57 1 Herve Ballans
58 127 Pablo Alingery
Please create file .pgpass with the following information for user 'production" so he will be able to connect without password as 'production' or 'postgres' to 2 db that we will create later ias_sdo and ias_sdo_sums.
59 1 Herve Ballans
60 1 Herve Ballans
61 1 Herve Ballans
.pgpass content :
62 1 Herve Ballans
<pre>
63 128 Pablo Alingery
	#hostname:5432:ias_sdo:production: 
64 128 Pablo Alingery
	#hostname:5434:ias_sdo_sums:production: 
65 128 Pablo Alingery
	#hostname:5432:ias_sdo:postgres: 
66 128 Pablo Alingery
	#hostname:5434:ias_sdo_sums:postgres
67 1 Herve Ballans
</pre>
68 128 Pablo Alingery
69 129 Pablo Alingery
where #hostname is the name of your server
70 129 Pablo Alingery
71 129 Pablo Alingery
72 131 Pablo Alingery
%{color:red}WARNING : change hostname when migrate sdo-new to sdo%
73 1 Herve Ballans
74 143 Pablo Alingery
75 132 Pablo Alingery
76 133 Pablo Alingery
h3. Install missing libraries 
77 1 Herve Ballans
78 133 Pablo Alingery
• libreadline-dev (but already installed with postgresql)
79 133 Pablo Alingery
• libssl-dev 
80 133 Pablo Alingery
• libpam0g-dev 
81 133 Pablo Alingery
• libperl-dev 
82 1 Herve Ballans
83 133 Pablo Alingery
NB : Already done in Debian 8.4 Jessy
84 1 Herve Ballans
<pre>
85 1 Herve Ballans
# apt-get install $library_name
86 1 Herve Ballans
</pre> 
87 1 Herve Ballans
where
88 1 Herve Ballans
	_$library_name_ is the name of library
89 19 Pablo Alingery
90 1 Herve Ballans
Then to update path on libraries, please type :
91 1 Herve Ballans
<pre>
92 19 Pablo Alingery
# ldconfig
93 1 Herve Ballans
</pre>
94 1 Herve Ballans
95 1 Herve Ballans
h3. Reconfigure locale
96 1 Herve Ballans
97 1 Herve Ballans
<pre>
98 1 Herve Ballans
# dpkg-reconfigure locales
99 1 Herve Ballans
</pre>
100 1 Herve Ballans
101 1 Herve Ballans
select fr_FR.UTF8 UTF8 and unselect en_US.UTF-8
102 1 Herve Ballans
103 1 Herve Ballans
localedef -i en_US -f UTF-8 en_US.UTF-8
104 1 Herve Ballans
105 1 Herve Ballans
(see here : [[http://www.thomas-krenn.com/en/wiki/Perl_warning_Setting_locale_failed_in_Debian]])
106 1 Herve Ballans
107 134 Pablo Alingery
h3. Install gfortran packages
108 1 Herve Ballans
109 1 Herve Ballans
<pre>
110 1 Herve Ballans
# apt-get install gfortran swig
111 1 Herve Ballans
</pre>
112 1 Herve Ballans
113 1 Herve Ballans
h3. Installation of cfitsio library
114 1 Herve Ballans
115 135 Pablo Alingery
In /usr/local dir
116 135 Pablo Alingery
117 135 Pablo Alingery
Version 3.39 (currently on sdo : 3.24)
118 1 Herve Ballans
<pre>
119 135 Pablo Alingery
# wget ftp://heasarc.gsfc.nasa.gov/software/fitsio/c/cfitsio3390.tar.gz
120 1 Herve Ballans
</pre>
121 137 Pablo Alingery
Untar and  decompression
122 1 Herve Ballans
<pre>
123 136 Pablo Alingery
# tar -xzvf cfitsio3390.tar.gz
124 1 Herve Ballans
</pre> 
125 1 Herve Ballans
126 139 Pablo Alingery
Go into /usr/local and type
127 1 Herve Ballans
128 1 Herve Ballans
su - root and :
129 1 Herve Ballans
<pre>
130 1 Herve Ballans
# ./configure --prefix=/usr/local
131 1 Herve Ballans
# make 
132 1 Herve Ballans
# make install
133 135 Pablo Alingery
</pre>
134 118 Pablo Alingery
135 144 Pablo Alingery
h3. Installation of apache2 and lib perl
136 118 Pablo Alingery
137 118 Pablo Alingery
<pre>
138 118 Pablo Alingery
# apt-get install apache2
139 118 Pablo Alingery
140 118 Pablo Alingery
# apt-get install libjson-perl
141 118 Pablo Alingery
142 118 Pablo Alingery
# apt-get install libapache2-mod-perl2
143 118 Pablo Alingery
</pre>
144 1 Herve Ballans
145 183 Herve Ballans
h3. Installation of postgresql
146 1 Herve Ballans
147 145 Pablo Alingery
Into 'root'
148 145 Pablo Alingery
 
149 145 Pablo Alingery
<pre>
150 147 Pablo Alingery
apt-get install postgresql-9.4 postgresql-client-9.4 
151 145 Pablo Alingery
</pre>
152 145 Pablo Alingery
153 209 Pablo Alingery
h3. Installation python3
154 209 Pablo Alingery
155 209 Pablo Alingery
Into 'root'
156 209 Pablo Alingery
 
157 209 Pablo Alingery
<pre>
158 209 Pablo Alingery
apt-get install python3 
159 1 Herve Ballans
</pre>
160 210 Pablo Alingery
161 211 Pablo Alingery
Add some modules psycopg2 (postgres connector) and pySmartDL (Download manager) 
162 210 Pablo Alingery
163 210 Pablo Alingery
<pre>
164 210 Pablo Alingery
apt-get install python3-psycopg2
165 210 Pablo Alingery
</pre>
166 210 Pablo Alingery
167 210 Pablo Alingery
<pre>
168 210 Pablo Alingery
apt-get install python3-psycopg2
169 210 Pablo Alingery
</pre>
170 210 Pablo Alingery
171 210 Pablo Alingery
172 210 Pablo Alingery
Add python3-pip for modules within python3
173 210 Pablo Alingery
174 210 Pablo Alingery
<pre>
175 210 Pablo Alingery
apt-get install python3-pip
176 209 Pablo Alingery
</pre>
177 209 Pablo Alingery
178 1 Herve Ballans
h2. NetDRMS databases
179 1 Herve Ballans
180 156 Pablo Alingery
into /var/lib/postgresql  (hard mount point separated,  7 disks 15000 tr/min in raid5 in order to distribute read and write) 
181 1 Herve Ballans
182 1 Herve Ballans
<pre>
183 158 Pablo Alingery
# cd /var/lib/postgresql
184 157 Pablo Alingery
# mkdir data  data_sums data_monitor
185 157 Pablo Alingery
# chown -R postgres:postgres * 
186 1 Herve Ballans
</pre>
187 1 Herve Ballans
188 160 Pablo Alingery
h3. Initialize 3 servers data,  data_sums, data_monitor
189 1 Herve Ballans
190 159 Pablo Alingery
Into postgres
191 1 Herve Ballans
<pre>
192 1 Herve Ballans
# su - postgres
193 1 Herve Ballans
194 1 Herve Ballans
$ initdb --locale=C -D data -A md5 -W
195 1 Herve Ballans
(no password)
196 2 Herve Ballans
197 2 Herve Ballans
Success. You can now start the database server using:
198 2 Herve Ballans
199 2 Herve Ballans
    postgres -D data
200 2 Herve Ballans
or
201 2 Herve Ballans
    pg_ctl -D data -l logfile start
202 2 Herve Ballans
203 1 Herve Ballans
204 1 Herve Ballans
$ initdb --locale=C -D data_sums -A md5 -W
205 2 Herve Ballans
(no password)
206 2 Herve Ballans
207 2 Herve Ballans
Success. You can now start the database server using:
208 2 Herve Ballans
209 2 Herve Ballans
    postgres -D data_sums
210 2 Herve Ballans
or
211 2 Herve Ballans
    pg_ctl -D data_sums -l logfile start
212 8 Pablo Alingery
213 8 Pablo Alingery
$ initdb --locale=C -D data_monitor -A md5 -W
214 8 Pablo Alingery
(no password)
215 8 Pablo Alingery
216 8 Pablo Alingery
Success. You can now start the database server using:
217 8 Pablo Alingery
218 8 Pablo Alingery
    postgres -D data_monitor
219 8 Pablo Alingery
or
220 8 Pablo Alingery
    pg_ctl -D data_monitor -l logfile start
221 2 Herve Ballans
</pre>
222 2 Herve Ballans
223 1 Herve Ballans
224 1 Herve Ballans
225 1 Herve Ballans
Edition des fichiers postgresql.conf pour configurer les bons ports d'écoute :
226 1 Herve Ballans
listen_addresses = '*'
227 1 Herve Ballans
data -> port 5432
228 10 Pablo Alingery
data_sums -> port 5434
229 1 Herve Ballans
data_monitor -> port 5436
230 10 Pablo Alingery
231 165 Pablo Alingery
Edit files data*/pg_hba.conf : replace 'md5' by 'trust'
232 1 Herve Ballans
<pre>
233 1 Herve Ballans
#"local"
234 1 Herve Ballans
local   all             all                                     trust
235 1 Herve Ballans
#"IPv4"
236 1 Herve Ballans
host   all             all                                     trust
237 1 Herve Ballans
</pre>
238 166 Pablo Alingery
239 166 Pablo Alingery
h3. Tunning postgres 
240 166 Pablo Alingery
241 166 Pablo Alingery
In file postgres.conf ( according to https://www.qwant.com/?q=Tunning+postgres+server+9.4+&client=firefox  )
242 166 Pablo Alingery
243 168 Pablo Alingery
shared_buffer=4096MB %{color:red}So 1/12 of the total RAM memory available%
244 1 Herve Ballans
245 169 Pablo Alingery
work_mem = 24MB
246 168 Pablo Alingery
247 168 Pablo Alingery
maintenance_work_mem = 4096MB
248 1 Herve Ballans
249 169 Pablo Alingery
wal_buffers = 16MB
250 169 Pablo Alingery
251 169 Pablo Alingery
checkpoint_segments = 32
252 169 Pablo Alingery
253 169 Pablo Alingery
checkpoint_completion_target = 0.9
254 169 Pablo Alingery
255 169 Pablo Alingery
random_page_cost = 1.0
256 169 Pablo Alingery
257 169 Pablo Alingery
effective_cache_size = 16384MB so 1/4 of the max memory 
258 169 Pablo Alingery
259 170 Pablo Alingery
260 170 Pablo Alingery
261 170 Pablo Alingery
#log
262 169 Pablo Alingery
logging_collector = on 
263 169 Pablo Alingery
log_directory = 'pg_log' 
264 169 Pablo Alingery
log_filename = 'postgresql-%Y-%m-%d_%H%M%S.log' # log file name pattern,
265 169 Pablo Alingery
log_truncate_on_rotation = on           # If on, an existing log file with the
266 169 Pablo Alingery
log_rotation_age = 1d                   # Automatic rotation of logfiles will
267 170 Pablo Alingery
client_min_messages = error
268 170 Pablo Alingery
log_min_messages = error 
269 170 Pablo Alingery
log_min_duration_statement = 0
270 170 Pablo Alingery
271 170 Pablo Alingery
log_connections = on
272 170 Pablo Alingery
log_disconnections = on
273 170 Pablo Alingery
log_duration = off
274 170 Pablo Alingery
log_hostname = on
275 170 Pablo Alingery
log_line_prefix = '%t [%p]: %u@%h - %d :'  
276 170 Pablo Alingery
277 170 Pablo Alingery
track_counts = on
278 170 Pablo Alingery
autovacuum = on 
279 170 Pablo Alingery
280 170 Pablo Alingery
extra_float_digits = 3
281 170 Pablo Alingery
282 177 Pablo Alingery
h3. Start the 3 databases :
283 1 Herve Ballans
284 1 Herve Ballans
<pre>
285 1 Herve Ballans
# su - postgres
286 196 Herve Ballans
$ cd /var/lib/postgresql
287 172 Pablo Alingery
$ pg_ctl -D data  start
288 172 Pablo Alingery
$ pg_ctl -D data_sums start
289 172 Pablo Alingery
$ pg_ctl -D data_monitor start
290 1 Herve Ballans
</pre>
291 174 Pablo Alingery
292 1 Herve Ballans
h3. Create the 3 databases :
293 181 Pablo Alingery
294 178 Pablo Alingery
Into user 'postgres'
295 1 Herve Ballans
296 179 Pablo Alingery
* createdb --locale C -E LATIN1 -T template0 ias_sdo
297 179 Pablo Alingery
* createdb --locale C -E LATIN1 -T template0 -p 5434 ias_sdo_sums
298 179 Pablo Alingery
* createdb --locale C -E LATIN1 -T template0 -p 5436 ias_sdo_monitor
299 54 Herve Ballans
300 182 Herve Ballans
h3. Automatic startup
301 182 Herve Ballans
302 182 Herve Ballans
Add following lines in the /etc/rc.local file :
303 182 Herve Ballans
304 182 Herve Ballans
<pre>
305 197 Herve Ballans
su -l -c "/usr/lib/postgresql/9.4/bin/pg_ctl -D /var/lib/postgresql/data start" postgres
306 197 Herve Ballans
su -l -c "/usr/lib/postgresql/9.4/bin/pg_ctl -D /var/lib/postgresql/data_sums start" postgres
307 197 Herve Ballans
su -l -c "/usr/lib/postgresql/9.4/bin/pg_ctl -D /var/lib/postgresql/data_monitor start" postgres
308 182 Herve Ballans
</pre>
309 182 Herve Ballans
310 184 Herve Ballans
h2. System tuning
311 1 Herve Ballans
312 187 Herve Ballans
Current configuration :
313 185 Herve Ballans
<pre>
314 185 Herve Ballans
# sysctl -a
315 185 Herve Ballans
</pre>
316 1 Herve Ballans
317 187 Herve Ballans
In the following file :
318 185 Herve Ballans
<pre>
319 185 Herve Ballans
# vi /etc/sysctl.conf
320 185 Herve Ballans
</pre>
321 1 Herve Ballans
322 188 Herve Ballans
we change some values (default values are commented with '#')
323 194 Herve Ballans
324 195 Herve Ballans
(resources links [[Links|here]])
325 194 Herve Ballans
326 185 Herve Ballans
<pre>
327 191 Herve Ballans
# Semaphore is a object that is used to control utilization of a particular process.
328 191 Herve Ballans
# kernel.sem = SEMMSL SEMMNS SEMOPM SEMMNI
329 191 Herve Ballans
# SEMMSL        maximum number of semaphores per array  (min 128)
330 191 Herve Ballans
# SEMMNS        maximum semaphores system-wide  
331 191 Herve Ballans
# SEMOPM        maximum operations per semop call       
332 191 Herve Ballans
# SEMMNI        maximum arrays 
333 191 Herve Ballans
#semop incresed from 32 (default value)operation to 100 (3rd value )
334 191 Herve Ballans
# kernel.sem = 250      32000   32      128
335 191 Herve Ballans
kernel.sem = 250 32000 100 128
336 191 Herve Ballans
337 191 Herve Ballans
In order to  apply changes :#This sets the  OS receive buffer size for all types of connections (default value 212992)
338 191 Herve Ballans
#net.core.rmem_default = 212992
339 191 Herve Ballans
#net.core.rmem_max = 212992
340 191 Herve Ballans
net.core.rmem_default = 33554432
341 191 Herve Ballans
net.core.rmem_max = 33554432
342 191 Herve Ballans
343 191 Herve Ballans
#This is the OS send buffer size for all types of connections (212992 default value) 
344 191 Herve Ballans
#net.core.wmem_default = 212992
345 191 Herve Ballans
#net.core.wmem_max = 212992
346 191 Herve Ballans
net.core.wmem_default = 33554432
347 191 Herve Ballans
net.core.wmem_max = 33554432
348 191 Herve Ballans
349 193 Pablo Alingery
#TCP Autotuning setting. "The first value tells the kernel the minimum receive buffer for each TCP connection, and this buffer is always
350 193 Pablo Alingery
# allocated to a TCP socket, even under high pressure on the system. ... The second value specified tells the kernel the default receive
351 193 Pablo Alingery
# buffer allocated for each TCP socket. This value overrides the /proc/sys/net/core/rmem_default value used by other protocols. ...
352 192 Pablo Alingery
# The third and last value specified in this variable specifies the maximum receive buffer that can be allocated for a TCP socket."
353 1 Herve Ballans
#net.ipv4.tcp_rmem = 4096       87380   6291456
354 1 Herve Ballans
net.ipv4.tcp_rmem = 10240 87380 33554432
355 1 Herve Ballans
356 193 Pablo Alingery
#TCP Autotuning setting. "This variable takes 3 different values which holds information on how much TCP sendbuffer memory space
357 193 Pablo Alingery
# each TCP socket has to use. Every TCP socket has this much buffer space to use before the buffer is filled up. Each of the three 
358 193 Pablo Alingery
#values are used under different conditions. ... The first value in this variable tells the minimum TCP send buffer space available
359 193 Pablo Alingery
# for a single TCP socket. ... The second value in the variable tells us the default buffer space allowed for a single TCP socket to use. ... 
360 193 Pablo Alingery
#The third value tells the kernel the maximum TCP send buffer space." 
361 191 Herve Ballans
#net.ipv4.tcp_wmem = 4096       16384   4194304
362 191 Herve Ballans
net.ipv4.tcp_wmem = 10240 87380 33554432
363 191 Herve Ballans
364 191 Herve Ballans
#Disable cache metrics so the initial conditions of the closed connections will not be saved to be used in near future connections
365 191 Herve Ballans
#net.ipv4.tcp_no_metrics_save = 0
366 191 Herve Ballans
net.ipv4.tcp_no_metrics_save = 1
367 191 Herve Ballans
368 1 Herve Ballans
# Increase number of incoming connections backlog
369 1 Herve Ballans
# net.core.netdev_max_backlog = 1000
370 1 Herve Ballans
net.core.netdev_max_backlog = 5000
371 1 Herve Ballans
372 1 Herve Ballans
# The tcp_mem variable defines how the TCP stack should behave when it comes to memory usage. ... 
373 192 Pablo Alingery
#The first value specified in the tcp_mem variable tells the kernel the low threshold. 
374 192 Pablo Alingery
#Below this point, the TCP stack do not bother at all about putting any pressure on the memory usage by different TCP sockets. ... 
375 193 Pablo Alingery
#The second value tells the kernel at which point to start pressuring memory usage down. ... The final value tells the kernel how many
376 193 Pablo Alingery
# memory pages it may use maximally
377 1 Herve Ballans
# net.ipv4.tcp_mem = 1543347    2057796 3086694
378 191 Herve Ballans
net.ipv4.tcp_mem = 786432 1048576 26777216
379 191 Herve Ballans
380 192 Pablo Alingery
# local port range that is used by TCP and UDP traffic to choose the local port. You will see in the parameters of this file two numbers:
381 192 Pablo Alingery
# The first number is the first local port allowed for TCP and UDP traffic on the server, the second is the last local port number.
382 191 Herve Ballans
# net.ipv4.ip_local_port_range = 32768  61000
383 191 Herve Ballans
net.ipv4.ip_local_port_range = 1024 65535
384 191 Herve Ballans
385 191 Herve Ballans
# maximum number of sockets in TIME-WAIT to be held simultaneously.
386 191 Herve Ballans
# net.ipv4.tcp_max_tw_buckets = 262144
387 191 Herve Ballans
net.ipv4.tcp_max_tw_buckets = 360000
388 1 Herve Ballans
</pre>
389 185 Herve Ballans
390 191 Herve Ballans
Then we run the following command to make our change take effect:
391 191 Herve Ballans
392 185 Herve Ballans
<pre>
393 185 Herve Ballans
# sysctl -p
394 185 Herve Ballans
</pre>
395 176 Pablo Alingery
396 1 Herve Ballans
h2. NetDRMS tool Install
397 23 Pablo Alingery
398 199 Pablo Alingery
The following installed is based on : [[http://inf-redmine.ias.u-psud.fr/redmine/attachments/download/114/Netdrms_First_Install.odt]]
399 1 Herve Ballans
400 207 Pablo Alingery
The sources are in : http://jsoc.stanford.edu/netdrms/dist/ 
401 207 Pablo Alingery
Locally on sdo-new in  : /home/production/sources
402 1 Herve Ballans
403 199 Pablo Alingery
Symbolic link created 'netdrms_current' that corresponds to the last release
404 1 Herve Ballans
ln -s netdrms_8.10/ netdrms_current 
405 1 Herve Ballans
406 199 Pablo Alingery
Edit file config.local
407 27 Pablo Alingery
<pre>
408 27 Pablo Alingery
cp config.local.template config.local
409 1 Herve Ballans
</pre>
410 29 Pablo Alingery
411 203 Pablo Alingery
%{color:red}Warning WEB_DBUSER      apache  We think that it should value www maybe , to be checked testing the cgi%
412 208 Pablo Alingery
%{color:red}So check the cgi to figure out which user is used to connect to bd%
413 32 Herve Ballans
414 199 Pablo Alingery
Create 2 followings dirs : 
415 1 Herve Ballans
<pre>
416 32 Herve Ballans
mkdir /usr/local/netdrms_8.10/logs/SUM
417 28 Pablo Alingery
mkdir /usr/local/netdrms_8.10/logs/slony
418 27 Pablo Alingery
</pre>
419 1 Herve Ballans
420 205 Pablo Alingery
%{color:red}Warning config.local from line 150 =>222 Remote config to provide data, series to externals%
421 205 Pablo Alingery
%{color:red}To be checked for PLATO%
422 1 Herve Ballans
423 1 Herve Ballans
Création d'un alias netdrms dans /root/.bashrc
424 27 Pablo Alingery
<pre>
425 1 Herve Ballans
alias netdrms='cd /usr/local/netdrms_current'
426 1 Herve Ballans
</pre>
427 31 Pablo Alingery
428 206 Pablo Alingery
%{color:red}In config.local we are at line 223%
429 206 Pablo Alingery
%{color:red}------------------------------------------------------------------------------------------------------------------%
430 206 Pablo Alingery
431 1 Herve Ballans
h3. Modification du fichier /usr/local/netdrms_current/configure (Not Applied in NetDrms_8.10)
432 1 Herve Ballans
433 1 Herve Ballans
<pre>
434 1 Herve Ballans
# The system configuration for configure script
435 1 Herve Ballans
set PERLBIN = "/usr/bin/perl"
436 1 Herve Ballans
set PYBIN = "/usr/bin/python"
437 200 Pablo Alingery
</pre>
438 200 Pablo Alingery
439 34 Herve Ballans
440 34 Herve Ballans
h3. Compilation problem due to uncorrect variable types
441 35 Herve Ballans
442 34 Herve Ballans
Art (art.amezcua@stanford.edu) purpose us a workaround and send us 2 files with correct declaration :
443 42 Herve Ballans
444 42 Herve Ballans
SUMLIB_RmDo.pgc (diff with original file : [[diff_SUMLIB_RmDo.pgc]])
445 34 Herve Ballans
SUMLIB_RmDoX.pgc (diff with original file : [[diff_SUMLIB_RmDoX.pgc]])
446 109 Pablo Alingery
447 109 Pablo Alingery
Dans le répertoire base/sums/libs/pg renommer les anciens en *.orig et placer les nouveau fichiers SUMLIB_RmDo.pgc et SUMLIB_RmDoX.pgc
448 36 Herve Ballans
449 36 Herve Ballans
<pre>
450 36 Herve Ballans
# wget http://jsoc.stanford.edu/~arta/SUMLIB_RmDo.pgc
451 38 Herve Ballans
# wget http://jsoc.stanford.edu/~arta/SUMLIB_RmDoX.pgc
452 34 Herve Ballans
</pre>
453 1 Herve Ballans
454 1 Herve Ballans
h3. Modification du fichier /usr/local/netdrms_current/build/jsoc_machine.csh
455 1 Herve Ballans
456 1 Herve Ballans
ligne 28 :
457 1 Herve Ballans
458 1 Herve Ballans
<pre>
459 1 Herve Ballans
  case "x86_64":
460 1 Herve Ballans
      echo linux_x86_64
461 1 Herve Ballans
      breaksw
462 109 Pablo Alingery
</pre>
463 109 Pablo Alingery
464 109 Pablo Alingery
Overwriting the existing files in the right place (base/sums/libs/pg) & modif in jsoc_machine.csh 
465 109 Pablo Alingery
=> the command 'make' works well.
466 109 Pablo Alingery
467 109 Pablo Alingery
But there is still problem with 'make sums'
468 109 Pablo Alingery
469 109 Pablo Alingery
h3. Workaround to solve make sums problem
470 109 Pablo Alingery
471 109 Pablo Alingery
Modify [[sum_rpc.h]] in order to match the type of some variables
472 109 Pablo Alingery
473 1 Herve Ballans
474 43 Pablo Alingery
475 1 Herve Ballans
h3. Copier /usr/local/netdrms_2.4_release/base/drms/apps/serverdefs.h dans /usr/local/netdrms_current/base/drms/apps (not applied in NetDrms_8.10)
476 44 Pablo Alingery
477 1 Herve Ballans
h3. Modification du fichier /usr/local/netdrms_current/configure (not applied in NetDrms_8.10)
478 1 Herve Ballans
479 1 Herve Ballans
au lieu de $? en csh on va mettre plutot $status
480 1 Herve Ballans
481 1 Herve Ballans
ligne 110 :
482 1 Herve Ballans
483 1 Herve Ballans
<pre>
484 1 Herve Ballans
  if ($status==0) 
485 1 Herve Ballans
</pre>
486 4 Herve Ballans
487 1 Herve Ballans
et ligne 123 :
488 1 Herve Ballans
489 1 Herve Ballans
<pre>
490 1 Herve Ballans
  if ($status==0) 
491 1 Herve Ballans
</pre>
492 4 Herve Ballans
493 4 Herve Ballans
Lancement :
494 4 Herve Ballans
<pre>
495 1 Herve Ballans
./configure
496 1 Herve Ballans
</pre>
497 1 Herve Ballans
498 1 Herve Ballans
h3. Installation des libraries libtar-dev, libcurl3-dev et libecpg-dev
499 1 Herve Ballans
500 4 Herve Ballans
<pre>
501 1 Herve Ballans
apt-get install libtar libtar-dev
502 1 Herve Ballans
</pre>
503 1 Herve Ballans
504 1 Herve Ballans
<pre>
505 1 Herve Ballans
apt-get install libcurl3-dev
506 1 Herve Ballans
</pre>
507 1 Herve Ballans
508 1 Herve Ballans
<pre>
509 1 Herve Ballans
apt-get install libecpg-dev
510 1 Herve Ballans
</pre>
511 45 Pablo Alingery
512 1 Herve Ballans
h3. #H4ck 2 Malade #PabloR0cks# (Not Applied in NetDrm_8.10)
513 1 Herve Ballans
514 1 Herve Ballans
Modification du fichier /usr/include/stdint.h
515 17 Herve Ballans
516 17 Herve Ballans
ligne 55 : long int remplacé par long long int
517 17 Herve Ballans
518 17 Herve Ballans
<pre>
519 17 Herve Ballans
#if __WORDSIZE == 64
520 17 Herve Ballans
typedef unsigned long int       uint64_t; --> ici long long int
521 17 Herve Ballans
#else
522 17 Herve Ballans
__extension__
523 17 Herve Ballans
typedef unsigned long long int  uint64_t;
524 17 Herve Ballans
#endif
525 1 Herve Ballans
</pre>
526 1 Herve Ballans
527 1 Herve Ballans
"Allo Linus ?!?.."
528 1 Herve Ballans
529 1 Herve Ballans
h3. Compilation
530 1 Herve Ballans
531 1 Herve Ballans
<pre>
532 1 Herve Ballans
# make
533 53 Herve Ballans
# make sums
534 1 Herve Ballans
# make jsoc_fetch
535 1 Herve Ballans
</pre>
536 1 Herve Ballans
537 6 Pablo Alingery
NB : lib64 does not exist on debian 8. so ln -s /usr/lib lib64
538 46 Pablo Alingery
539 1 Herve Ballans
h2. make sums KO  (Not applied in NetDrms_8.10)
540 6 Pablo Alingery
541 6 Pablo Alingery
Solution found : Take old lib libcrypto instead libssl
542 16 Herve Ballans
543 6 Pablo Alingery
dans le fichier base/sums/apps/Rules.mk ligne 51 
544 55 Herve Ballans
replace -lssl by -lcrypto LD flag
545 57 Herve Ballans
546 55 Herve Ballans
h2. NetDRMS replication
547 56 Herve Ballans
548 56 Herve Ballans
<pre>
549 60 Herve Ballans
# cd base/drms/replication/etc
550 60 Herve Ballans
# scp production@sdo:/usr/local/netdrms/install-config-files/ias.subscribe_list.cfg  .
551 104 Pablo Alingery
# scp production@sdo:/usr/local/netdrms/install-config-files/ias.repclient.cfg  .
552 104 Pablo Alingery
WRONG !!!!!
553 104 Pablo Alingery
To be done cp repclient.template.cfg into ias.subscribe_list.cfg because new field in config file can't appear 
554 104 Pablo Alingery
Correct that step in NetDrms doc 
555 104 Pablo Alingery
The existing ias.repclient.cfg can be used tough to fill params 
556 104 Pablo Alingery
557 56 Herve Ballans
558 104 Pablo Alingery
</pre>
559 6 Pablo Alingery
560 59 Herve Ballans
561 59 Herve Ballans
Create tmp dir in netdrms working directory (/usr/local/netdrms_current)
562 59 Herve Ballans
<pre>
563 59 Herve Ballans
# mkdir tmp
564 59 Herve Ballans
</pre>
565 61 Herve Ballans
566 61 Herve Ballans
Prevent from deleting files
567 61 Herve Ballans
<pre>
568 61 Herve Ballans
cd logs/SUM ; scp production@sdo:/usr/local/netdrms/install-config-files/sum_rm.cfg .
569 61 Herve Ballans
</pre>
570 117 Pablo Alingery
571 112 Herve Ballans
h2. JMD installation 
572 115 Pablo Alingery
573 115 Pablo Alingery
Donwnload new JMD package build by Niles Oien 2016-04-07 following thoses actions :
574 115 Pablo Alingery
575 116 Pablo Alingery
<pre>
576 116 Pablo Alingery
cd /urs/local
577 115 Pablo Alingery
578 115 Pablo Alingery
[oien@spsc-nso19-12 ~]$ ftp gong2.nso.edu
579 115 Pablo Alingery
Name (gong2.nso.edu:oien): anonymous
580 115 Pablo Alingery
Password: <---------------- use your email as the password
581 115 Pablo Alingery
ftp> cd outgoing/oien
582 115 Pablo Alingery
ftp> get pablo_jmd.tar.gz
583 115 Pablo Alingery
ftp> quit
584 115 Pablo Alingery
</pre>
585 115 Pablo Alingery
586 115 Pablo Alingery
Install new JMD package following thoses actions 
587 115 Pablo Alingery
588 115 Pablo Alingery
<pre>
589 1 Herve Ballans
[oien@spsc-nso19-12 ~]$ gunzip -vf pablo_jmd.tar.gz
590 1 Herve Ballans
pablo_jmd.tar.gz:      8.3% -- replaced with pablo_jmd.tar
591 116 Pablo Alingery
[oien@spsc-nso19-12 ~]$ tar xf pablo_jmd.tar
592 116 Pablo Alingery
[oien@spsc-nso19-12 ~]$ cd pablo_jmd
593 116 Pablo Alingery
[oien@spsc-nso19-12 pablo_jmd]$ less PABLO_README.txt
594 115 Pablo Alingery
cd ..
595 116 Pablo Alingery
mv jmd jmd_old
596 115 Pablo Alingery
mv pablo_jmd jmd 
597 112 Herve Ballans
</pre>
598 119 Pablo Alingery
599 112 Herve Ballans
h2. JMD Configuration
600 112 Herve Ballans
601 112 Herve Ballans
Configure webserver  to request jsoc_fetch
602 112 Herve Ballans
(following the mail from nilesoien@gmail.com)
603 113 Pablo Alingery
604 113 Pablo Alingery
config d 'apache2 fichier sdo3.ias.u-psud.fr 
605 113 Pablo Alingery
<pre>
606 113 Pablo Alingery
607 113 Pablo Alingery
<VirtualHost *:80>
608 113 Pablo Alingery
        ServerName sdo3.ias.u-psud.fr
609 113 Pablo Alingery
        ServerAdmin pablo.alingery@ias.u-psud.fr
610 113 Pablo Alingery
        #ErrorLog /var/log/apache2/error.log
611 113 Pablo Alingery
        DocumentRoot /var/www
612 113 Pablo Alingery
613 113 Pablo Alingery
        # Possible values include: debug, info, notice, warn, error, crit,
614 113 Pablo Alingery
        # alert, emerg.
615 113 Pablo Alingery
        LogLevel debug
616 113 Pablo Alingery
617 113 Pablo Alingery
        #CustomLog /var/log/apache2/VSO/access.log combined
618 113 Pablo Alingery
619 113 Pablo Alingery
        Alias /VSO/DRMS/cgi-bin/ "/home/production/netdrms-tools/scripts/cgi-bin/"
620 113 Pablo Alingery
621 113 Pablo Alingery
        <Location /VSO/DRMS/cgi-bin>
622 113 Pablo Alingery
                SetHandler perl-script
623 113 Pablo Alingery
                PerlResponseHandler ModPerl::Registry
624 113 Pablo Alingery
                PerlOptions +ParseHeaders
625 113 Pablo Alingery
                Options +ExecCGI
626 113 Pablo Alingery
                Order allow,deny
627 113 Pablo Alingery
                Allow from all
628 112 Herve Ballans
        </Location>
629 112 Herve Ballans
</VirtualHost>
630 112 Herve Ballans
631 112 Herve Ballans
</pre>
632 1 Herve Ballans
633 120 Pablo Alingery
634 1 Herve Ballans
Execution test cgi with URL :
635 112 Herve Ballans
http://sdo3.ias.u-psud.fr/ VSO/DRMS/cgi-bin/vso_jsoc_fetch.cgi
636 120 Pablo Alingery
637 112 Herve Ballans
expected result  :
638 112 Herve Ballans
<pre>
639 112 Herve Ballans
{
640 112 Herve Ballans
   "wait" : 0,
641 112 Herve Ballans
   "requestid" : "",
642 112 Herve Ballans
   "data" : {},
643 112 Herve Ballans
   "method" : "url_quick",
644 112 Herve Ballans
   "size" : 0,
645 112 Herve Ballans
   "errormsg" : "Empty query",
646 112 Herve Ballans
   "protocol" : "as-is",
647 112 Herve Ballans
   "status" : 1,
648 112 Herve Ballans
   "space_ratio" : 0.1,
649 112 Herve Ballans
   "load_ratio" : 0.066875,
650 112 Herve Ballans
   "dir" : "",
651 112 Herve Ballans
   "count" : 0
652 112 Herve Ballans
}
653 91 Herve Ballans
</pre>
654 91 Herve Ballans
655 91 Herve Ballans
h2. NetDRMS Start script
656 91 Herve Ballans
657 91 Herve Ballans
<pre>
658 91 Herve Ballans
sum_start.NetDRMS
659 91 Herve Ballans
</pre>
660 91 Herve Ballans
661 91 Herve Ballans
h2. Database repair (from Art)
662 91 Herve Ballans
663 91 Herve Ballans
On ias_sdo
664 91 Herve Ballans
665 91 Herve Ballans
<pre>
666 91 Herve Ballans
delete from admin.ns where name = 'lm_jps';
667 91 Herve Ballans
delete from admin.ns where name = 'aia_test';
668 91 Herve Ballans
</pre>
669 93 Pablo Alingery
670 93 Pablo Alingery
h2. Private key Public key generation 
671 93 Pablo Alingery
672 93 Pablo Alingery
<pre>
673 93 Pablo Alingery
ssh-keygen -t rsa
674 93 Pablo Alingery
</pre>
675 103 Herve Ballans
676 103 Herve Ballans
Not necessary cause we recover the ssh keys of the current server.
677 103 Herve Ballans
678 103 Herve Ballans
However, we have to retrieve the private key of production account on sdo3
679 103 Herve Ballans
680 103 Herve Ballans
From sdo :
681 103 Herve Ballans
<pre>
682 103 Herve Ballans
rsync -av id_rsa production@sdo3:/home/production/.ssh/
683 103 Herve Ballans
</pre>
684 94 Herve Ballans
685 94 Herve Ballans
h2. Node definition
686 94 Herve Ballans
687 94 Herve Ballans
file : /usr/local/netdrms_current/base/drms/replication/etc/ias.repclient.cfg
688 94 Herve Ballans
689 94 Herve Ballans
<pre>
690 1 Herve Ballans
node=IAStest
691 96 Herve Ballans
</pre>
692 96 Herve Ballans
693 96 Herve Ballans
h2. show_series and delete_series binaries
694 96 Herve Ballans
695 97 Pablo Alingery
Remark : these 2 sources are not compiled during installation
696 96 Herve Ballans
Issue : in netdrms_current 8.10 , do :
697 96 Herve Ballans
$ make delete_series
698 94 Herve Ballans
$ make show_series
699 98 Pablo Alingery
700 1 Herve Ballans
h2. SSH-HPN install 
701 98 Pablo Alingery
702 1 Herve Ballans
Intallation de openssh 6.3p1 car le dernier patch hpn dispo est 6.3hpn13.V6 
703 99 Herve Ballans
704 99 Herve Ballans
web site for open ssh : http://ftp2.fr.openbsd.org/pub/OpenBSD/OpenSSH/portable/openssh-6.3p1.tar.gz
705 1 Herve Ballans
patch hpn : http://www.psc.edu/index.php/hpn-ssh-patches/hpn-14-kitchen-sink-patches/viewdownload/24-hpn-14-kitchen-sink-patches/102-openssh-6-3p1-hpnssh14v2-kitchen-sink-patch
706 99 Herve Ballans
707 99 Herve Ballans
<pre>
708 99 Herve Ballans
# tar -xzvf openssh-6.3p1.tar.gz
709 99 Herve Ballans
# gunzip openssh-6.3p1-hpnssh14v2.diff.gz
710 99 Herve Ballans
# cd openssh-6.3p1
711 99 Herve Ballans
# zcat ../openssh-6.3p1-hpnssh14v2.diff.gz | patch -p1
712 99 Herve Ballans
# ./configure --prefix=/usr/local/hpn-ssh --with-pam --with-md5-passwords --without-zlib-version-check --with-tcp-wrappers
713 99 Herve Ballans
# make
714 99 Herve Ballans
# make install
715 1 Herve Ballans
</pre>
716 99 Herve Ballans
717 99 Herve Ballans
Depuis sdo :
718 99 Herve Ballans
<pre>
719 99 Herve Ballans
# cd /usr/local/hpn-ssh/etc/
720 99 Herve Ballans
# rsync -av *key* netadm@sdo3:/home/netadm/
721 99 Herve Ballans
</pre>
722 99 Herve Ballans
723 99 Herve Ballans
Sur sdo3 :
724 1 Herve Ballans
<pre>
725 100 Herve Ballans
rsync -av /home/netadm/*key* /usr/local/hpn-ssh/etc/
726 100 Herve Ballans
</pre>
727 100 Herve Ballans
728 100 Herve Ballans
We have to configure the port number to 55000
729 100 Herve Ballans
<pre>
730 100 Herve Ballans
# vi ssh_config
731 100 Herve Ballans
</pre>
732 101 Herve Ballans
733 100 Herve Ballans
and add :
734 100 Herve Ballans
<pre>
735 100 Herve Ballans
#Port 22
736 100 Herve Ballans
Port 55000
737 1 Herve Ballans
</pre>
738 101 Herve Ballans
739 100 Herve Ballans
We configure also the server hpn (even we don't use it yet)
740 100 Herve Ballans
<pre>
741 100 Herve Ballans
# vi sshd_config
742 100 Herve Ballans
</pre>
743 100 Herve Ballans
744 100 Herve Ballans
and add :
745 100 Herve Ballans
<pre>
746 100 Herve Ballans
#Port 22
747 100 Herve Ballans
Port 55000
748 100 Herve Ballans
749 100 Herve Ballans
#PidFile /var/run/sshd.pid
750 100 Herve Ballans
PidFile /var/run/sshd.55000.pid
751 100 Herve Ballans
752 100 Herve Ballans
# allow the use of the none cipher
753 100 Herve Ballans
#NoneEnabled no
754 99 Herve Ballans
NoneEnabled yes
755 98 Pablo Alingery
</pre>
756 106 Pablo Alingery
757 105 Pablo Alingery
h2. Correction
758 105 Pablo Alingery
759 105 Pablo Alingery
h3. Modification du fichier ias.repclient.cfg
760 105 Pablo Alingery
761 105 Pablo Alingery
Copier le template existant repclient.template.cfg dans le répertoire [netdrms_current]/base/drms/replication/etc
762 105 Pablo Alingery
 
763 105 Pablo Alingery
<pre>
764 105 Pablo Alingery
production@sdo3:/usr/local/netdrms_current/base/drms/replication/etc$ cp repclient.template.cfg ias.repclient.cfg
765 105 Pablo Alingery
</pre>
766 1 Herve Ballans
767 106 Pablo Alingery
Nouveau / netdrms2.4 
768 105 Pablo Alingery
<pre>
769 105 Pablo Alingery
# Apps
770 106 Pablo Alingery
kRSPerl=<path to Perl binary to use when Perl scripts are executed>
771 105 Pablo Alingery
</pre>
772 107 Pablo Alingery
773 107 Pablo Alingery
h2. Subscription test 
774 107 Pablo Alingery
775 107 Pablo Alingery
h3. Librairies manquantes
776 107 Pablo Alingery
777 107 Pablo Alingery
Errors 
778 107 Pablo Alingery
<pre>
779 107 Pablo Alingery
Failure to apply SQL file 'IAStest.subscribe_series.sql' from server: ABORTING!
780 107 Pablo Alingery
Can't locate DBI.pm 
781 107 Pablo Alingery
.
782 107 Pablo Alingery
.
783 107 Pablo Alingery
.
784 107 Pablo Alingery
Failure to apply SQL file 'IAStest.subscribe_series.sql' from server: ABORTING!
785 107 Pablo Alingery
Can't locate DBD/Pg.pm
786 107 Pablo Alingery
</pre>
787 1 Herve Ballans
788 1 Herve Ballans
<pre>
789 1 Herve Ballans
root@sdo3:/usr/local/netdrms_8.10/base/drms/replication/subscribe_series# apt-get install libdbi-perl 
790 1 Herve Ballans
root@sdo3:/usr/local/netdrms_8.10/base/drms/replication/subscribe_series# apt-get install libdbd-pg-perl
791 1 Herve Ballans
</pre>
792 110 Herve Ballans
793 110 Herve Ballans
h3. Series souscrites
794 110 Herve Ballans
795 110 Herve Ballans
hmi.sharp_720s_nrt
796 110 Herve Ballans
hmi.mharp_720s_nrt
797 110 Herve Ballans
hmi.bharp_720s_nrt
798 110 Herve Ballans
799 110 Herve Ballans
<pre>
800 110 Herve Ballans
production@sdo3:~$ show_info -s hmi.sharp_720s_nrt
801 110 Herve Ballans
First Record: hmi.sharp_720s_nrt[476][2012.09.14_02:12:00_TAI], Recnum = 829707
802 110 Herve Ballans
Last Record:  hmi.sharp_720s_nrt[4943][2016.03.22_18:24:00_TAI], Recnum = 2015202
803 110 Herve Ballans
Last Recnum:  2015202
804 110 Herve Ballans
Has shadow table: no
805 107 Pablo Alingery
</pre>
806 111 Herve Ballans
807 111 Herve Ballans
h3. Lancement de jetty
808 111 Herve Ballans
809 111 Herve Ballans
<pre>
810 111 Herve Ballans
$ jetty.sh start
811 111 Herve Ballans
</pre>
812 111 Herve Ballans
813 111 Herve Ballans
814 111 Herve Ballans
815 108 Pablo Alingery
816 108 Pablo Alingery
h2. Test recuperation de meta data 
817 108 Pablo Alingery
818 108 Pablo Alingery
librairies manquantes 
819 108 Pablo Alingery
apt-get install libnet-ssh-perl
820 108 Pablo Alingery
apt-get install libstring-shellquote-perl
821 108 Pablo Alingery
822 152 Pablo Alingery
h2. TO BE DONE FURTHER
823 108 Pablo Alingery
824 107 Pablo Alingery
825 152 Pablo Alingery
%{color:red} configure sytem nbr de fichier ouvert en meme temps%
826 1 Herve Ballans
827 152 Pablo Alingery
%{color:red} configure sytem taille  buffer%
828 152 Pablo Alingery
829 155 Pablo Alingery
%{color:red} swap désactivé ? discussion Stephane et Gilles%
830 152 Pablo Alingery
831 80 Pablo Alingery
832 1 Herve Ballans
h3. Modification du fichir config.local pour la souscription au jsoc
833 1 Herve Ballans
834 1 Herve Ballans
835 1 Herve Ballans
<pre>
836 1 Herve Ballans
# NetDRMS users can request subdirectories from the Stanford proj directories 
837 1 Herve Ballans
# (e.g., JSOC/proj/util). These users will need to contact Stanford and obtain
838 1 Herve Ballans
# the source subdirectories desired. They will then place these subdirectories
839 1 Herve Ballans
# in the JSOC/proj directory of their NetDRMS release. To properly build 
840 1 Herve Ballans
# targets in these subdirectories, using the JSOC make system, the user needs
841 1 Herve Ballans
# to add entries to this configuration file - one entry for each subdirectory
842 1 Herve Ballans
# that contains source code to be compiled. Each entry is a space-separated pair
843 1 Herve Ballans
# of strings: the string "PROJDIR" followed by a subdirectory (of the proj 
844 1 Herve Ballans
# directory).  For example:
845 1 Herve Ballans
#
846 1 Herve Ballans
# PROJDIR     util/apps
847 1 Herve Ballans
# PROJDIR     util/libs
848 1 Herve Ballans
# 
849 1 Herve Ballans
# NOTE: It is not sufficient to list only a parent directory, like util. Source code
850 18 Herve Ballans
# in child directories will not automatically be compiled.
851 18 Herve Ballans
</pre>
852 18 Herve Ballans
853 18 Herve Ballans
h3. Python library for multi-threaded SUMS
854 1 Herve Ballans
855 1 Herve Ballans
Installation de la librairie python3.4m