Hi ,
How can I configure OpenEmm to provide a HTTPS connector?
HTTPS connector
Moderator: moderator
Configure OpenEmm to work with a secured connection.
In order the configure OpenEmm to work with secured connection , the next steps should be taken (using Linux/Unix machines):
1) Generate a key using the next command :
keytool -genkey -keyalg RSA -alias myserverkeypair \
-storepass YourPasswordHere -keystore private.keystore
(use this link in order to install this Java tool use this link: [url]http://java.sun.com/javase/technologies/security/ ).
2) add the next piece of code to the openemm/conf/core.conf :
[code]<http server-id="core" host="*" port="8445">
<jsse-ssl>
<key-store-type>jks</key-store-type>
<key-store-file>file:///home/openemm/conf/OpenEmmKeystore.keystore</key-store-file>
<password>123456</password>
</jsse-ssl>
</http>
The password must be the corresponding password to the key that was generated at the previous step.The key-store-file is the path to the keystroe file .
I believe that's it , if you were facing some difficulties , don't hesitate to contact me by this post .
Regards.[/code][/url][url][/url]
1) Generate a key using the next command :
keytool -genkey -keyalg RSA -alias myserverkeypair \
-storepass YourPasswordHere -keystore private.keystore
(use this link in order to install this Java tool use this link: [url]http://java.sun.com/javase/technologies/security/ ).
2) add the next piece of code to the openemm/conf/core.conf :
[code]<http server-id="core" host="*" port="8445">
<jsse-ssl>
<key-store-type>jks</key-store-type>
<key-store-file>file:///home/openemm/conf/OpenEmmKeystore.keystore</key-store-file>
<password>123456</password>
</jsse-ssl>
</http>
The password must be the corresponding password to the key that was generated at the previous step.The key-store-file is the path to the keystroe file .
I believe that's it , if you were facing some difficulties , don't hesitate to contact me by this post .
Regards.[/code][/url][url][/url]
Re: HTTPS connector
How to do it with a signed certificate ?