debian - cloud9 ide segmentation fault -
i launching cloud9 ide on debian wheezy command: node local/cloud9/bin/cloud9.js --ip <ip> -w project/ , output is: info - socket.io started ajax.org cloud9 ide version 0.5.1 project root is: project/ point browser http://<ip>:3000
but whenever hit url in browser, crashes :
segmentation fault
leaving on browser
loading...
can hints?
segmentation fault on node happens when trying load binary components compiled older different version of node. either delete .node
files
or if running cloud9 version https://github.com/c9/core reinstall node modules with
rm -rf node_modules/ ; git checkout -- node_modules/ ; rm -rf node_modules/ --production ;
Comments
Post a Comment