Project

General

Profile

Start with existing CentOS installation » History » Version 48

Amber Herold, 03/15/2010 04:02 PM

1 25 Amber Herold
h1. Start with existing CentOS 5.3 64-bit installation
2 5 Amber Herold
3
{{>toc}}
4 1 Amber Herold
5 13 Amber Herold
h2. 3 Download additional software 
6 2 Amber Herold
7 13 Amber Herold
h3. 3.1 Install the additional package repositories 
8 2 Amber Herold
9
*NOTE*
10
11
There are several additional CentOS repositories that you can install.
12
These repositories provide additional packages, such as patented software (MP3 players),
13
closed source applications (Flash plugin, Adobe Acrobat Reader)
14
and lesser used packages (python numpy, Gnu Scientific Library).
15
But some repositories install packages over other packages,
16
which can cause problems and conflicts (ATrpms is bad at this). So I recommend only installing
17
EPEL and RPM Fusion. Read more here:
18
"CentOS Additional Repositories":http://wiki.centos.org/AdditionalResources/Repositories 
19
20 13 Amber Herold
h4. 3.1.1 Extra Packages for Enterprise Linux (EPEL) 
21 2 Amber Herold
22 12 Amber Herold
* http://fedoraproject.org/wiki/EPEL
23
* contains a wealth of packages required for appion
24 2 Amber Herold
25
.Download repository rpm and install
26
27
<pre>
28
$ sudo rpm -Uvh http://download.fedora.redhat.com/pub/epel/5/`uname -i`/epel-release-5-3.noarch.rpm
29
</pre>
30 1 Amber Herold
31 13 Amber Herold
h4. 3.1.2 RPM Fusion 
32 2 Amber Herold
33 12 Amber Herold
* http://rpmfusion.org/
34
* good for mp3 and other patent limited software
35 2 Amber Herold
36
.Download repository rpms and install
37
38
<pre>
39
$ sudo rpm -Uhv http://download1.rpmfusion.org/free/el/updates/testing/5/`uname -i`/rpmfusion-free-release-5-0.1.noarch.rpm
40
$ sudo rpm -Uvh http://download1.rpmfusion.org/nonfree/el/updates/testing/5/`uname -i`/rpmfusion-nonfree-release-5-0.1.noarch.rpm
41
</pre>
42
43 13 Amber Herold
h3. 3.2 Update current packages 
44 2 Amber Herold
45
.Update the updater to make life easier
46
47
<pre>
48
$ sudo yum -y update yum
49
</pre>
50
51
.Update all packages
52
53 1 Amber Herold
<pre>
54
$ sudo yum -y update
55
</pre>
56
57
*NOTE*
58 2 Amber Herold
Download was over 129 MB (in July 2009). If you have a slow internet connection you can setup presto/deltarpms, "see this email]":http://www.linux-archive.org/centos-development/222706-presto-deltarpm.html 
59 18 Amber Herold
You may want to restart your computer when this completes.
60 2 Amber Herold
61 19 Amber Herold
h4. .Install Complete list of additional packages:
62 2 Amber Herold
63 12 Amber Herold
* *python tools*: python-tools python-devel
64
* *general applications*: subversion ImageMagick grace gnuplot python-matplotlib
65
* *Tilt Picker*: wxPython numpy scipy python-imaging
66
* *FindEM*: gcc-gfortran compat-gcc-34-g77
67
* *Ace 2*: gcc-objc fftw3-devel gsl-devel
68
* *Sinedon*: mysql mysql-server MySQL-python
69
* *DBEM*: httpd php php-mysql phpMyAdmin
70
* *Xmipp MPI*: gcc-c++ openmpi-devel libtiff-devel
71
* *MRC tools*: php-devel gd-devel re2c fftw2-devel php-gd
72
* *UCSF Chimera imaging*: xorg-x11-server-Xvfb
73 2 Amber Herold
74
<pre>
75
$ sudo yum -y install \
76
python-tools python-devel python-matplotlib \
77
subversion ImageMagick grace gnuplot \
78
wxPython numpy scipy python-imaging \
79
gcc-gfortran compat-gcc-34-g77 \
80
gcc-objc fftw3-devel gsl-devel \
81
mysql mysql-server MySQL-python \
82
httpd php php-mysql phpMyAdmin  \
83
gcc-c++ openmpi-devel libtiff-devel \
84
php-devel gd-devel re2c fftw2-devel php-gd \
85
xorg-x11-server-Xvfb
86
</pre>
87
88
If you have an nVidia video card and setup RPM fusion, install the nVidia binary, will speed things up especially for UCSF Chimera
89
90
<pre>
91
$ sudo yum -y install nvidia-x11-drv
92
</pre>
93
94
.Clean up packages to save drive space
95
96
<pre>
97
$ sudo yum clean all
98
</pre>
99
100
.Re-index the hard drive, this will come in handy later
101
102 1 Amber Herold
<pre>
103 2 Amber Herold
$ sudo updatedb
104
</pre>
105
106
.Enable servers on reboot
107
108
<pre>
109
$ sudo /sbin/chkconfig httpd on
110
</pre>
111
112
<pre>
113
$ sudo /sbin/chkconfig mysqld on
114
</pre>
115
116
You can further configure this with the GUI and turn off unnecessary items
117
118
<pre>
119
$ system-config-services
120
</pre>
121
122
.Reboot the computer
123 1 Amber Herold
124 2 Amber Herold
<pre>
125
$ sudo reboot
126
</pre>
127 1 Amber Herold
128 24 Amber Herold
----
129
130 28 Amber Herold
h2. 4 MRC PHP Extension Installation and Testing
131 13 Amber Herold
132 28 Amber Herold
h3. 4.1 Build the MRC module
133 20 Amber Herold
134 1 Amber Herold
Download "php_mrc_src_1_5_1.tgz":http://emg.nysbc.org/software/dwd.php?id=N1HDb4ac22efb5b38b05fd3575d42d3e4adc2
135 27 Amber Herold
136
h4. cd to your php devel directory
137 23 Amber Herold
138 30 Amber Herold
<pre>
139 31 Amber Herold
> cd /usr/include/php/ext/
140
> mv [downloads]/php_mrc_src_1_5_1.tgz .
141 30 Amber Herold
</pre>
142 1 Amber Herold
143
h4. Untar the archive
144
145 30 Amber Herold
<pre>
146 32 Amber Herold
> tar zxvf php_mrc_src_1_5_1.tgz
147
> cd mrc/
148 30 Amber Herold
</pre>
149 1 Amber Herold
150 23 Amber Herold
h4. Make sure that GD and FFTW 3 devel libraries are installed
151
152 30 Amber Herold
<pre>
153 32 Amber Herold
> phpize
154
> ./configure 
155
> make
156
> make install
157 30 Amber Herold
</pre>
158 1 Amber Herold
159 28 Amber Herold
h3. 4.2 Install MRC module
160 23 Amber Herold
161 30 Amber Herold
h4.  Check that mrc.so is in your php extension directory
162 1 Amber Herold
163 30 Amber Herold
<pre>
164 32 Amber Herold
> ls /usr/lib/php/extensions
165 30 Amber Herold
</pre>
166 23 Amber Herold
167 30 Amber Herold
You should see mrc.so listed.
168
169 1 Amber Herold
h4. Make sure that GD and FFTW 3 libraries are installed
170
171
* edit your  php configuration file php.ini to add "mrc.so" extension.
172
* You might also increase the memory_limit field. It is set to 8M by default. The more the merrier!
173
* 4kx4k float MRC image is about 64MB
174 30 Amber Herold
<pre>
175 32 Amber Herold
> vi /etc/php.ini
176 30 Amber Herold
</pre>
177 24 Amber Herold
178 23 Amber Herold
* increase memory
179
<pre>
180 32 Amber Herold
> memory_limit = 256M; Maximum amount of memory
181 25 Amber Herold
</pre>
182 28 Amber Herold
183 29 Amber Herold
* Create the mrc.ini file
184
185 30 Amber Herold
<pre>
186 32 Amber Herold
> cd /etc/php.d
187 30 Amber Herold
vi mrc.ini
188
</pre>
189
190 32 Amber Herold
* add the following lines
191 1 Amber Herold
192
<pre>
193 23 Amber Herold
 ; Enable mrc extension module
