I can't get socket.io running on OpenShift. I googled for some hours now but nothing really helped me. Locally it works fine (with different ports and localhost as host of course).
我不能得到插座。io OpenShift上运行。我用谷歌搜索了几个小时,但没有任何东西真正帮助我。在本地它工作得很好(当然使用不同的端口和本地主机作为主机)。
This is my server.js file:
这是我的服务器。js文件:
var port = process.env.OPENSHIFT_NODEJS_PORT || 8080;
var ipadr = process.env.OPENSHIFT_NODEJS_IP || "127.0.0.1";
var http = require('http').createServer(function(request, response) {
response.writeHead(200, {"Content-Type": "text/plain"});
response.end();
}).listen(port,ipadr);
console.log(port+":"+ipadr);
var io = require('socket.io').listen(http),
fs = require('fs'),
request = require('request'),
mysql = require('mysql'),
moment = require('moment'),
connectionsArray = [],
connection = mysql.createConnection({
host: 'xxx',
user: 'xxx',
password: 'xxx',
database: 'xxx',
port: 3306
}),
POLLING_INTERVAL = 1000,
pollingTimer;
io.on('connection', function(socket){
console.log('a user connected');
});
var updateSockets = function(data) {
// adding the time of the last update
t = new Date();
t = moment().format('H:mm:ss');
console.log('(%s) Connections: %s', t, connectionsArray.length);
// sending new data to all the sockets connected
connectionsArray.forEach(function(tmpSocket) {
tmpSocket.volatile.emit('notification', data);
});
};
console.log('server.js executed\n');
When I run this on SSH OpenShift it just shows the first console.log with my port and ipadress of OpenShift and the last line of my server.js code:
在SSH OpenShift上运行时,它只显示第一个控制台。使用OpenShift的端口和ipadress以及服务器的最后一行进行日志记录。js代码:
server.js executed
服务器。js执行
and that's it. So I don't get the "a user connected" message like when I test it locally.
就是这样。所以我不会像在本地测试时那样得到“用户连接”消息。
This is how I want to connect in my client-side .js-file:
这是我希望在客户端.js文件中连接的方式:
var socket = io.connect('http://njs-uniqo.rhcloud.com:8080/');
Browser (Chrome) Console outputs:
浏览器(铬)控制台输出:
> ?s=product&id=10:1 XMLHttpRequest cannot load http://xxx.rhcloud.com:8000/socket.io/?EIO=3&transport=polling&t=1430395459829-1.
> No 'Access-Control-Allow-Origin' header is present on the requested
> resource. Origin 'http://localhost' is therefore not allowed access.
> The response had HTTP status code 503.
If I change the port to 8080 on the client-side .js-file I get ERR_CONNECTION_TIMED_OUT:
如果我将端口更改为8080,我将得到ERR_CONNECTION_TIMED_OUT:
GET http://xxx.rhcloud.com:8080/socket.io/?EIO=3&transport=polling&t=1430395346761-6 net::ERR_CONNECTION_TIMED_OUT
2 个解决方案
#1
2
You need to use port 8000. It's what openshift forces for websockets.
您需要使用端口8000。它是websockets的openshift力量。
var socket = io.connect('http://yourapp.rhcloud.com:8000/',{'forceNew':true });
Port 8000 is for http and 8443 is for https
端口8000是http, 8443是https
源
#2
1
You must edit package.json
. Add...
您必须编辑package.json。添加……
"socket.io": "~0.9.16"
...under dependencies. The server then automatically downloads socket.io which is not present by default.
…在依赖项。然后服务器自动下载套接字。io在默认情况下不存在。
#1
2
You need to use port 8000. It's what openshift forces for websockets.
您需要使用端口8000。它是websockets的openshift力量。
var socket = io.connect('http://yourapp.rhcloud.com:8000/',{'forceNew':true });
Port 8000 is for http and 8443 is for https
端口8000是http, 8443是https
源
#2
1
You must edit package.json
. Add...
您必须编辑package.json。添加……
"socket.io": "~0.9.16"
...under dependencies. The server then automatically downloads socket.io which is not present by default.
…在依赖项。然后服务器自动下载套接字。io在默认情况下不存在。