Symantec Access Management

 View Only
  • 1.  Prerequisites for Policy Server Installation - Version 12.52 SP1

    Posted Oct 13, 2017 01:55 PM

    Hi All,

     

    I am in the process of installing ca siteminder policy server version 12.52 SP1 in one of our development environments, I understand we have new policy server versions available but I need to install 12.52 SP1 for few reasons. The OS version I am going to install policy server is Red Hat Enterprise Linux Server release 6.9

     

    I have below queries with regard to the prerequisites for installing the policy server

     

    1. I remember we used to install many unix / linux libraries before installing the policy server but now I just see only one library in CA documentation

     

              Install Required KornShell Package (ksh-20100621-16.el6.x86_64.rpm)

     

    Can you please suggest if the above package is sufficient to install 12.52 SP1 policy server ?

     

    2. Increase Entropy : One of the options I see in CA documentation to increase entropy is below

     

       Configure a symbolic link between /dev/urandom and /dev/random. Execute the following commands:


          mv /dev/random /dev/random.org
          ln -s /dev/urandom /dev/random

     

       Can you please suggest if I can go with this option to increase entropy.

     

    Please let me know your thoughts. Thank you.

     

     

     

     

     



  • 2.  Re: Prerequisites for Policy Server Installation - Version 12.52 SP1

    Posted Oct 13, 2017 03:05 PM

    You still need the other 32bit libs.  From 12.6 onwards, all you need is ksh since that release is 64bit.  For the entropy you are better off configuring the rngd daemon.

     

    https://docops.ca.com/ca-single-sign-on/12-52-sp1/en/installing/install-a-policy-server/install-policy-server-on-unix/prepare-for-the-policy-server-installation#PrepareforthePolicyServerInstallation-IncreaseEntropy

     

     

    yum -y install libstdc++.i686

    yum -y install compat-libstdc++-33.i686

    yum -y install compat-db.i686

    yum -y install compat-db42.i686

    yum -y install compat-db43.i686

    yum -y install compat-expat1.i686

    yum -y install compat-libtermcap.i686

    yum -y install libcom_err.i686

    yum -y install e2fsprogs-libs.i686

    yum -y install expat.i686

    yum -y install freetype.i686

    yum -y install fontconfig.i686

    yum -y install keyutils-libs.i686

    yum -y install libICE.i686

    yum -y install libidn.i686

    yum -y install libuuid.i686

    yum -y install libSM.i686

    yum -y install libXau.i686

    yum -y install libxcb.i686

    yum -y install libX11.i686

    yum -y install libXext.i686

    yum -y install libXrender.i686

    yum -y install libXft.i686

    yum -y install libXi.i686

    yum -y install libXp.i686

    yum -y install libXt.i686

    yum -y install libXtst.i686

    yum -y install ncurses-libs.i686



  • 3.  Re: Prerequisites for Policy Server Installation - Version 12.52 SP1

    Posted Mar 05, 2018 06:58 PM

    One liner :

     

    yum install libstdc++.i686 compat-libstdc++-33.i686 compat-db.i686 compat-db42.i686 compat-db43.i686 compat-expat1.i686 compat-libtermcap.i686 libcom_err.i686 e2fsprogs-libs.i686 expat.i686 freetype.i686  fontconfig.i686 keyutils-libs.i686 libICE.i686 libidn.i686 libuuid.i686 libSM.i686 libXau.i686 libxcb.i686 libX11.i686 libXext.i686 libXrender.i686 libXft.i686 libXi.i686 libXp.i686 libXt.i686 libXtst.i686 ncurses-libs.i686 



  • 4.  Re: Prerequisites for Policy Server Installation - Version 12.52 SP1

    Posted Oct 13, 2017 06:49 PM

    Thank you David for your reply, it is helpful.