Ibm connections 6 install on Linux RedHat version 2


B.Prepare Linux for Connections Install



Download 143.99 Kb.
Page2/9
Date28.01.2017
Size143.99 Kb.
#8968
1   2   3   4   5   6   7   8   9

B.Prepare Linux for Connections Install


There are a number of libraries and OS settings that need to be in place for the Connections install. This topic walks you thru those details

B.1.Install Linux Libraries

The documentation states the following libraries must be installed if you want to use gui mode of the installers.


compat-libstdc++-33.x86_64

libcanberra-gtk2.i686

PackageKit-gtk-module

gtk2.i686

compat-libstdc++-33.i686

compat-libstdc++-296

compat-libstdc++

libXtst.i686

libpam.so.0
I was not able to install all the libraries, and only installed the following:
[root@cpdocs2 ic55]# yum list compat-libstdc++-33 libcanberra-gtk2 PackageKit-gtk-module gtk2 compat-libstdc++-296 compat-libstdc++ libXtst libpam.so.0

Loaded plugins: fastestmirror, langpacks, product-id, rhnplugin, search-disabled-repos, subscription-manager

This system is receiving updates from RHN Classic or Red Hat Satellite.

Loading mirror speeds from cached hostfile

Installed Packages

compat-libstdc++-33.i686 3.2.3-72.el7

compat-libstdc++-33.x86_64 3.2.3-72.el7

gtk2.i686 2.24.28-8.el7

gtk2.x86_64 2.24.28-8.el7

libXtst.i686 1.2.2-2.1.el7

libXtst.x86_64 1.2.2-2.1.el7

libcanberra-gtk2.x86_64 0.30-5.el7


If you are missing any of the libraries I had
compat-libstdc++-33

gtk2


libXtst

libcanberra-gtk2


Run the command yum install component. For example if you are missing gtk2, either the i686 or x86_64 run

yum install gtk2


to install that library.

B.2.Install Korn shell for CCM install


The install scripts for CCM require the Korn shell. If you miss this step the install will fail with error: CLFRP0038E IBM Connections Content Manager failed to be configured on WebSphere Application Server. Error Step Step "action-config-fncs-ccm"
In the /opt/IBM/WebSphere/AppServer/profiles/Dmgr01/ConfigEngine/log/ConfigTrace.log you will see: /opt/IBM/Connections/ccm/ccm/ccm/config/includes/ccm_cust_cfg.xml:817: Execute failed: java.io.IOException: Cannot run program "./configwizard.sh" (in directory "/opt/IBM/Connections/addons/ccm/FNCS/configmanager"): java.io.IOException: error=2, No such file or directory
If this happens, uninstall CCM using Install Manager, install the Korn shell from these steps, and install CCM again with Install Manager.


  1. From the redhat install packages dir and run

    yum install ksh







B.3.Configure the Linux system





  1. As the root user, run the following command to create a symbolic link (this is needed for the IBM HTTP Server)

    ln -s /bin/ksh /usr/bin/ksh






  1. Disable SELinux by setting SELINUX=disabled in /etc/selinux/config






  1. Add multilib_policy=all to /etc/yum.conf





  1. Configure the ulimit to 65536 (we could use 8192 if this was only Connections, but DB2 needs 65536):

    cd ~
    umask 022


    vi .bashrc

    add ulimit -n 8192 and save and close the file








  1. Update the current working session as well, by running:

    ulimit -n 65536

    Then run ulimit -a to confirm the task worked


Also, ensure data and file size are unlimited


Note: My ulimit -u is set to 47273. I believe our systems in IBM are set that way because we have DB2 on the same system. I think the default is 1024, and working with a few customers this needed to be increased to 4096 on a medium deployment.

B.4.Extract Install files on the system


I ran the following commands to uncompress all files into a install dir
WebSphere and fixes

  1. unzip WASND_v8.5.5_1of3.zip -d was

  2. unzip WASND_v8.5.5_2of3.zip -d was

  3. unzip WASND_v8.5.5_3of3.zip -d was

  4. unzip WAS_V8.5.5_SUPPL_1_OF_3.zip -d wassupp

  5. unzip WAS_V8.5.5_SUPPL_2_OF_3.zip -d wassupp

  6. unzip WAS_V8.5.5_SUPPL_3_OF_3.zip -d wassupp

  7. unzip 8.5.5-WS-WAS-FP0000007-part1.zip -d was/fp7

  8. unzip 8.5.5-WS-WAS-FP0000007-part2.zip -d was/fp7

  9. unzip 8.5.5-WS-WASSupplements-FP0000007-part1.zip -d wassupp/fp7

  10. unzip 8.5.5-WS-WASSupplements-FP0000007-part2.zip -d wassupp/fp7


Connections and Cognos wizard

  1. tar -C ic55 -xvf 5.5.0.0-IC-D1-CognosWizard-LO87407-Linux.tar

  2. tar -C ic55 -xvf 5.5.0.0-IC-D1-DBWizard-LO87408_lin_aix.tar

  3. tar -C ic55 -xvf IBM_Connections_5.5_lin.tar


DB2 and fixes

  1. tar -C db2 -zxvf DB2_Svr_10.5.0.3_Linux_x86-64.tar.gz

  2. tar -C db2/fp7 -zxvf v10.5fp7_linuxx64_universal_fixpack.tar.gz


TDI and fixes

  1. tar -C tdi -xvf TDI_IDENTITY_E_V7.1.1_LIN-X86-64.tar

  2. unzip 7.1.1-TIV-TDI-FP0003.zip -d tdi/fp3


FileNet / CCM - These all need to be extracted to the same directory

  1. tar -C filenet -zxvf FN_CE_5.2.1_LINUX_ML.tar.gz

  2. tar -C filenet -zxvf FN_CEC_5.2.1_LINUX_EN.tar.gz

  3. tar -C filenet -xvf IBM_CTNT_NAVI_2.0.3_LNX_ML.tar

  4. tar -C filenet -zxvf 5.2.1.2-P8CPE-LINUX-FP002.tar.gz

  5. tar -C filenet -zxvf 5.2.1.2-P8CPE-CLIENT-LINUX-FP002.tar.gz

  6. tar -C filenet -xvf 2.0.3-ICN-FP005-LINUX.tar





Download 143.99 Kb.

Share with your friends:
1   2   3   4   5   6   7   8   9




The database is protected by copyright ©ininet.org 2024
send message

    Main page