User Tools

Site Tools


public:install_clearcase_7.1_linux_redhat

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
public:install_clearcase_7.1_linux_redhat [2010/05/31 11:16] – created kohoferpublic:install_clearcase_7.1_linux_redhat [2019/01/16 10:03] (current) – external edit 127.0.0.1
Line 1: Line 1:
-====== Install Clearcase 7.1 Linux (Redhat) ======+====== Install Clearcase Server 7.1 Linux (Redhat) ======
  
 +Installing Clearcase Server 7.1 on Red Hat Enterprise Linux AS release 4 (Nahant Update 8)
  
-Prerequisites:+===== Prerequisites =====
  
-   chmod +x /root/cc/InstallerImage_linux/jre_5.0.3.sr8a_20080811b/jre/bin/java+Apply this changes to the clearcase software packages
  
-   chmod +x /root/cc/launchpad/*.sh+  chmod +x /root/cc/InstallerImage_linux/jre_5.0.3.sr8a_20080811b/jre/bin/java 
 +  chmod +x /root/cc/InstallerImage_linux/install 
 +  chmod +x /root/cc/launchpad/*.sh
  
 +Extra software packages needed:
 +
 +  up2date -i gcc
 +
 +==== Kernel Image ====
 +
 +  cd /tmp
 +  wget http://fermi.inf.unibz.it/cdimages/kernel-devel-2.6.9-89.0.25.EL.x86_64.rpm
 +  rpm -i kernel-devel-2.6.9-89.0.25.EL.x86_64.rpm
 +  
 +==== Kernel source ====
 +  
 +  up2date redhat-rpm-config rpm-build
 +  up2date --get-source kernel
 +  rpm -ivh /var/spool/up2date/kernel*.src.rpm
 +  cd /usr/src/redhat/SPECS
 +  rpmbuild -bp --target=i686 kernel-2.6.spec
 +  cp -a /usr/src/redhat/BUILD/kernel-2.6.9/linux-2.6.9 /usr/src
 +  ln -s /usr/src/linux-2.6.9 /usr/src/linux
 +
 +
 +==== To allow mvfs to work ok! ====
 +
 +  mkdir /var/adm/rational/clearcase
 +  touch /var/adm/rational/clearcase/no_mvfs_tag
  
 ===== Installation ===== ===== Installation =====
  
 +  [root@cc cc]# ./launchpad.sh
 +  
 +   Here are the screenshots!!!!
 +  
 +{{:public:clearcase-installation_1.png|clearcase-installation_1}}
 +{{:public:clearcase-installation_2.png|clearcase-installation_2}}
 +{{:public:clearcase-installation_3.png|clearcase-installation_3}}
 +{{:public:clearcase-installation_4.png|clearcase-installation_4}}
 +{{:public:clearcase-installation_5.png|clearcase-installation_5}}
 +{{:public:clearcase-installation_6.png|clearcase-installation_6}}
 +{{:public:clearcase-installation_7.png|clearcase-installation_7}}
 +{{:public:clearcase-installation_8.png|clearcase-installation_8}}
 +{{:public:clearcase-installation_9.png|clearcase-installation_9}}
 +{{:public:clearcase-installation_10.png|clearcase-installation_10}}
 +{{:public:clearcase-installation_11.png|clearcase-installation_11}}
 +{{:public:clearcase-installation_12.png|clearcase-installation_12}}
 +{{:public:clearcase-installation_13.png|clearcase-installation_13}}
 +{{:public:clearcase-installation_14.png|clearcase-installation_14}}
 +{{:public:clearcase-installation_15.png|clearcase-installation_15}}
 +{{:public:clearcase-installation_16.png|clearcase-installation_16}}
 +{{:public:clearcase-installation_17.png|clearcase-installation_17}}
 +{{:public:clearcase-installation_18.png|clearcase-installation_18}}
 +
 + 
 +===== Post Installation =====
 +  
 +  rm /var/adm/rational/clearcase/no_mvfs_tag
 +
 +
 +===== Status/Stop/Start/Restart ClearCase =====
 +
 +  /usr/atria/etc/atria_start status|stop|start|restart
 +
 +
 +===== Update/Modify Installation =====
 +
 +To update or modify launch the Installation Manager
 +
 +
 +  /opt/IBM/InstallationManager/eclipse/launcher
 +
 +
 +===== Rebuild the MVFS without reinstalling Rational ClearCase =====
 +
 +Run the command:
 +
 +   cd /var/adm/rational/clearcase/mvfs/mvfs_src
 +
 +Clean up the results of previous builds:
 +
 +   make clean
 +
 +Build the MVFS modules:
 +
 +   make 
 +
 +You will be prompted for the path to the Linux kernel source directory. The default prompt is /lib/modules/`uname -r`/build.
 +
 +Install the newly built MVFS modules into the proper directory under /lib/modules, so that the MVFS modules will be loaded
 +into the kernel when Rational ClearCase starts:
 +
 +   make install
 +
 +Restart Rational ClearCase.
 +
 +   /opt/rational/clearcase/etc/clearcase stop
 +   /opt/rational/clearcase/etc/clearcase start
 +
 +After the installation process has completed, test that Rational ClearCase has been properly installed by running the cleartool -version command.
 +You should see output indicating the version of MVFS that has been installed, as in the following example.
 +
 +   /opt/rational/clearcase/bin/cleartool -version
 +
 +<code>
 +ClearCase version 7.1.1.1 (Wed Mar 31 15:49:36 EDT 2010) (7.1.1.01.00_2010A.D100330)
 +@(#) MVFS version 7.1.1.1 (Thu Feb 25 07:15:14 2010) built at $Date: 2010-07-05.12:00:58 (UTC) $
 +cleartool                         7.1.1.1 (Fri Feb 26 23:24:30 2010)
 +db_server                         7.1.1.1 (Thu Feb 25 08:15:16 2010)
 +VOB database schema version: 54
 +</code>
 +
 +====== Install Clearcase Client 7.1 Linux (Redhat) ======
 +
 +===== Build kernel module from source =====
 +
 +Get mvfs source from e.g. Clearcase Server
 +
 +  scp -r /var/adm/rational/clearcase/mvfs/mvfs_src/ root@clearcase-client:/var/adm/rational/clearcase/mvfs/
 +
 +Install kernel source
 +
 +  up2date --get-source kernel
 +
 +Read through how to compile kernel module:
 +
 +  more /var/adm/rational/clearcase/mvfs/mvfs_src/README.txt
 +
 +===== Eclipse Clearcase Client =====
 +
 +Using Eclipse with Clearcase Client plugin
 +
 +  * Download eclipse from http://www.eclipse.org
 +  * Add New Software: http://www3.software.ibm.com/ibmdl/pub/software/rationalsdp/clearcase/ccrc/701/update/
  
-[root@cc cc]# ./launchpad.sh 
/data/www/wiki.inf.unibz.it/data/attic/public/install_clearcase_7.1_linux_redhat.1275297364.txt.gz · Last modified: 2019/01/16 10:03 (external edit)