SGE installation

  • Download file for SGE, ge62u5_lx24-x86.tar.gz and ompi_par.txt
  • Untar the archive:
    tar -zxvf ge62u5_lx24-x86.tar.gz 
    cd ge6.2u5 
    

  • Create directory /usr/local/SGE and uncompress the two archives into it:
    mkdir /usr/local/SGE
    cp ge-6.2u5-bin-lx24-x86.tar.gz /usr/local/SGE
    cp ge-6.2u5-common.tar.gz /usr/local/SGE
    cd /usr/local/SGE
    tar -zxvf ge-6.2u5-bin-lx24-x86.tar.gz 
    tar -zxvf ge-6.2u5-common.tar.gz  
    
  • Run the installation scripts for the master daemion:
    cd /usr/local/SGE
    ./install_qmaster
    
    Choose 'classic spooling' setting during the installation. The other parameters can be the default ones.

  • Add both the desktop and the node to the list of administrative hosts. Add the parrallel environment for MPI.
    qconf -ah  desktop01
    qconf -ah node01
    qconf -Ap ompi_par.txt
    

    ./install_execd 
    

  • include the following line in file /etc/profile
      . /usr/local/SGE/default/common/settings.sh
    

  • Archive the installation, copy it onto node01 daemon
    cd /usr/local
    tar -zcvf SGE.tar SGE
    scp SGE.tar root@node01:/usr/local
    

  • On the node, run installation of the execution daemon
    cd /usr/local
    tar -zxvf SGE.tar
    cd SGE
    ./install_execd
    

  • Install libmotif3 libraries:
    apt-get install libmotif3
    source /etc/profile
    

  • Complete the SGE configuration by running qmon
    qmon