0

js社区,

我设法在我的亚马逊 EC2 Linux 发行版上安装了 cloud9,但我很难尝试访问它。

我像这样启动 cloud9 bin/cloud9.sh -l 0.0.0.0 -p 3131 它开始

然后我使用以下网址访问云 9 http://ec2-XX-XXX-XX-XXX.eu-west-1.compute.amazonaws.com:3131/

它给了我以下错误

IDE server initialized. Listening on 0.0.0.0:3131
path.exists is now called `fs.exists`.

node.js:0
// Copyright Joyent, Inc. and other Node contributors.
^
RangeError: Maximum call stack size exceeded

我还在安全组中为端口 3131 使用自定义 tcp 打开端口。

我是否缺少一些配置文件或任何东西?

4

1 回答 1

1

在您上面的评论中,您表明您正在使用 node.js v0.8.2

但是,根据安装自述文件,cloud9 将无法在 node.js v0.8.xx 上运行:https ://github.com/ajaxorg/cloud9/blob/master/README.md

从这个 Github 问题页面, cloud9的 node.js 推荐版本似乎是 0.6.1.9:https://github.com/ajaxorg/cloud9/issues/1896

于 2012-07-12T01:47:41.380 回答