How do I install Siege with libssl?

I am trying to install Siege using libssl on Mac OS 10.12, but when I use the utility with the address https

I get the following error.

[error] HTTPS requires libssl: cannot reach https://example.com/ with this protocol: socket is already connected

I am installing the following commands from the wiki :

./configure --with-ssl
make
make install

      

+3


source to share


1 answer


use brew to install siege.
this fixed the problem for me. the only additional thing I had to do was tie up the siege.

https://coderwall.com/p/qfrk1w/making-siege-work-with-https-on-os-x-mavericks . brew remove siege
brew install openssl
brew link --force openssl
brew install siege



Additional steps had to be followed (Mac OS Sierra low). ln -s / usr / local / Cellar / siege / 4.0.4 / bin / siege / usr / local / bin / siege.

0


source







All Articles