Hi,
I had the same problem the solution is very simple:
In your config you find something like this:
Code:
# SSL/TLS parms.
# See the server config file for more
# description. It's best to use
# a separate .crt/.key file pair
# for each client. A single ca
# file can be used for all clients.
ca '/etc/openvpn/cacert.pem'
cert '/etc/openvpn/cert.pem'
key '/etc/openvpn/key.pem'
remove the quotes around the ca, cert and key and everything should work fine although it did it for me
Now it should look like this
Code:
# SSL/TLS parms.
# See the server config file for more
# description. It's best to use
# a separate .crt/.key file pair
# for each client. A single ca
# file can be used for all clients.
ca /etc/openvpn/cacert.pem
cert /etc/openvpn/cert.pem
key /etc/openvpn/key.pem
I had the same error on my windows client

and also linux client