Changes between Version 1 and Version 2 of Internal/VirtualPL/ParallelImaging/GExec


Ignore:
Timestamp:
Oct 3, 2006, 10:50:00 PM (18 years ago)
Author:
anonymous
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Internal/VirtualPL/ParallelImaging/GExec

    v1 v2  
    66On the nodes and console first openssl needs to be installed as GEXEC uses authd as the encryption software which in turn uses private and public keys generated by Openssl. So the steps involved in installing GEXEC are as follows:
    77
    8 1. Install openssl using apt-get install openssl.
    9 2. Download the gexec packages and its dependencies: authd and libe.
    10 3. Generate the public and private keys as follows:
    11 
     8 1. Install openssl using apt-get install openssl.
     9 2. Download the gexec packages and its dependencies: authd and libe.
     10 3. Generate the public and private keys as follows:
     11{{{
    1212console.sb1# openssl genrsa -out auth_priv.pem
    1313console.sb1# chmod 600 auth_priv.pem
    1414console.sb1# openssl rsa -in auth_priv.pem -pubout -out auth_pub.pem
    15 
    16 4. Distribute the keys to all the nodes.
    17 
     15}}}
     16 4. Distribute the keys to all the nodes.
     17{{{
    1818console.sb1# scp auth_priv.pem node1-1:/etc/auth_priv.pem
    1919console.sb1# scp auth_pub.pem node1-1:/etc/auth_pub.pem
    20 
     20}}}
    21215. Now install the 3 packages in the order:
     22{{{
    2223authd
    2324libe
    2425gexec
    25 
     26}}}
    2627On newer Linux kernels (e.g., the 2.4.x ), you'll need to set the LD_ASSUME_KERNEL environment variable to "2.4.2" to avoid LinuxThreads bugs (e.g., incomplete implementation of POSIX cancellation points).
    2728