WebSocket 连接失败。 WebSocket握手期间出错-socketjs
Posted
技术标签:
【中文标题】WebSocket 连接失败。 WebSocket握手期间出错-socketjs【英文标题】:WebSocket connection failed. Error during WebSocket handshake - socketjs 【发布时间】:2017-05-09 17:05:08 【问题描述】:详情:
我一直在尝试将我的 react 项目配置为与 hot loader
一起使用,以便我可以积极开发而无需重新启动服务器。每次 websocket 尝试连接时,我都会收到一条连续的错误消息:
WebSocket connection to 'ws://192.168.33.10/sockjs-node/301/eo4p2zps/websocket' failed: Error during WebSocket handshake: Unexpected response code: 404
。我的直觉告诉我,这可能与我运行 Ubuntu -v 14.04.3
的虚拟机(vagrant)有关。除了记录上述错误,我得到:
http://192.168.33.10/sockjs-node/629/s0dz3nxv/xhr_streaming?t=1482558136743 404 (Not Found)
http://192.168.33.10/sockjs-node/629/jbjciaga/eventsource 404 (Not Found)
http://192.168.33.10/sockjs-node/iframe.html 404 (Not Found)
http://192.168.33.10/sockjs-node/629/e1x0l01e/xhr?t=1482558137388 404 (Not Found)
Warning: [react-router] Location "/sockjs-node/629/dr44jysd/htmlfile?c=_jp.ajy5ad3" did not match any routes
client?e2df:41 [WDS] Disconnected!
Uncaught SyntaxError: Unexpected token <
我还采用了以下样板:https://github.com/jpsierens/webpack-react-redux,希望比较我当前的配置,但两者似乎都是正确的。
配置
webpack.config.js
:
'use strict';
var path = require('path');
var webpack = require('webpack');
var HtmlWebpackPlugin = require('html-webpack-plugin');
module.exports =
devtool: 'eval-source-map',
entry: [
'webpack-dev-server/client?http://0.0.0.0:80/',
'webpack/hot/only-dev-server',
'react-hot-loader/patch',
path.join(__dirname, 'app/index.js')
],
output:
path: path.join(__dirname, '/dist/'),
filename: '[name].js',
publicPath: '/'
,
plugins: [
new HtmlWebpackPlugin(
template: 'app/index.tpl.html',
inject: 'body',
filename: 'index.html'
),
new webpack.optimize.OccurenceOrderPlugin(),
new webpack.HotModuleReplacementPlugin(),
new webpack.NoErrorsPlugin(),
new webpack.DefinePlugin(
'process.env.NODE_ENV': JSON.stringify('development')
)
],
eslint:
configFile: '.eslintrc',
failOnWarning: false,
failOnError: false
,
module:
preLoaders: [
test: /\.js$/,
exclude: /node_modules/,
loader: 'eslint'
],
loaders: [
test: /\.js?$/,
exclude: /node_modules/,
loader: 'babel'
,
test: /\.json?$/,
loader: 'json'
,
test: /\.scss$/,
loader: 'style!css!sass?modules&localIdentName=[name]---[local]---[hash:base64:5]'
,
test: /\.woff(2)?(\?[a-z0-9#=&.]+)?$/, loader: 'url?limit=10000&mimetype=application/font-woff' ,
test: /\.(ttf|eot|svg)(\?[a-z0-9#=&.]+)?$/, loader: 'file'
]
;
server.js
var webpack = require('webpack');
var WebpackDevServer = require('webpack-dev-server');
var config = require('./webpack.config');
new WebpackDevServer(webpack(config),
publicPath: config.output.publicPath,
hot: true,
historyApiFallback: true,
// It suppress error shown in console, so it has to be set to false.
quiet: false,
// It suppress everything except error, so it has to be set to false as well
// to see success build.
noInfo: false,
stats:
// Config for minimal console.log mess.
assets: false,
colors: true,
version: false,
hash: false,
timings: false,
chunks: false,
chunkModules: false
).listen(8080, 'localhost', function (err)
if (err)
console.log(err);
console.log('Listening at localhost:8080');
);
加法
还可以查看更多graphical
我的错误输出:
结论
如果您有任何建议或想法,请告诉我。如果我能提供更多细节,请告诉我。
【问题讨论】:
我在浏览器上通过 Web 套接字运行 MQTT 客户端时遇到了类似的问题。我通过重新配置端口解决了这个问题。有 2 个端口,一个用于 IPv4,一个用于 IPv6。我只需要使用一个。 有趣的是,我认为webpack-dev-server
可能被阻止了。让我看看端口配置。
【参考方案1】:
好的,我知道我要说的很奇怪,但这就是发生在我身上的事。
我假设您使用的是 nginx 代理。而“Error during WebSocket handshake - socketjs
”与 chrome 浏览器或 websocket (ws) 脚本无关。在 Firefox 中也是同样的错误。 (真的)一段时间后,我发现'ws'脚本是有序的,它与代理有关。它转到“404”,好像 websocket 没有响应。
并且,我尝试将我的 nginx 代理位置设置为,
location /
proxy_pass http://127.0.0.1:3000/;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "Upgrade";
#proxy_set_header Host $host;
这行得通。 nginx 的代理设置必须至少指定标头主机、连接。
我注释掉了proxy_set_header
,因为你的 $host 变量可能会有所不同。
【讨论】:
这对我来说效果很好。我的 nginx.conf 几乎相同,只是我没有proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection "Upgrade";
。谢谢!
完美运行,万分感谢!
我在 websockets 和 nginx 上遇到了类似的问题,我认为问题也可能是代理问题。过去 'WebSocket connection to 'ws://hostip/websocket' failed:' 我没有收到任何错误,而且我的 nginx 设置看起来不像你的。它具有类似的设置,但它们用于位置 /api 和位置 /grafana。但是位置/只有root和try_files。你认为我需要设置位置 /websockets 吗?以上是关于WebSocket 连接失败。 WebSocket握手期间出错-socketjs的主要内容,如果未能解决你的问题,请参考以下文章
rxjs/webSocket - 到“ws://localhost:3000/”的 WebSocket 连接失败:连接在收到握手响应之前关闭
使用 Maven,WebSocket 连接失败:WebSocket 握手期间出错:意外响应代码:404
WebSocket 连接到 'ws://localhost:4444/subscriptions' 失败:WebSocket 在连接建立之前关闭