Heroku 上的 socket.io + node.js

Posted

技术标签:

【中文标题】Heroku 上的 socket.io + node.js【英文标题】:socket.io + node.js on heroku 【发布时间】:2012-07-25 08:23:33 【问题描述】:

我在 heroku 上编译 socket.io 应用程序时遇到了一些问题。

这就是 app.js 文件

var app = require('express').createServer()
   , io = require('socket.io').listen(app.listen(process.env.PORT || 5000));

app.get('/', function (req, res) 
    res.sendfile(__dirname + '/index.html');
);

var users = [];

  io.configure(function ()  
  io.set("transports", ["xhr-polling"]); 
  io.set("polling duration", 10); 
);

io.sockets.on('connection', function (socket) 

  socket.on('message',function(data,time,username)


    socket.broadcast.emit('message',data,time,username);

    socket.emit('message',data,time,username,true);
  );

  socket.on('connected',function(username)

    socket.nick = username;

    users.push(username);

    io.sockets.emit('user_connected',users);
  );

  socket.on('disconnect',function()

    users.splice(users.indexOf(socket.nick), 1);

    socket.broadcast.emit('updated_user_list',users);
  );

);

package.json


  "name": "application-name",
  "version": "0.0.1",
  "private": true,
  "scripts": 
    "start": "node app"
  ,
  "engines": 
    "node": "0.8.x",
    "npm":  "1.1.x"
  ,
  "dependencies": 
    "express": "3.0.0rc1",
    "jade": "*",
    "socket.io": "~0.9.8"
  

这就是将它推送到heroku时的错误

[gaggina:~/Desktop/socket2]→git push heroku master
Counting objects: 1016, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (892/892), done.
Writing objects: 100% (1016/1016), 3.90 MiB | 104 KiB/s, done.
Total 1016 (delta 74), reused 0 (delta 0)

-----> Heroku receiving push
-----> Node.js app detected
-----> Resolving engine versions
       Using Node.js version: 0.8.3
       Using npm version: 1.1.41
