1.Installing the prerequisite filesets.2.Downloading the rpm packages.3.Installing the prerequisite rpm packages openSSH rpm packages.1.
Installing the prerequiste filesets.
The filesets
rpm.rte
and
perl.rte
are required to be installed prior to installing the rpm packages.The
rpm.rte
fileset can be found at the following:
The filesets can be installed using
smitty installp
.2.
Downloading the rpm packages.
The
rpm
prngd
(Psuedo Random Number Generator Daemon) daemon and the
zlib
compression and decompression library can be downloaded. These are the prerequistes for installing the
openssl rpm
package. These are
prngd-0.9.23-2.aix4.3.ppc.rpm
and
zlib-1.1.4-1.aix4.3.ppc.rpm
respectively.Then click
AIX TOOLbox Cryptographic Content
on the sorted content download in theupper right area and then register yourself, if you are not already a registered user. Then click on
Accept License
button at the bottom of the panel that appears and then you are ready todownload the
openssl
and
openssh rpm
packages which are:
openssl-0.9e-2.aix4.3.ppc.rpmopenssl-devel-0.9.6e-2.aix4.3.ppc.rpmopenssl-doc-0.9.6e-2.aix4.3.ppc.rpmopenssh-3.4p1-4.aix4.3.ppc.rpmopenssh-server-3.4p1-4.aix4.3.ppc.rpmopenssh-clients-3.4p1-4.aix4.3.ppc.rpm
3.
Installing the prerequisite rpm packages.
Once you have all the
rpm
files in the current directory, run the following commands to install them.
# rpm -i zlib-1.1.4-1.aix4.3.ppc.rpm# rpm -i prngd-0.9.23-2.aix4.3.ppc.rpm# rpm -i openssl-0.9e-2.aix4.3.ppc.rpm# rpm -i openssl-devel-0.9.6e-2.aix4.3.ppc.rpm# rpm -i openssl-doc-0.9.6e-2.aix4.3.ppc.rpm# rpm -i openssh-3.4p1-4.aix4.3.ppc.rpm# rpm -i openssh-server-3.4p1-4.aix4.3.ppc.rpm# rpm -i openssh-clients-3.4p1-4.aix4.3.ppc.rpm
Sometimes you may get the
error: failed dependencies
error while trying to install the
openssl
packages. In that case, run the following command:
# rpm -i --nodeps openssl-0.9.6e-2.aix4.3.ppc.rpm
The following command can be run to update the AIX-rpm:
# /usr/sbin/updtvpkg
The
prngd
needs to be installed before
openssl
and
openssh
, and
openssl
is the prerequiste for installing the
openssh rpm
packages. The
openssl-devel-0.9.6e-2.aix4.3.ppc.rpm
and the
openssl-doc-0.9.6e-2.aix4.3.ppc.rpm
are not the required packages for installing the openSSH.To verify that these packages are installed, run the following command:
# rpm -qa | egrep '(openssl|openssh|prng)'-->zlib-1.1.4-1prngd-0.9.23-2openssl-0.9.6e-2openssl-devel-0.9.6e-2
Leave a Comment