2017-02-16 39 views
0

我尝试在远程EC2实例上运行Kurento,但似乎无法绕过我的头,我该如何加载页面。我已打开所有UDP端口,我已配置我的kurento服务器到STUN服务器和checked它的工作,但如果我运行npm start -- --ws_uri=ws://kms_host:kms_port/kurento它仍然说它在本地主机上运行。尝试在EC2上远程运行Kurento

etc/kurento/WebRtcEndpoint.conf.ini

stunServerAddress=74.125.200.127 
stunServerPort=19302 

; turnURL gives the necessary info to configure TURN for WebRTC. 
; 'address' must be an IP (not a domain). 
; 'transport' is optional (UDP by default). 
; turnURL=user:[email protected]:port(?transport=[udp|tcp|tls]) 

;pemCertificate is deprecated. Please use pemCertificateRSA instead 
;pemCertificate=<path> 
;pemCertificateRSA=<path> 
;pemCertificateECDSA=<path> 

现在我敢肯定,我有什么毛病我配置的方式或如何,我认为它应该工作。基本上我想知道的是,如果我想看看页面中的文件显示kurento hello-world示例,但是从运行kurento的远程EC2实例,我该怎么做,因为在遵循其steps

回答

0

最好的方法使ECO的kurento工作是配置科腾服务器在官方文档中描述here

如果你不想要它,你必须找到工作STUN服务器。在我的情况下,在EC2上,此服务器现在工作正常:

stunServerAddress=74.125.142.127 
stunServerPort=19302 
相关问题