I'm not sure how to recompile PHP with OpenSSL? I've been looking around the OpenSSL PHP page and the OpenSSL tutorials but I don't see any openssl.so or php-openssl.so around my server?
Is there a simple package on apt-get channel so I can install it from there?
I just need to recompile PHP with OpenSSL, but I have no idea how to do this.
EDIT: I run a dedicated server and it's Ubuntu 11.10.
I have a confusion to choose the best way for upgrading the OpenSSL on my Linux machine.
1*Through the yum Update.*
# yum update
I know this will update the entire packages. But If I want to specifically update OpenSSL
Can I use # yum update OpenSSL
2.
We upgraded openssl manually to latest version on centos 5.8 64bit
wget http://www.openssl.org/source/openssl-1.0.1c.tar.gz
tar -zxf openssl-1.0.1c.tar.gz
cd openssl-1.0.1c
./configure --prefix=/usr --sysconfdir=/etc/ssh --with-ssl-dir=/usr/src/openssl-1.0.1c --with-pam --with-libs=-ldl --without-zlib-version-check
make
make install
Now when we recompile apache/php it gives error -
---
type -lX
For the trinity needed a never version of openssl. You must use other distro, or create an openssl rpm like openssl097a, with newest openssl, or try a search other from repo. For example, fedora 12... [by fonya]
I am trying to install openssl-devel on a 64bit linux instance on ec2.
I have an Apache 2.2 (self-compiled version) server that is getting dinged during a PCI scan because it does not support TLS 1.1 or 1.2 ciphers. After some digging I found that the installed version of OpenSSL (0.9.8e) does not contain the newest TLS ciphers.
We're currently using Ubuntu 10.04 and based on the PCI Compliance results, we're told to upgrade our OpenSSL.
I attempted to do this using this reference: http://sandilands.info/sgordon/upgrade-latest-version-openssl-on-ubuntu and http://www.lunarforums.com/dedicated_web_hosting_at_lunarpages/upgrading...
Unfortunately, they didn't work for me.
I'm trying to sign an S/MIME with PHP, using a pair of GOST-encrypted certificate and a private key.
When using openssl itself from a console everything is fine:
/usr/local/openssl/bin/openssl cms -sign -in file.txt -out signedfile.txt -signer p12.pem
(signedfile.txt is created)
/usr/local/openssl/bin/openssl cms -verify -in signedfile.txt -out signedddata.txt -no_signer_cert_verify -issuer_che
An update: CentOS just re-issued the openssl packages. This may resolve the current issue some people are experiencing. [by toracat]