194 1 Amber Herold
 extension=mrc.so
195
</pre>
196
197 32 Amber Herold
*NOTE:* If PHP modules are already listed in PHP.ini do the following:
198
199 23 Amber Herold
* check extension_dir value
200 1 Amber Herold
<pre>
201
 extension_dir = /usr/lib64/php/extensions
202
</pre>
203
204 32 Amber Herold
* add the following at the end of the [extension section]
205 1 Amber Herold
206 33 Amber Herold
<pre>
207 34 Amber Herold
 extension=mrc.so
208 33 Amber Herold
</pre>
209 1 Amber Herold
210 33 Amber Herold
h4. Restart your webserver
211 25 Amber Herold
212 30 Amber Herold
<pre>
213
/etc/init.d/apache2 restart
214
</pre>
215 23 Amber Herold
216
OR
217
218 30 Amber Herold
<pre>
219
/etc/init.d/httpd restart
220
</pre>
221 2 Amber Herold
222 1 Amber Herold
h3. 4.3 Test the MRC module installation
223 34 Amber Herold
224 36 Amber Herold
Download this MRC file "mymrc.mrc":http://emg.nysbc.org/attachments/55/mymrc.mrc and the following 2 scripts into the same directory to test the PHP mrc extension. 
225 35 Amber Herold
* gd module testing script "ex1.php":http://emg.nysbc.org/attachments/53/ex1.php
226
* fftw module testing script "ex2.php":http://emg.nysbc.org/attachments/54/ex2.php
227 34 Amber Herold
228 1 Amber Herold
Run the scripts with the following commands:
229 36 Amber Herold
The expected results are shown below. If you get the same images, you've installed the extension properly.
230 1 Amber Herold
231
<pre>
232
> php -q ex1.php | display
233
</pre>
234
235 36 Amber Herold
* gd module test result:
236
!http://emg.nysbc.org/attachments/57/ex1.php.png!
237
238 35 Amber Herold
<pre>
239
> php -q ex2.php | display
240
</pre>
241
242 34 Amber Herold
* fftw module test result:
243 17 Amber Herold
!http://emg.nysbc.org/attachments/58/ex2.php.png!
244 2 Amber Herold
245 13 Amber Herold
----
246 48 Amber Herold
247 47 Amber Herold
h2. 5 Setup MySQL (appiondata) databases 
248 1 Amber Herold
249 47 Amber Herold
[[Setup MySQL database]]
250 1 Amber Herold
251 47 Amber Herold
252
----
253
254
h2. 6 Compile and setup Appion python programs 
255
256 41 Amber Herold
Download Myami.  
257 1 Amber Herold
*TODO: Place link to file here!*
258 41 Amber Herold
Install leginon http://emg.nysbc.org/documentation/leginon/bk02ch04s06.php
259 37 Amber Herold
260 42 Amber Herold
h3. Perform system check:
261
262
In addition to the downloads from our svn depository, there are several other requirements that you will get either from your OS installation source, or from its respective website. The system check in the Leginon package checks your system to see if you already have these requirements
263
264
cd your_download_area/Leginon-1.6-ALL/Leginon
265
python syscheck.py
266
267
If python is not installed, this, of course will not run. If you see any lines like "*** Failed...", then you have something missing. Otherwise, everything should result in "OK".
268
269
h3. Install the package in each folder with commands like these
270
271
*TODO: move these into a single installer, ask Jim*
272
273
cd /your_download_area/myami/leginon
274
python setup.py install
275
276
cd ../pyami
277
python setup.py install
278
cd ../pyScope
279
python setup.py install
280
cd ../sinedon
281
python setup.py install
282
cd ../numextension
283
python setup.py install
284
cd ../libcv
285
python setup.py install
286
cd ../imageviewer
287
python setup.py install
288
289 44 Amber Herold
h3. python-site-package-path: where the installed python packages went:
290 43 Amber Herold
291
Python installer put the packages you installed to its site-packages directory. This enable all users on the same computer to access them. The easiest way to find where your installed package is called by python is to load a module from the package using interactive python command lines like this:
292
293
    * Start python command line from shell
