We have moved to www.dataGenX.net, Keep Learning with us.

Wednesday, February 05, 2014

How to find the product installed with IBM Infosphere Server - Version.xml


The Installed product details we can get from Version.xml file, this file contains all the information about Server Installation, version etc.

Version.xml file is existing in $ISHOME path. So

 a) cd $ISHOME
 b) If this will not work, try below steps to get the DSEngine dir
    

 Execute below command to get ..
 cd `ps -ef| grep dsrpc | grep -v grep | awk '{print $NF}' | sed 's/.\{26\}$//'`

ls -lrt Version.xml
sed -n '/Products/,/\/Products/p'  Version.xml


This command will give you the version/patches history, like below…

  <Products>
    <Product
productId="metadata.server" version="8.7.0.1"/>
    <Product productId="WISD" version="8.7.0.1"/>
    <Product productId="ISALite" version="8.7.0.1"/>
    <Product productId="MetadataWorkbench" version="8.7.0.1"/>
    <Product productId="IMAM" version="8.7.0.1"/>
    <Product productId="ISTools" version="8.7.0.1"/>
    <Product productId="DataStageCommon" version="8.7.0.1"/>
    <Product productId="datastage" version="8.7.0.1"/>
    <Product productId="Recovery" version="8.7.0.1"/>
  </Products>




No comments :

Post a Comment