首页 文章

启动Cosmos-GUI

提问于
浏览
3

我想安装Cosmos . 我已经用一个节点安装了Apache-Hadoop 2.6,我的下一步是安装cosmos-gui .

所以我按照官方安装指南 - https://github.com/telefonicaid/fiware-cosmos/blob/develop/cosmos-gui/README.md#installationnpm start 命令不起作用 .

错误:

fs.js:432
  return binding.open(pathModule._makeLong(path), stringToFlags(flags), mode);
                 ^
Error: ENOENT, no such file or directory ''
    at Object.fs.openSync (fs.js:432:18)
    at Object.fs.readFileSync (fs.js:289:15)
    at Object.<anonymous> (/home/cosmos-gui/fiware-cosmos/cosmos-gui/src/app.js:55:13)
    at Module._compile (module.js:456:26)
    at Object.Module._extensions..js (module.js:474:10)
    at Module.load (module.js:356:32)
    at Function.Module._load (module.js:312:12)
    at Function.Module.runMain (module.js:497:10)
    at startup (node.js:119:16)
    at node.js:906:3

npm ERR! cosmos-gui@0.1.0 start: `node ./src/app.js`
npm ERR! Exit status 8
npm ERR! 
npm ERR! Failed at the cosmos-gui@0.1.0 start script.
npm ERR! This is most likely a problem with the cosmos-gui package,
npm ERR! not with npm itself.
npm ERR! Tell the author that this fails on your system:
npm ERR!     node ./src/app.js
npm ERR! You can get their info via:
npm ERR!     npm owner ls cosmos-gui
npm ERR! There is likely additional logging output above.
npm ERR! System Linux 3.10.0-229.7.2.el7.x86_64
npm ERR! command "/usr/local/bin/node" "/usr/local/bin/npm" "start"
npm ERR! cwd /home/cosmos-gui/fiware-cosmos/cosmos-gui
npm ERR! node -v v0.10.30
npm ERR! npm -v 1.4.21
npm ERR! code ELIFECYCLE
npm ERR! 
npm ERR! Additional logging details can be found in:
npm ERR!     /home/cosmos-gui/fiware-cosmos/cosmos-gui/npm-debug.log
npm ERR! not ok code 0

我的 conf/cosmos-gui.json

{
  "gui": {
    "port": 443,
    "private_key_file": "",
    "certificate_file": ""
  },
  "clusters": {
    "storage": {
      "endpoint": "127.0.0.1",
      "user": "hadoop",
      "private_key": "12345"
    },
    "computing": {
      "endpoint": "127.0.0.1",
      "user": "hadoop",
      "private_key": "12345"
    }
  },
  "hdfs": {
    "quota": 5,
    "superuser": "hdfs"
  },
  "oauth2": {
    "idmURL": "https://account.lab.fiware.org",
    "client_id": "fromFiLab",
    "client_secret": "fromFiLab",
    "callbackURL": "http://cosmos.lab.fi-ware.org/auth",
    "response_type": "code"
  },
  "mysql": {
    "host": "127.0.0.1",
    "port": 3306,
    "user": "root",
    "password": "12345",
    "database": "cosmos"
  },
  "users_blacklist": [
    "root", "admin", "sysadmin", "localadmin"
  ],
  "log": {
    "file_name": "/var/log/cosmos/cosmos-gui/cosmos-gui.log",
    "date_pattern": ".dd-MM-yyyy"
  }
}

1 回答

  • 2

    正如安装指南所说:

    private_key_file:包含用于加密与客户端通信的私钥的文件名 . certificate_file:包含服务器用于向客户端发送上述私钥的公共副本的自签名X509证书的文件名(参见附录B) .

    因此,您必须配置 private_key_filecertificate_file 配置参数 . 您可以按照此link了解如何创建密钥和自签名证书 .

    EDIT 1

    一旦配置了上述文件,用户将遇到与作为非root用户的1024下的端口绑定相关的错误 .

    当然,这可以通过配置超过1024的端口来修复;或设置此功能: setcap 'cap_net_bind_service=+ep' /path/to/program ;或进行IP转发(首选方法) .

    在1024以上的端口启动GUI,例如 9090 ,并运行此命令以配置IP转发:

    $ iptables -A PREROUTING -t nat -p tcp --dport 443 -j REDIRECT --to-port 9090
    

    然后,您可以在浏览器中键入 https://<host_running_the_gui> ,流量将自动转发到真实的侦听端口(例如, 9090 ) .

相关问题