294
295
      > python
296
297
    * Import a module from the package. Let's try sinedon here. All packages installed through the above setup.py script should go to the same place.
298
299
      python> import sinedon
300
301
    * If the module is loaded successfully, call the module attribute __path__ (two underscrolls before "path" and two underscrolls after) will return the location of the module it is loaded from
302
303
      python> sinedon.__path__
304
305
      RETURNS, For example,
306
      python> <module 'sinedon' from '/usr/lib/python2.5/site-packages/sinedon/__init__.pyc'> 
307
308
      In this case, /usr/lib/python2.5/site-packages/ is your python-site-package-path. If you go to that directory, you will find all the packages you just installed.
309
310
h3. Configure leginon.cfg:
311
312
A skeleton (default) configuration file is available:
313
[python-site-package-path]/Leginon/config/default.cfg
314
315
* Copy default.cfg to leginon.cfg.
316
  cp [python-site-package-path]/Leginon/config/default.cfg [python-site-package-path]/Leginon/config/leginon.cfg
317
318
* Add a directory for images. The rest is optional.
319
320
  Example of the configuration that you should set: (Here we assume your leginon database is named "dbemdata", and Leginon log into the database as a user named "usr_object" with no password set).
321
322
  [Images]
323 1 Amber Herold
  path: your_storage_disk_path/leginon
