在阿里云服务器上使用socket.io无法连接
原本在本地部署的项目使用socket都没有问题
放到阿里云上socket始终链接不上
前端
// 客户指派提醒消息
var socket = io('服务器外网ip:6001');
socket.on("members:assign.notification", function (data) {
// toastr.info(data.content, data.title, {
// "timeOut": 14400000,
// "extendedTimeOut": 14400000
// });
console.log(data);
});
socket.io
var app = require('http').createServer(handler);
var io = require('socket.io')(app);
var Redis = require('ioredis');
var redis = new Redis(6379, '127.0.0.1');
app.listen(6001, function () {
console.log('Socket server is running at port 6001!');
});
function handler(req, res) {
res.writeHead(200);
res.end('');
}
io.on('connection', function (socket) {
socket.on('message', function (message) {
console.log(message)
});
socket.on('disconnect', function () {
console.log('user disconnect')
});
});
客户端请求
报错
GET https://服务器外网ip:6001/socket.io/?EIO=3&transport=polling&t=M0q8ZAs net::ERR_CONNECTION_CLOSED
polling-xhr.js:264
网络请求用的https
我在想这是会不会是https有所影响
第一次在阿里云上使用socket服务 遇到问题实在无法解决,恳求各位大佬给出宝贵的建议!谢谢
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
安全组策略端口开了么~
你服务器端用的是 http,客户端请求用 https 当然有问题。