Tan Zann
Tan Zann

Reputation: 21

installation of openssl on centos 6.3

# cd openssl-0.9.8o
# ./config shared –prefix=/usr/local
# make
# make test

when i tried install and run make test .. received below error.

if [ -n "" ]; then \
          ../util/shlib_wrap.sh ./fips_randtest; \
        fi
starting big number library test, could take a while...
test BN_add
Add test failed!
make[1]: *** [test_bn] Error 1
make[1]: Leaving directory `/usr/local/src/openssl-0.9.8o/test'
make: *** [tests] Error 2

Upvotes: 2

Views: 10237

Answers (1)

Jubba Smail
Jubba Smail

Reputation: 1225

Is it necessarily to compile Openssl from source code? if not try to use:

# yum -y install openssl

from command line, it's straight forward to install using YUM, it's use the internet to download and install the needed RPM packages.

In case you don't have internet access from your CentOS 6.3 machine, download the Openssl package from here, copy it to your machine then install it using this command:

# rpm -Uvh openssl-1.0.0-25.el6_3.1.i686.rpm

Upvotes: 4

Related Questions