Changes between Version 1 and Version 2 of Internal/VirtualPL/ParallelImaging/GExec
- Timestamp:
- Oct 3, 2006, 10:50:00 PM (18 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Internal/VirtualPL/ParallelImaging/GExec
v1 v2 6 6 On 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: 7 7 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 {{{ 12 12 console.sb1# openssl genrsa -out auth_priv.pem 13 13 console.sb1# chmod 600 auth_priv.pem 14 14 console.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 {{{ 18 18 console.sb1# scp auth_priv.pem node1-1:/etc/auth_priv.pem 19 19 console.sb1# scp auth_pub.pem node1-1:/etc/auth_pub.pem 20 20 }}} 21 21 5. Now install the 3 packages in the order: 22 {{{ 22 23 authd 23 24 libe 24 25 gexec 25 26 }}} 26 27 On 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). 27 28