-----> Fetching Node.js binaries
-----> Vendoring node into slug
-----> Installing dependencies with npm
       npm WARN package.json application-name@0.0.1 No README.md file found!
       npm WARN package.json jade@0.26.3 No README.md file found!
       npm WARN package.json application-name@0.0.1 No README.md file found!
       npm WARN package.json jade@0.26.3 No README.md file found!
       npm WARN package.json connect@2.4.1 No README.md file found!
       npm WARN package.json methods@0.0.1 No README.md file found!
       npm WARN package.json hiredis@0.1.14 No README.md file found!

       > ws@0.4.21 install /tmp/build_3gzqoe2cjr234/node_modules/socket.io/node_modules/socket.io-client/node_modules/ws
       > node install.js

       [ws v0.4.21] Attempting to compile blazing fast native extensions.
       [ws v0.4.21] Native extension compilation successful!

       > hiredis@0.1.14 preinstall /tmp/build_3gzqoe2cjr234/node_modules/socket.io/node_modules/redis/node_modules/hiredis
       > make || gmake

       cd deps/hiredis && make static
       make[1]: Entering directory `/tmp/build_3gzqoe2cjr234/node_modules/socket.io/node_modules/redis/node_modules/hiredis/deps/hiredis'
       make[1]: Nothing to be done for `static'.
       make[1]: Leaving directory `/tmp/build_3gzqoe2cjr234/node_modules/socket.io/node_modules/redis/node_modules/hiredis/deps/hiredis'
       node-waf configure build
       Setting srcdir to                        : /tmp/build_3gzqoe2cjr234/node_modules/socket.io/node_modules/redis/node_modules/hiredis 
       Setting blddir to                        : /tmp/build_3gzqoe2cjr234/node_modules/socket.io/node_modules/redis/node_modules/hiredis/build 
       Checking for program g++ or c++          : /usr/bin/g++ 
       Checking for program cpp                 : /usr/bin/cpp 
       Checking for program ar                  : /usr/bin/ar 
       Checking for program ranlib              : /usr/bin/ranlib 
       Checking for g++                         : ok  
       Checking for node path                   : not found 
       Checking for node prefix                 : ok /tmp/node-node-de4o 
       'configure' finished successfully (1.834s)
       Waf: Entering directory `/Users/gaggina/Desktop/socket2/node_modules/socket.io/node_modules/redis/node_modules/hiredis/build'
       Waf: Leaving directory `/Users/gaggina/Desktop/socket2/node_modules/socket.io/node_modules/redis/node_modules/hiredis/build'
       Traceback (most recent call last):
         File "/tmp/node-node-de4o/bin/node-waf", line 16, in <module>
           Scripting.prepare(t, os.getcwd(), VERSION, wafdir)
         File "/tmp/node-node-de4o/bin/../lib/node/wafadmin/Scripting.py", line 145, in prepare
           prepare_impl(t, cwd, ver, wafdir)
         File "/tmp/node-node-de4o/bin/../lib/node/wafadmin/Scripting.py", line 135, in prepare_impl
           main()
         File "/tmp/node-node-de4o/bin/../lib/node/wafadmin/Scripting.py", line 188, in main
           fun(ctx)
         File "/tmp/node-node-de4o/bin/../lib/node/wafadmin/Scripting.py", line 386, in build
           return build_impl(bld)
         File "/tmp/node-node-de4o/bin/../lib/node/wafadmin/Scripting.py", line 405, in build_impl
           bld.compile()
         File "/tmp/node-node-de4o/bin/../lib/node/wafadmin/Build.py", line 268, in compile
           os.chdir(self.bldnode.abspath())
       OSError: [Errno 2] No such file or directory: '/Users/gaggina/Desktop/socket2/node_modules/socket.io/node_modules/redis/node_modules/hiredis/build'
       make: *** [all] Error 1
       sh: gmake: not found
       npm ERR! hiredis@0.1.14 preinstall: `make || gmake`
       npm ERR! `sh "-c" "make || gmake"` failed with 127
       npm ERR! 
       npm ERR! Failed at the hiredis@0.1.14 preinstall script.
       npm ERR! This is most likely a problem with the hiredis package,
       npm ERR! not with npm itself.
       npm ERR! Tell the author that this fails on your system:
       npm ERR!     make || gmake
       npm ERR! You can get their info via:
       npm ERR!     npm owner ls hiredis
       npm ERR! There is likely additional logging output above.

       npm ERR! System Linux 2.6.32-343-ec2
       npm ERR! command "/tmp/node-node-de4o/bin/node" "/tmp/node-npm-Xp2N/cli.js" "rebuild"
       npm ERR! cwd /tmp/build_3gzqoe2cjr234
       npm ERR! node -v v0.8.3
       npm ERR! npm -v 1.1.41
       npm ERR! code ELIFECYCLE
       npm ERR! stack Error: hiredis@0.1.14 preinstall: `make || gmake`
       npm ERR! stack `sh "-c" "make || gmake"` failed with 127
       npm ERR! stack     at ChildProcess.<anonymous> (/tmp/node-npm-Xp2N/lib/utils/exec.js:56:20)
       npm ERR! stack     at ChildProcess.EventEmitter.emit (events.js:91:17)
       npm ERR! stack     at Process._handle.onexit (child_process.js:674:10)
       npm ERR! 
       npm ERR! Additional logging details can be found in:
       npm ERR!     /tmp/build_3gzqoe2cjr234/npm-debug.log
       npm ERR! not ok code 0
 !     Failed to rebuild dependencies with npm
 !     Heroku push rejected, failed to compile Node.js app

To git@heroku.com:boiling-beyond-2052.git
 ! [remote rejected] master -> master (pre-receive hook declined)
error: failed to push some refs to 'git@heroku.com:boiling-beyond-2052.git'
[gaggina:~/Desktop/socket2]→cat /tmp/build_3gzqoe2cjr234/npm-debug.log
cat: /tmp/build_3gzqoe2cjr234/npm-debug.log: No such file or directory

【问题讨论】:

可能是您推送到heroku的一些文件指的是路径“/Users/gaggina/Desktop/socket2/node_modules/socket.io/node_modules/redis/node_modules/hiredis/build”尝试找到那个文件。 【参考方案1】:

Heroku 未能构建hiredis。原因是hiredis(node.js 模块)依赖于hiredis(C 库),它需要GNU make,这在你的slug 上不可用。

问题是,为什么 NPM 尝试构建不在您的依赖项中的hiredis?

您应该检查是否有hiredis 出现在您的项目中(grep -R hiredis .)。另一种可能性是 Heroku 正在尝试为所有 node.js 应用程序提供 redis ?

我会咨询 Heroku 的支持。

【讨论】:

【参考方案2】:

我在搞乱heroku时遇到了同样的问题。所有的路径似乎都在那里。运行 Ubuntu 12.04,我什至为 gmake 创建了一个符号链接。没有什么能解决它。 我最终尝试了这个

"dependencies": 
  "express": "3.0.0rc2",
  "ejs": "*",
  "stylus": "*",
  "mongojs": "0.4.3"
,
"bundledDependencies": 
  "socket.io": "*"
,

而不是

"dependencies": 
  "express": "3.0.0rc2",
  "ejs": "*",
  "stylus": "*",
  "mongojs": "0.4.3",
  "socket.io": "*"
,

这似乎解决了它并使 heroku 高兴。如果您找到合适的解决方案,请告诉我。

【讨论】:

【参考方案3】:

我已经在deploy nodejs to heroku 上发布了一个类似问题的答案,这似乎已经解决了这个问题。

基本上尝试使用 socket.io 0.9.6 而不是 0.9.8。

【讨论】:

【参考方案4】:

WAAAAAAAIT 一秒钟。

我在运行grep -R hiredis . 后注意到./node_modules/socket.io/node_modules 目录下出现了redis 文件夹。显然,socket.io 现在内置了 redis,这与 Heroku 混淆了。

尝试从socket.ionode_modules 文件夹中删除redis 文件夹。我通过完全删除 socket.io 解决了这个问题。

【讨论】:

【参考方案5】:

当您在本地运行 npm install 时,hiredis 会创建一些具有特定于您机器的路径的文件。当你将这些缓存的依赖推送到 Heroku 时,构建会失败。

Waf: Entering directory `/Users/gaggina/Desktop/socket2/node_modules/socket.io/node_modules/redis/node_modules/hiredis/build'

