Difference between revisions of "RTMPS"

From IVS Wiki
Jump to: navigation, search
(Created page with "==What you will need== #) server.key - key file #) ca.crt - The root CA or intermidiate certificate either in x509 format #) signed.crt - The signed certificate in x509 format...")
 
Line 17: Line 17:
 
==Configuring Wowza for RTMPS==
 
==Configuring Wowza for RTMPS==
 
#) Edit the VHosts file "nano /usr/local/WowzaStreamingEngine/conf/VHost.xml"
 
#) Edit the VHosts file "nano /usr/local/WowzaStreamingEngine/conf/VHost.xml"
#) Un-comment out section labeled 443 with SSL by removing the <!--- & --_!> flags as shown below
+
#) Un-comment out section labeled 443 with SSL by removing the <!--- & --_!> flags as shown below [[File:rtmps1.jpg]]
 
 
[[File:rtmps1.jpg]]
 
  
 
#) Within <Port> change the port number to 444
 
#) Within <Port> change the port number to 444

Revision as of 17:06, 3 April 2017

What you will need

  1. ) server.key - key file
  2. ) ca.crt - The root CA or intermidiate certificate either in x509 format
  3. ) signed.crt - The signed certificate in x509 format

Converting the Cert

Converting x509 Cert and Key to pkcs12 file

Follow the steps below use the following syntax replacing cert name:

  1. ) openssl pkcs12 -export -in signed.crt -inkey server.key -out signed.p12 -name wowza -CAfile ca.crt -caname root
  2. ) Enter a password - example: admin51

Convert the pkcs12 file to a java keystore

Follow the steps below use the following syntax replacing cert name:

  1. ) keytool -importkeystore -destkeystore signed.jks -srckeystore signed.p12 -srcstoretype pkcs12 -alias wowza
  2. ) Copy your .jks file to [Wowza folder]/conf and follow instruction for configuring Wowza for RTMPS

Configuring Wowza for RTMPS

  1. ) Edit the VHosts file "nano /usr/local/WowzaStreamingEngine/conf/VHost.xml"
  2. ) Un-comment out section labeled 443 with SSL by removing the Media Server(s) check the SSL checkbox and enter 444 as the port then press save

Rtmps2.jpg