error while starting SSH on AIX

Hi all

while giving command ssh start i am getting following error

exec(): 0509-036 Cannot load program ssh because of the following errors:
0509-150 Dependent module /opt/freeware/lib/libcrypto.a(libcrypto.so.0.9.7) could not be loaded.
0509-152 Member libcrypto.so.0.9.7 is not found in archive

Please help me out

Helo.
The error clearly says that ssh misses a library (libcrypto.so.0.9.7). You will need to install openssl to make ssh work. You can get it from IBM at:
https://www14.software.ibm.com/webapp/iwm/web/preLogin.do?source=aixtbx&S_PKG=dlaixww
Though, you must register.
Regards.

hi grial,

Thanks for your responce when i give the following command

# rpm -qa | egrep '(openssl|openssh|prng)'
openssl-0.9.6m-2
openssl-devel-0.9.7g-2
openssl-doc-0.9.7g-2
prngd-0.9.29-1

#ssh -d

exec(): 0509-036 Cannot load program ssh because of the following errors:
0509-150 Dependent module /opt/freeware/lib/libcrypto.a(libcrypto.so.0.9.7) could not be loaded.
0509-152 Member libcrypto.so.0.9.7 is not found in archive

still i am getting the same error

Can you please suggest me..

Advance thanks regarding..

There it is, ssh's telling you! :slight_smile:
You have BINARIES version 0.9.6m-2 for openssl, and you are being asked for version
0.9.7. Just remove the old openssl version and install the new one.
Regards.

hi grial

Thank you very much....

It resoved my problem :slight_smile: :slight_smile: :slight_smile: :slight_smile:

I uninstalled all the rpms and installed the new version 9.7

Thank you