python – WebRTC服务器停止工作

我的webRTC服务器已停止工作. Chrome突出显示了此错误:

VM238:164 WebSocket connection to 'wss://*******.com/rtc/' failed: Error during 
WebSocket handshake: Unexpected response code: 502

重新启动服务器后发生错误(我认为).服务器信息 – ubuntu,nginx uwsgi,webrtc part – python.

nginx错误日志:

2018/03/15 15:05:17 [error] 597#0: *1058 connect() failed (111: Connection refused) 
while connecting to upstream, client: ***.***.***.***, server: ********.com, request: 
"GET /rtc/ HTTP/1.1", upstream: "http://127.0.0.1:3333/rtc/", host: "********.com"

nginx.conf文件:

user ****;
worker_processes 4;
pid /run/nginx.pid;

events {
        worker_connections 768;
}

http {
        sendfile on;
        tcp_nopush on;
        tcp_nodelay on;
        keepalive_timeout 65;
        types_hash_max_size 2048;
        server_tokens off;

        include /etc/nginx/mime.types;
        default_type application/octet-stream;

        ssl_protocols TLSv1 TLSv1.1 TLSv1.2; # Dropping SSLv3, ref: POODLE
        ssl_prefer_server_ciphers on;

        access_log /var/log/nginx/access.log;
        error_log /var/log/nginx/error.log;

        gzip on;
        gzip_disable "msie6";

        include /etc/nginx/conf.d/*.conf;
        include /etc/nginx/sites-enabled/*;
}

不幸的是,我对WebRTS了解不多.这部分项目在我之前完成.如果您需要更多信息,我可以提供.

最佳答案 因此,很可能还有一个NodeJS程序也在运行以处理WebRTC服务器,并且它没有作为服务添加.

重启导致服务消失

这意味着您需要找到WebRTC节点服务器代码的位置并启动它.如果服务器没有太多节点项目,我将使用locate package.json或grep -r“/ rtc”< dir>来搜索项目.启动服务器后,错误应该消失.

我还会运行history命令来找出之前用于运行服务器的命令

这只是一个配置不当的服务器

点赞