Open Source Development

Power Open Source Development

Explore the open source tools and capabilities for building and deploying modern applications on IBM Power platforms including AIX, IBM i, and Linux.


#Power


#Power

 View Only
Expand all | Collapse all

YUM Installation of AIX6.1

Archive User

Archive UserTue September 19, 2017 10:40 AM

Archive User

Archive UserTue September 19, 2017 11:03 AM

Archive User

Archive UserTue September 19, 2017 11:29 AM

Archive User

Archive UserTue September 19, 2017 11:32 AM

Archive User

Archive UserMon October 07, 2019 09:27 AM

  • 1.  YUM Installation of AIX6.1

    Posted Mon September 18, 2017 12:05 PM

    Originally posted by: Satish447


    Hi,

    I am trying to install yum package manager in AIX 6.1. I have followed the steps as below:

     

    1. Installed rpm.rte

    Installation Summary
    --------------------
    Name                        Level           Part        Event       Result
    -------------------------------------------------------------------------------
    rpm.rte                     4.9.1.3         USR         APPLY       SUCCESS
    rpm.rte                     4.9.1.3         ROOT        APPLY       SUCCESS

     

    2. Untar RPM files from YUM BUNDLE yum_bundle_v1.tar and tried to install the packages, but i get the following error.

    # rpm -ivh *.rpm
    error: Failed dependencies:
            libcrypto.a(libcrypto.so) is needed by curl-7.44.0-1.ppc
            libssl.a(libssl.so) is needed by curl-7.44.0-1.ppc
            libcrypto.a(libcrypto.so) is needed by python-2.7.10-1.ppc
            libssl.a(libssl.so) is needed by python-2.7.10-1.ppc
            libcrypto.a(libcrypto.so) is needed by python-pycurl-7.19.3-1.ppc
    root@zap:/tmp/yum/rpm

     

    But i see libcrypto.a, libssl.a are present in /opt/freeware/lib. But still that problem is present.

    # ls -al /opt/freeware/lib/libssl.a
    -rw-r--r--    1 root     system      6065306 May 29 06:11 /opt/freeware/lib/libssl.a
    root@zap:/tmp/yum/rpm
    # ls -al /opt/freeware/lib/libcrypto.a
    -rw-r--r--    1 root     system      5044508 Sep 18 10:25 /opt/freeware/lib/libcrypto.a
     

    If I check the LIBPATH, it shows as:

    # echo $LIBPATH
    /usr/lib:/opt/freeware/lib:

     

     

    # /usr/sbin/updtvpkg
    Please wait...error: incorrect format: unknown tag
    error: incorrect format: unknown tag
    error: incorrect format: unknown tag
    error: incorrect format: unknown tag

     

     

    Please help me to fix this problem.

     

     


    #AIX-Open-Source-Software
    #AIXOpenSource


  • 2.  Re: YUM Installation of AIX6.1

    Posted Mon September 18, 2017 12:44 PM

    Originally posted by: sangameshm


    Problem here mostly is because of /opt/freeware/lib/libssl.a from openssl rpm package.

    We build all our rpm packages with AIX provided openssl fileset instead of openssl rpm package as we don't have openssl rpm package in our AIX Toolbox.

    Is it possible to remove openssl rpm package ?

     

    Thanks,

    Sangamesh


    #AIXOpenSource
    #AIX-Open-Source-Software


  • 3.  Re: YUM Installation of AIX6.1

    Posted Tue September 19, 2017 10:40 AM

    Originally posted by: Satish447


    Hi Sangameshm,

     

    As per your suggestion I have erased openssl rpm package. After this the libssl.a and libcrypto.a got deleted from /opt/freeware/lib. Now they are present only in /usr/lib.

    I have exported the LIBPATH and still same result while installation.

     

    # export LIBPATH=/usr/lib:/opt/freeware/lib
    root@zap:/tmp/yum/rpm


    # rpm -ivh *.rpm
    error: Failed dependencies:
            libcrypto.a(libcrypto.so) is needed by curl-7.44.0-1.ppc
            libssl.a(libssl.so) is needed by curl-7.44.0-1.ppc
            libcrypto.a(libcrypto.so) is needed by python-2.7.10-1.ppc
            libssl.a(libssl.so) is needed by python-2.7.10-1.ppc
            libcrypto.a(libcrypto.so) is needed by python-pycurl-7.19.3-1.ppc
    root@zap:/tmp/yum/rpm

     

     


    #AIXOpenSource
    #AIX-Open-Source-Software


  • 4.  Re: YUM Installation of AIX6.1

    Posted Tue September 19, 2017 11:03 AM

    Originally posted by: sangameshm


    Hi Satish,

     

    Did you run updtvpkg command after removing openssl rpm package ?

    You can check if you are getting output something like this.

     

    # rpm -q AIX-rpm --provides | grep libcrypto
    libcrypto.a(libcrypto.so)
    libcrypto.a(libcrypto.so.0.9.8)
    libcrypto.a(libcrypto.so.1.0.0)

    .....

     

    # rpm -q AIX-rpm --provides | grep libssl   
    libssl.a(libssl.so)
    libssl.a(libssl.so.0.9.8)
    libssl.a(libssl.so.1.0.0)


    ...

     

    Thanks,

    Sangamesh

     

     


    #AIX-Open-Source-Software
    #AIXOpenSource


  • 5.  Re: YUM Installation of AIX6.1

    Posted Tue September 19, 2017 11:29 AM

    Originally posted by: Satish447


    Hi Sangamesh,

     

    There is one more issue with my update vpkg


    # updtvpkg
    Please wait...error: incorrect format: unknown tag
    error: incorrect format: unknown tag

     

    # rpm -q AIX-rpm --provides | grep libcrypto
    root@zap:/root


    # rpm -q AIX-rpm --provides | grep libssl
    libssl3.a (libssl3.so)
    libssl3.so


    #AIX-Open-Source-Software
    #AIXOpenSource


  • 6.  Re: YUM Installation of AIX6.1

    Posted Tue September 19, 2017 11:32 AM

    Originally posted by: Satish447


    Hi Sangamesh,


    # updtvpkg
    Please wait...error: incorrect format: unknown tag
    error: incorrect format: unknown tag

     

    # rpm -q AIX-rpm --provides | grep libcrypto
    root@zap:/root

     

    # rpm -q AIX-rpm --provides | grep libssl
    libssl3.a(libssl3.so)
    libssl3.so


    #AIX-Open-Source-Software
    #AIXOpenSource


  • 7.  Re: YUM Installation of AIX6.1

    Posted Wed September 20, 2017 04:24 AM

    Originally posted by: sangameshm


    Hi Satish,

     

    Something still could be wrong with your openssl. Not sure if openssl rpm removed the /usr/lib/libssl.a & /usr/lib/libcrypto.a.

    Can you try and run  below command and see if you get  the similar output ?

    # lslpp -L | grep openssl
    error: incorrect format: unknown tag
    error: incorrect format: unknown tag
    error: incorrect format: unknown tag
    error: incorrect format: unknown tag
    error: incorrect format: unknown tag
    error: incorrect format: unknown tag
    error: incorrect format: unknown tag
    error: incorrect format: unknown tag
    error: incorrect format: unknown tag
    error: incorrect format: unknown tag
    error: incorrect format: unknown tag
    error: incorrect format: unknown tag
    error: incorrect format: unknown tag
    error: incorrect format: unknown tag
    error: incorrect format: unknown tag
    error: incorrect format: unknown tag
    error: incorrect format: unknown tag
    error: incorrect format: unknown tag
    error: incorrect format: unknown tag
    error: incorrect format: unknown tag
    error: incorrect format: unknown tag
      openssl.base             1.0.1.514    C     F    Open Secure Socket Layer
      openssl.license          1.0.1.514    C     F    Open Secure Socket License
      openssl.man.en_US        1.0.1.514    C     F    Open Secure Socket Layer

     

    # ar -X32_64 -tv /usr/lib/libssl.a
    rwxr-xr-x 537912/767508 647456 May 27 06:44 2015 libssl.so
    rwxr-xr-x 537912/767508 510694 May 27 06:44 2015 libssl.so.0.9.8
    rwxr-xr-x 537912/767508 647456 May 27 06:44 2015 libssl.so.1.0.0
    r-xr-xr-x 537912/767508 733351 May 27 06:45 2015 libssl64.so
    rwxr-xr-x 537912/767508 577856 May 27 06:44 2015 libssl64.so.0.9.8
    rwxr-xr-x 537912/767508 733351 May 27 06:44 2015 libssl64.so.1.0.0


    # ar -X32_64 -tv /usr/lib/libcrypto.a
    rwxr-xr-x 537912/767508 2966316 May 27 06:38 2015 libcrypto.so
    rwxr-xr-x 537912/767508 2256399 May 27 06:38 2015 libcrypto.so.0.9.8
    rwxr-xr-x 537912/767508 2966316 May 27 06:38 2015 libcrypto.so.1.0.0
    r-xr-xr-x 537912/767508 3375225 May 27 06:38 2015 libcrypto64.so
    rwxr-xr-x 537912/767508 2606809 May 27 06:38 2015 libcrypto64.so.0.9.8
    rwxr-xr-x 537912/767508 3375225 May 27 06:38 2015 libcrypto64.so.1.0.0

     

    The error "error: incorrect format: unknown tag" is know error message and this shouldn't cause any issue with rpm database or YUM.

    Look at the Know issues section https://public.dhe.ibm.com/aix/freeSoftware/aixtoolbox/ezinstall/ppc/README-yum

     

    Thanks,

    Sangamesh


    #AIX-Open-Source-Software
    #AIXOpenSource


  • 8.  Re: YUM Installation of AIX6.1

    Posted Wed September 20, 2017 11:46 AM

    Originally posted by: Satish447


    Hi Sangamesh,

     

    Here are the results of those commands. Both libssl.a and libcrypto.a doesn't exist in /usr/lib folder

     

    # lslpp -L | grep openssl

    error: incorrect format: unknown tag
    error: incorrect format: unknown tag

    root@zap:/tmp/yum/rpm
    # ar -X32_64 -tv /usr/lib/libssl.a
    ar: 0707-100 /usr/lib/libssl.a does not exist.
    root@zap:/tmp/yum/rpm
    # ar -X32_64 -tv /usr/lib/libcrypto.a
    ar: 0707-100 /usr/lib/libcrypto.a does not exist.
    root@zap:/tmp/yum/rpm

     

    To avoid confusion I have deleted openssl fileset from my system using installp -ug openssl.

    But to install the openssl fileset can you help me how to do this?


    #AIXOpenSource
    #AIX-Open-Source-Software


  • 9.  Re: YUM Installation of AIX6.1

    Posted Wed September 20, 2017 01:34 PM

    Originally posted by: sangameshm


    You can download and install latest version of openssl from here https://www-01.ibm.com/marketing/iwm/iwm/web/reg/download.do?source=aixbp&lang=en_US&S_PKG=openssl&cp=UTF-8&dlmethod=http

    Run "updtvpkg" command after successful install of openssl and then try the rpm installs.

     

    Thanks,

    Sangamesh


    #AIXOpenSource
    #AIX-Open-Source-Software


  • 10.  Re: YUM Installation of AIX6.1

    Posted Wed September 20, 2017 01:56 PM

    Originally posted by: Satish447


    Thanks Sangamesh,

     

    I generally use to install RPM files. I never did installation of filesets. Can you please give me the steps to install the openssl on AIX? 

    I downloaded the openssl-1.0.2.1100.tar.Z from the link you provided.

     

    If i give the following command it doesn't work.

    # installp openssl-1.0.2.1100.tar.Z

    installp:  No action was indicated.
            The -a (apply) flag is being assumed.
    0503-436 installp:  Device /dev/rfd0 could not be accessed.
            Specify a valid device name.
    root@zap:/tmp/yum


    #AIXOpenSource
    #AIX-Open-Source-Software


  • 11.  Re: YUM Installation of AIX6.1

    Posted Wed September 20, 2017 10:56 PM

    Originally posted by: sangameshm


    Run these commands.

     

    uncompress openssl-1.0.2.1100.tar.Z

    tar -xf openssl-1.0.2.1100.tar

    installp -qacXYd openssl.base openssl.license openssl.man.en_US all

     


    #AIX-Open-Source-Software
    #AIXOpenSource


  • 12.  Re: YUM Installation of AIX6.1

    Posted Thu September 21, 2017 11:32 AM

    Originally posted by: Satish447


    I get errors that license file doesn't exist. But it is present.

     

    # installp -qacXYd openssl.base openssl.license openssl.man.en_US all
    +-----------------------------------------------------------------------------+
                        Pre-installation Verification...
    +-----------------------------------------------------------------------------+
    Verifying selections...done
    Verifying requisites...done
    Results...

    FAILURES
    --------
      Filesets listed in this section failed pre-installation verification
      and will not be installed.

      Missing Filesets
      ----------------
      The following filesets could not be found on the installation media.
      If you feel these filesets really are on the media, check for typographical
      errors in the name specified or, if installing from directory, check for
      discrepancies between the Table of Contents file (.toc) and the images that
      reside in the directory.

        openssl.license

      << End of Failure Section >>

    SUCCESSES
    ---------
      Filesets listed in this section passed pre-installation verification
      and will be installed.

      Selected Filesets
      -----------------
      openssl.base 1.0.2.1100                     # Open Secure Socket Layer

      << End of Success Section >>

    +-----------------------------------------------------------------------------+
                       BUILDDATE Verification ...
    +-----------------------------------------------------------------------------+
    Verifying build dates...done
    FILESET STATISTICS
    ------------------
        2  Selected to be installed, of which:
            1  Passed pre-installation verification
            1  FAILED pre-installation verification
      ----
        1  Total to be installed

      LICENSE AGREEMENT FAILURES
      ------------------
      The installation cannot proceed because the following filesets
      require software license agreement files which could not be found
      on the system or installation media:

            openssl.base
    root@zap:/tmp/yum/openssl-1.0.2.1100


    #AIX-Open-Source-Software
    #AIXOpenSource


  • 13.  Re: YUM Installation of AIX6.1

    Posted Mon September 25, 2017 05:22 AM

    Originally posted by: sangameshm


    Try this command

    installp -acXYgd . *

     

    Thanks,

    Sangamesh


    #AIXOpenSource
    #AIX-Open-Source-Software


  • 14.  Re: YUM Installation of AIX6.1

    Posted Mon September 25, 2017 10:34 AM

    Originally posted by: Satish447


    Thanks Sangamesh. I am able to install with this command. 

     

    Installation Summary
    --------------------
    Name                        Level           Part        Event       Result
    -------------------------------------------------------------------------------
    openssl.man.en_US           1.0.2.1100      USR         APPLY       SUCCESS
    openssl.license             1.0.2.1100      USR         APPLY       SUCCESS
    openssl.base                1.0.2.1100      USR         APPLY       SUCCESS
    openssl.base                1.0.2.1100      ROOT        APPLY       SUCCESS
    root@zap:/tmp/yum/openssl-1.0.2.1100

     

    But after this if I try to install the RPMS required for YUM installation, i get the following error:

    root@zap:/tmp/yum/rpm
    # export LIBPATH=/usr/lib:/opt/freeware/lib
    root@zap:/tmp/yum/rpm
    # rpm -ivh *.rpm
    error: Failed dependencies:
            libcrypto.a(libcrypto.so) is needed by curl-7.44.0-1.ppc
            libssl.a(libssl.so) is needed by curl-7.44.0-1.ppc
            libcrypto.a(libcrypto.so) is needed by python-2.7.10-1.ppc
            libssl.a(libssl.so) is needed by python-2.7.10-1.ppc
            libcrypto.a(libcrypto.so) is needed by python-pycurl-7.19.3-1.ppc
    root@zap:/tmp/yum/rpm

     

     


    #AIXOpenSource
    #AIX-Open-Source-Software


  • 15.  Re: YUM Installation of AIX6.1

    Posted Mon September 25, 2017 10:36 AM

    Originally posted by: AyappanP


    Run "updtvpkg" command and then try installing the rpms.


    #AIX-Open-Source-Software
    #AIXOpenSource


  • 16.  Re: YUM Installation of AIX6.1

    Posted Mon September 25, 2017 10:51 AM
      |   view attached

    Originally posted by: Satish447


    Thanks Ayyappan & Sangamesh.

     

    That issue is resolved now. Now i face new problems - lot of conflicts while installing YUM rpms.

    All the errors were attached. Can you please help me on this on how to resolve in a shortcut way?

     

    Regards,

    Satish


    #AIXOpenSource
    #AIX-Open-Source-Software

    Attachment(s)

    txt
    errors.txt   14 KB 1 version


  • 17.  Re: YUM Installation of AIX6.1

    Posted Mon September 25, 2017 11:13 AM

    Originally posted by: AyappanP


    Use the rpm update option to resolve these errors

    rpm -Uvh <rpms>

    See rpm help and yum help to understand more about these commands. 


    #AIX-Open-Source-Software
    #AIXOpenSource


  • 18.  Re: YUM Installation of AIX6.1

    Posted Mon September 25, 2017 11:42 AM

    Originally posted by: Satish447


    Thanks Ayappan. Those errors were resolved, but i come up with new errors. 

     

    # rpm -Uvh *.rpm
    error: Failed dependencies:
            libdb.a(libdb-3.3.so.0) is needed by (installed) openldap-2.0.21-4.ppc
            libreadline.a(libreadline.so.4) is needed by (installed) librep-0.14-1.ppc
            libreadline.a(libreadline.so.4) is needed by (installed) bc-1.06-2.ppc
            libreadline.a(libreadline.so.4) is needed by (installed) git-4.3.20-4.ppc
            readline = 4.3 is needed by (installed) readline-devel-4.3-2.ppc

     

    Any suggestions?

     

    But libreadline.a, libdb.a are present in /opt/freeware/lib.

     

    root@zap:/usr/lib
    # ls -al libreadline.a
    lrwxrwxrwx    1 root     system           36 Nov 25 2009  libreadline.a -> ../../opt/freeware/lib/libreadline.a
     

    # ls -al libdb.a
    lrwxrwxrwx    1 root     system           30 Nov 25 2009  libdb.a -> ../../opt/freeware/lib/libdb.a
    root@zap:/usr/lib

     

    # rpm -q AIX-rpm --provides | grep libreadline
    libreadline.a(libreadline.so)
    libreadline.a(libreadline.so.6)
    libreadline.so.6

     

     

     

    Regards,

    Satish


    #AIXOpenSource
    #AIX-Open-Source-Software


  • 19.  Re: YUM Installation of AIX6.1

    Posted Tue September 26, 2017 11:42 AM

    Originally posted by: Satish447


    I am able to fix this. After erasing old packages forcefully it seems working. 

    Thanks !!


    #AIX-Open-Source-Software
    #AIXOpenSource


  • 20.  Re: YUM Installation of AIX6.1

    Posted Mon October 07, 2019 09:27 AM

    Originally posted by: Michael Jeyson


    Hello All,

     

    I am trying configure yum on AIX 7.1..getting error ..need your help.

     

    root@njdevgis03:/home/smj002/yum > ls -rlt
    total 106368
    -rw-r----- 1 l_xu staff 4036762 Feb 24 2017 gettext-0.19.7-1.aix6.1.ppc.rpm
    -rw-r----- 1 l_xu staff 56991 Feb 24 2017 gdbm-1.8.3-5.aix5.2.ppc.rpm
    -rw-r----- 1 l_xu staff 2897799 Feb 24 2017 db-4.8.24-3.aix6.1.ppc.rpm
    -rw-r----- 1 l_xu staff 533288 Feb 24 2017 curl-7.52.1-1.aix6.1.ppc.rpm
    -rw-r----- 1 l_xu staff 51749 Feb 24 2017 pysqlite-1.1.7-2.aix6.1.ppc.rpm
    -rw-r----- 1 l_xu staff 1686134 Feb 24 2017 glib2-2.14.6-2.aix5.2.ppc.rpm
    -rw-r----- 1 l_xu staff 3570302 Feb 24 2017 sqlite-3.15.2-1.aix6.1.ppc.rpm
    -rw-r----- 1 l_xu staff 489547 Feb 24 2017 readline-6.1-2.aix6.1.ppc.rpm
    -rw-r----- 1 l_xu staff 158584 Feb 24 2017 python-urlgrabber-3.10.1-1.aix6.1.noarch.rpm
    -rw-r----- 1 l_xu staff 830446 Feb 24 2017 python-tools-2.7.10-1.aix6.1.ppc.rpm
    -rw-r----- 1 l_xu staff 162093 Feb 24 2017 python-pycurl-7.19.3-1.aix6.1.ppc.rpm
    -rw-r----- 1 l_xu staff 37912 Feb 24 2017 python-iniparse-0.4-1.aix6.1.noarch.rpm
    -rw-r----- 1 l_xu staff 15366474 Feb 24 2017 python-devel-2.7.10-1.aix6.1.ppc.rpm
    -rw-r----- 1 l_xu staff 23333701 Feb 24 2017 python-2.7.10-1.aix6.1.ppc.rpm
    -rw-r----- 1 l_xu staff 62283 Feb 24 2017 yum-metadata-parser-1.1.4-2.aix6.1.ppc.rpm
    -rw-r--r-- 1 l_xu staff 214726 May 12 2017 ca-certificates-2016.10.7-2.aix6.1.ppc.rpm
    -rw-r----- 1 root system 923981 Mar 13 2019 yum-3.4.3-7.aix6.1.noarch.rpm

     

    trying to install above rpm ..getting error 


    root@njdevgis03:/home/smj002/yum > rpm -ivh *
    error: Failed dependencies:
    libcrypto.a(libcrypto.so) is needed by curl-7.52.1-1.ppc
    libssl.a(libssl.so) is needed by curl-7.52.1-1.ppc
    libcrypto.a(libcrypto.so) is needed by python-2.7.10-1.ppc
    libssl.a(libssl.so) is needed by python-2.7.10-1.ppc
    libtcl8.4.so is needed by python-2.7.10-1.ppc
    libtk8.4.so is needed by python-2.7.10-1.ppc
    libcrypto.a(libcrypto.so) is needed by python-pycurl-7.19.3-1.ppc
    root@njdevgis03:/home/smj002/yum >

    root@njdevgis03:/home/smj002/yum >
    root@njdevgis03:/home/smj002/yum >
    root@njdevgis03:/home/smj002/yum > ls /usr/lib/libcrypto.* /usr/lib/libssl.*
    /usr/lib/libcrypto.a  /usr/lib/libssl.a


    root@njdevgis03:/home/smj002/yum > ar -X32_64 -tv /usr/lib/libcrypto.a
    rwxrwxr-x 435159/1000 3189557 May 21 12:38 2013 libcrypto.so.1.0.0
    rwxrwxr-x 435159/1000 3189557 May 21 13:12 2013 libcrypto.so.0.9.8
    rwxrwxr-x 435159/1000 3606072 May 21 13:12 2013 libcrypto64.so.1.0.0
    rwxrwxr-x 435159/1000 3606072 May 21 13:12 2013 libcrypto64.so.0.9.8


    root@njdevgis03:/home/smj002/yum > ar -X32_64 -tv /usr/lib/libssl.a
    rwxrwxr-x 435159/1000 694135 May 21 12:38 2013 libssl.so.1.0.0
    rwxrwxr-x 435159/1000 694135 May 21 13:12 2013 libssl.so.0.9.8
    rwxrwxr-x 435159/1000 781801 May 21 13:12 2013 libssl64.so.1.0.0
    rwxrwxr-x 435159/1000 781801 May 21 13:12 2013 libssl64.so.0.9.8
    root@njdevgis03:/home/smj002/yum >
    root@njdevgis03:/home/smj002/yum >
    root@njdevgis03:/home/smj002/yum > updtvpkg
    Please wait...
    root@njdevgis03:/home/smj002/yum > rpm -ivh *.rpm
    error: Failed dependencies:
    libcrypto.a(libcrypto.so) is needed by curl-7.52.1-1.ppc
    libssl.a(libssl.so) is needed by curl-7.52.1-1.ppc
    libcrypto.a(libcrypto.so) is needed by python-2.7.10-1.ppc
    libssl.a(libssl.so) is needed by python-2.7.10-1.ppc
    libtcl8.4.so is needed by python-2.7.10-1.ppc
    libtk8.4.so is needed by python-2.7.10-1.ppc
    libcrypto.a(libcrypto.so) is needed by python-pycurl-7.19.3-1.ppc
    root@njdevgis03:/home/smj002/yum > rpm -q AIX-rpm --provides | grep libcrypto
    libcrypto.a(libcrypto.so.0.9.8)
    libcrypto.a(libcrypto.so.1.0.0)
    libcrypto.a(libcrypto64.so.0.9.8)
    libcrypto.a(libcrypto64.so.1.0.0)
    libcrypto.so.0.9.7
    libcryptoIBM082.so.1.0.1
    libcryptoIBM083.so.1.0.1
    libcrypto_compat.a(libcrypto.so.0.9.8)
    libcrypto_compat.a(libcrypto64.so.0.9.8)
    root@njdevgis03:/home/smj002/yum > rpm -q AIX-rpm --provides | grep libssl
    libssl.a(libssl.so.0.9.8)
    libssl.a(libssl.so.1.0.0)
    libssl.a(libssl64.so.0.9.8)
    libssl.a(libssl64.so.1.0.0)
    libssl3.a(libssl3.so)
    libssl3.so
    libssl_compat.a(libssl.so.0.9.8)
    libssl_compat.a(libssl64.so.0.9.8)
    root@njdevgis03:/home/smj002/yum >

     

    Please advise


    #AIX-Open-Source-Software
    #AIXOpenSource


  • 21.  Re: YUM Installation of AIX6.1

    Posted Wed October 23, 2019 01:24 PM

    Originally posted by: sanket


    I think you have older level of openssl package. Please install the latest openssl from AIX web download and then run updtvpkg command.


    #AIXOpenSource
    #AIX-Open-Source-Software