I am trying to install DB2 Enterprise Server on my RHEL6 machine. Unfortunately, it seems that it needs the 32bit version of libpam.so.0 for some routines. The machine runs the 64 bit version which seems to have the lib installed... I assume it's the 64 version. Is there any way to get and install the 32 bit version to be used by the DB2 installer?
Asked
Active
Viewed 6.6k times
3 Answers
9
yum install pam.i686 is what you should enter into the command line.

Joe
- 99
- 1
- 2
-
1Yay, thanks! Don't forget the `-y` argument to yum so that it won't ask silly questions (or, more importantly in my case, so you can automate it easily.) – ArtOfWarfare Apr 09 '15 at 17:45
4
this is probably related, http://www-01.ibm.com/support/docview.wss?uid=swg21573357
seems you need to install pam-1.1.1-10.el6.i686.rpm

spotter
- 1,178
- 1
- 9
- 19
1
Another way is to install the package libpam.so.0
, which represents the 32-bit version of libpam:
yum install libpam.so.0
This is mentioned on the Db2 LUW V11.1 documentation, on Table 1. Package requirements for SLES and RHEL distributions:
https://www.ibm.com/docs/en/db2/11.1?topic=servers-linux#r0008865__t-sles-rhel

kelvin
- 1,421
- 13
- 28

Carlos Miranda
- 11
- 2