您可以通过从源代码管理中删除 node_modules/hiredis 目录,让 Heroku 重新编译它来解决这个问题:

git rm -rf node_modules/hiredis
rm -rf node_modules/hiredis
echo "node_modules/hiredis" >> .gitignore

【讨论】:

【参考方案6】:

我做了一些谷歌搜索,但找不到解决方案,但我尝试如下更改我的代码,它开始工作......

var express = require('express'),
    app = express(), 
    server = require('http').createServer(app),
    io = require('socket.io').listen(server),

var port = process.env.PORT || 5000; // Use the port that Heroku provides or default to 5000

server.listen(port, function() 
);

io.configure(function () 
    io.set("transports", ["xhr-polling"]);
    io.set("polling duration", 10);
    io.set("log level", 1);
);

如果您遇到同样的问题但仍然没有成功,请告诉我..

【讨论】:

以上是关于Heroku 上的 socket.io + node.js的主要内容,如果未能解决你的问题,请参考以下文章

Heroku上的Socket.io“会话ID未知”错误

Heroku + socket.io 广播上的多个测功机

Chrome 中的“意外响应代码:503”。也许与heroku上的socket.io有关?

Heroku 上的 Socket.io 聊天应用程序与 node.js

Socket.io + NodeJS 不适用于 Heroku

使用 socket.io-redis 和 RedisToGo 在 Heroku 上扩展到 2+ dynos