324 43 Amber Herold
325 44 Amber Herold
h3. Names used in the example installation
326 1 Amber Herold
327 44 Amber Herold
From this point on, you will need to enter database user names for different configuration files and settings. These are NOT Leginon user names but what is required by MySQL database interaction. Consistent names are essential. In the example shown here, the leginon database is called "dbemdata", the project database is called "projectdata". The MySQL user name are the same, "usr_object", and in this case without a password.
328
329
h3. Configure sinedon.cfg:
330
331
*TODO: Consider moving this after we setup Mysql username.*
332
333
Sinedon is designed to be able to interact with multiple databases. It can be configured at global or user level.
334
335
    * An example configuration file is available at:
336
      /your_download_area/Leginon-1.6-ALL/sinedon/examples/sinedon.cfg
337
338
    * Configurations for all users should be placed at the following path:
339
      [python-site-package-path]/sinedon/sinedon.cfg
340
341
    * Modify host,db,user,passwd to what is used. Note that the user here is the MySQL user Leginon uses to communicate with the database for all Leginon users. For Leginon that uses Project database, set the following:
342
343
      [global]
344
      host: your_database_host
345
      user: usr_object
346
      passwd:
347
348
      [projectdata]
349
      db: projectdata
350
351
      [leginondata]
352
      db: dbemdata
353
354
    * Add database configuration if you intend to use grid-inserting robot. The Robot2 module uses the database to communicate to the robot. Applications that carries the name "Robot" requires this to be set. In general, using the same database as the general leginon database is fine.
355
356
      [robot2]
357
      db: dbemdata
