I’m so happy yet.
I have found the solution.
-
Export the Server-Certificate over the Internet-Browser
-
Copy the certificates to a share of your NethServer (\myNethServer\share) for example
-
Open a ssh to your server (Putty or something like that)
-
Enter the following command at the ssh: find / -name “*.der”
-
The result should look like this /var/lib/nethserver/ibay/share/Zertifikat/NethServer.der or something like that
-
Change to the directory: cd /var/lib/nethserver/ibay/share/Zertifikat/
-
Check whether the certificates are present, with: ls
-
You should find for example:NethServer.crt NethServer.der NethServer.p7c
-
Now must be converted into a PEM certificat with follow:
openssl x509 -in NethServer.der -inform DER -out NethServer.pem -outform PEM -
Check it with: ls
The result should look like this: NethServer.crt NethServer.der NethServer.p7c NethServer.pem
Done!
