Hi All,
I've installed and configured my STunnel. But it won't start.
The error i'm getting is: PEM_read_bio:no start line
I use the certificate isn't valid, but it's a certificate that i received from a third party and should be correct. Do i have to add something to or alter the certificate so that STUnnel can work with it?
kind regards,
Ted
On 09.01.2014 09:43, Ted Roeloffzen wrote:
The error i'm getting is: PEM_read_bio:no start line
stunnel obviously expects the data (private key? cert?) to be in PEM format, which means that the actual data within the file starts with a line
-----BEGIN CERTIFICATE-----
(for the cert) or
-----BEGIN RSA PRIVATE KEY-----
(for the private key). Verify that your file contains the data in this expected format (as opposed to, say, DER format).
Regards, J. Bern