358 43 Amber Herold
359 2 Amber Herold
h3. 5.1 Compile FindEM 
360 1 Amber Herold
361 37 Amber Herold
* Goto appion/findem folder to make findem.exe
362 2 Amber Herold
363
* Compile the libraries and binary
364
365 12 Amber Herold
<pre>
366 2 Amber Herold
$ make
367
</pre>
368
369
* Test findem.exe to see if it runs
370
371
<pre>
372
$ make test
373
</pre>
374
375 11 Amber Herold
*WARNING*
376 2 Amber Herold
Only if the first part fails, you must add the path to libg2c.so library file.
377
Otherwise skip to next section.
378
379
* locate libg2c.so library file
380
381 1 Amber Herold
<pre>
382 2 Amber Herold
$ ls /usr/lib/gcc/`uname -i`-redhat-linux/3.4.6/libg2c.so
383
</pre>
384
385 1 Amber Herold
<pre>
386 2 Amber Herold
$ locate libg2c.so
387
</pre>
388
389
* Edit Makefile with location of libg2c.so
390 1 Amber Herold
391 11 Amber Herold
<pre>
392
$ nano Makefile
393 2 Amber Herold
</pre>
394 13 Amber Herold
395 2 Amber Herold
* Example: EXLIBS=-L/usr/lib/gcc/i386-redhat-linux/3.4.6/ -lg2c
396
* Re-compile
397
398 1 Amber Herold
h3. 5.2 Compile Ace2 
399
400 38 Amber Herold
The 64 bit Ace2 binary is already available in the myami/bin directory. 
401
Test it by changing directories to myami/bin and type the following commands:
402
<pre>
403
$ ./ace2.exe -h
404
$ ./ace2correct.exe -h
405
</pre>
406
Notice the help display.
407 1 Amber Herold
408 38 Amber Herold
<pre>
409
If this does not work or you wish to compile it yourself follow the instructions here.
410
NOTE:
411 39 Amber Herold
ace2 typically requires fftw 3.2 or greater. This is significantly faster than 3.1 (which is distributed with CentOS). 
412
There is a FFTW_WISDOM_ONLY flag in Image.m that can be commented in if you are using fftw 3.2 or greater.
413 38 Amber Herold
*TODO: Can we have the make file detect which version is installed?*
414 2 Amber Herold
415
* Goto myami/appion/ace2
416
* compile the libraries and binary
417 1 Amber Herold
* test to see if program runs
418 2 Amber Herold
419 13 Amber Herold
$ make
420 2 Amber Herold
$ ./ace2.exe -h
421 1 Amber Herold
$ ./ace2correct.exe -h
422 11 Amber Herold
$ mv -v ./ace2*.exe ../bin
423
</pre>
424 1 Amber Herold
425 37 Amber Herold
h3. 5.3 Compile Radermacher module 
426 1 Amber Herold
427 2 Amber Herold
* Goto appion/radermacher
428
429 11 Amber Herold
* compile the libraries and binary
430 2 Amber Herold
431
<pre>
432
$ python ./setup.py build
433
</pre>
434
435 1 Amber Herold
* install module globally
436 2 Amber Herold
437
<pre>
438
$ sudo python ./setup.py install
439
</pre>
440
441
* test installed module
442 13 Amber Herold
443 2 Amber Herold
<pre>
444 1 Amber Herold
$ python
445
</pre>
446
447 2 Amber Herold
<pre>
448 1 Amber Herold
>>> import radermacher
449 2 Amber Herold
>>> <Ctrl-D>
450 37 Amber Herold
</pre>
451 2 Amber Herold
452 37 Amber Herold
h3. 5.4 Test Appion 
453
454
* Go into the appion directory
455 1 Amber Herold
* Add myami to PYTHONPATH if myami is built locally (in home directory)
456 2 Amber Herold
*TODO: what does this mean?*
457 37 Amber Herold
458 2 Amber Herold
<pre>
459
$ export PYTHONPATH="/your-complete-path-to-myami:$PYTHONPATH"
460 37 Amber Herold
</pre>
461 2 Amber Herold
462 1 Amber Herold
* Add appion to PYTHONPATH
463 37 Amber Herold
464 2 Amber Herold
<pre>
465 37 Amber Herold
$ export PYTHONPATH="/your-complete-path-to-myami/appion:$PYTHONPATH"
466
</pre>
467 2 Amber Herold
468
*TODO: Consider moving appionlib so you only need to set one path.*
469
470
* Run the test script
471
472
<pre>
473
$ ./check.sh
474
</pre>
475
476
*NOTE*
477 45 Amber Herold
You can ignore EMAN, MATLAB, and UCSF Chimera errors at this point
478
479 2 Amber Herold
----
480
481 1 Amber Herold
482 2 Amber Herold
h2. 7 Install webpages (appionweb)
483 13 Amber Herold
484
Refer to [[Start_with_existing_ANY_Linux_flavor_OS#3-Web-server-side-installation|Web server side installation]]
485 2 Amber Herold
486
h3. Install MRC Tools 
487
488
h4. Compile MRC tools 
489 1 Amber Herold
490 2 Amber Herold
* Go to your php devel directory and untar the archive
491
* If unsure where it is, use info.php to find it under *extension_dir*
492 1 Amber Herold
493 13 Amber Herold
<pre>
494 2 Amber Herold
$ cd /usr/include/php/ext/
495
$ sudo mkdir mrc
496
$ sudo chmod 777 mrc
497
$ sudo chown $USER mrc
498
</pre>
499
500 13 Amber Herold
* Unpackage MRC Tools from http://emg.nysbc.org/software/mrctools/
501 2 Amber Herold
502
<pre>
503
$ tar zxvf ~/php_mrc.tgz
504
$ cd mrc/
505
</pre>
506
507 1 Amber Herold
* Compile and install the MRC module
508 2 Amber Herold
509
<pre>
510
$ phpize
511 13 Amber Herold
$ ./configure 
512 1 Amber Herold
$ make
513 2 Amber Herold
$ sudo make install
514
</pre>
515 1 Amber Herold
516 2 Amber Herold
h4. Configure PHP for MRC Tools 
517 13 Amber Herold
518 2 Amber Herold
* Edit your php configuration file php.ini to add "mrc.so" extension.
519
520 1 Amber Herold
<pre>
521 2 Amber Herold
$ sudo nano /etc/php.d/mrc.ini
522
</pre>
523
524 13 Amber Herold
* add mrc.so to extensions
525 2 Amber Herold
526
<pre>
527
; Enable mrc extension module
528
extension=mrc.so
529 13 Amber Herold
</pre>
530 2 Amber Herold
531
* To test MRC tools, go to this website:
532
http://emg.nysbc.org/software/mrctools/mrc_so.php
533
534
h3. Configure PHP 
535 13 Amber Herold
536 2 Amber Herold
* increase the memory limit, EM images are big 64MB:
537
538
<pre>
539
memory_limit = 256M; Maximum amount of memory
540
</pre>
541 1 Amber Herold
542
* Turn error display on:
543
544 2 Amber Herold
<pre>
545 13 Amber Herold
display_errors = On
546 2 Amber Herold
</pre>
547
548
<pre>
549
error_reporting = E_ALL & ~E_NOTICE
550
</pre>
551
552
* restart the webserver
553 15 Amber Herold
554 2 Amber Herold
<pre>
555
$ sudo /sbin/service httpd restart
556
</pre>
557
558
h3. Install DBEM and project php source 
559 13 Amber Herold
560 2 Amber Herold
Please consult the other [[Start_with_existing_ANY_Linux_flavor_OS#3-Web-server-side-installation|Install guide]]
561
562
h3. Configuration 
563
564
h4. configure apache 
565 13 Amber Herold
566 2 Amber Herold
* allow REMOTE_HOST lookups in apache
567
568
<pre>
569
$ sudo nano /etc/httpd/conf/httpd.conf
570
</pre>
571 13 Amber Herold
572 2 Amber Herold
* turn _HostnameLookups_ to On
573
574
<pre>
575
HostnameLookups On
576
</pre>
577
578 1 Amber Herold
* restart the webserver
579 15 Amber Herold
580 2 Amber Herold
<pre>
581
$ sudo /sbin/service httpd restart
582
</pre>
583 16 Amber Herold
584 2 Amber Herold
h4. configure project_1_2, dbem_1_5_1, and dbem_1_5_1/processing 
585
586
Please consult the other [[Start_with_existing_ANY_Linux_flavor_OS#3-Web-server-side-installation|Install guide]]
587
588
h3. Initialize database tables from the web tools 
589
590
Please consult [[Start_with_existing_ANY_Linux_flavor_OS#4-Create-a-test-project-and-processing-database|Create a test project and processing database]]
591
592
h3. Potential problems 
593
594
h4. Firewall settings 
595
596
You may need to configure your firewall to allow incoming HTTP (port 80) and MySQL (port 3306) traffic:
597
598
<pre>
599
$ system-config-securitylevel
600
</pre>
601
602
h4. Security-enhanced linux 
603
604
"Security-enhanced linux (SELinux)":http://en.wikipedia.org/wiki/Security-Enhanced_Linux  may be preventing your files from loading. To fix this run the following command:
605
606
<pre>
607 13 Amber Herold
$ sudo /usr/bin/chcon -R -t httpd_sys_content_t /var/www/html/
608
</pre>
609 2 Amber Herold
610
see "this website":http://docs.fedoraproject.org/selinux-apache-fc3/sn-simple-setup.html  for more details on SELinux
611
612
----
613 13 Amber Herold
614
h2. 8 Install external packages 
615
616 2 Amber Herold
*Please follow individual package installation instruction provided with them*
617
618
h3. Compile Xmipp for OpenMPI 
619
620
* For more info, see http://xmipp.cnb.csic.es/twiki/bin/view/Xmipp/InstallingTheSoftware
621
* Go into Xmipp source directory
622
* Find openmpi directory
623
624
<pre>
625 13 Amber Herold
$ locate libmpi.so
626 2 Amber Herold
</pre>
627
628
<pre>
629
/usr/lib/openmpi/1.2.7-gcc/lib/libmpi.so
630
</pre>
631
632
* Setup Xmipp to use openmpi by changing three lines in SConstruct
633
634
<pre>
635
$ cp SConstruct SConstruct.orig
636
</pre>
637
638
<pre>
639
$ nano SConstruct
640
</pre>
641 13 Amber Herold
642 2 Amber Herold
<pre>
643
opts.Add('MPI_INCLUDE', 'MPI headers dir ', '/usr/lib/openmpi/1.2.7-gcc/include/')
644
opts.Add('MPI_LIBDIR', 'MPI libraries dir ', '/usr/lib/openmpi/1.2.7-gcc/lib/')
645
opts.Add('MPI_LIB', 'MPI library', 'mpi')
646
</pre>
647
648
* Compile
649
650
<pre>
651
$ sudo mpi-selector --yes --system --set `rpm --qf '%{NAME}-%{VERSION}-gcc-%{ARCH}\n' -q openmpi`
652
</pre>
653
654
<pre>
655
$ export PATH=$PATH:/usr/lib/openmpi/1.2.7-gcc/bin
656
</pre>
657
658
<pre>
659
$ ./scons.configure
660
</pre>
661
662
you should see the line:
663
664
<pre>
665 13 Amber Herold
* Checking for MPI ... yes
666 2 Amber Herold
</pre>
667
668
<pre>
669 13 Amber Herold
$ ./scons.compile
670 2 Amber Herold
</pre>
671
672
h2. 9 Install a PBS job submission system
673
674
You'll need to install a "Portable Batch System":http://en.wikipedia.org/wiki/Portable_Batch_System for job submission, such as "TORQUE":http://en.wikipedia.org/wiki/TORQUE_Resource_Manager . I know Torque comes with Fedora 10, but not CentOS.
675
676
* An RPM is available in the EPEL testing section
677
678
<pre>
679
$ sudo yum -y --enablerepo=epel-testing install torque
680
</pre>
681
682
or another way to get packages
683
684 1 Amber Herold
<pre>
685
$ wget http://centos.karan.org/el5/extras/testing/`uname -i`/RPMS/torque-2.1.9-1.el5.kb.`uname -i`.rpm
686
$ sudo yum -y localinstall --nogpgcheck torque-2.1.9-1.el5.kb.`uname -i`.rpm
687
$ #sudo rpm -Uhv torque-2.1.9-1.el5.kb.`uname -i`.rpm
688
</pre>
689
690
After installing torque it needs to be configured. Sorry, we have no documentation for configuring torque at this time. You may try http://www.clusterresources.com/products/torque-resource-manager.php