ricardocaldeira
ricardocaldeira

Reputation: 699

Can't install OpenSSL 1.0.1e

I've tried to install a new version of OpenSSL via Homebrew but it doesn't work. My actual OpenSSL version is 0.9.8 and I don't know what to do.

When I type on MacOS 10.8.4 brew install openssl the system brings to me the following error:

Error: openssl-1.0.1e already installed

So when I type openssl version I see this:

OpenSSL 0.9.8x 10 May 2012

How can I turn the actual version to the new version installed via Homebrew? Any tips?

Upvotes: 0

Views: 3045

Answers (1)

Stian Fauskanger
Stian Fauskanger

Reputation: 216

My guess is that OS X has an older version of openssl in /usr/bin, and Homebrew places it's version in /usr/local/bin

Try

/usr/local/bin/openssl version

Edit: Before you try the above command, run:

brew link --force openssl

Upvotes: 4

Related Questions