Trouble configuration / building couchnode on ubuntu

I installed both nodejs and couchbase module via npm. couchbase is also installed, and I can access the backend through a browser.

The same server.js file works in windows.

I installed python 2.7. Did I miss something?

Im getting the error:

marcel@servermarcel:~/game$ nodejs server.js

/home/marcel/game/node_modules/couchbase/lib/binding.js:156
  throw new Error('Failed to locate couchnode native binding' +
        ^
Error: Failed to locate couchnode native binding (maybe check builderror.log!)
    at Object.<anonymous> (/home/marcel/game/node_modules/couchbase/lib/binding.js:156:9)
    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 Module.require (module.js:364:17)
    at require (module.js:380:17)
    at Object.<anonymous> (/home/marcel/game/node_modules/couchbase/lib/couchbase.js:3:15)
    at Module._compile (module.js:456:26)
    at Object.Module._extensions..js (module.js:474:10)

when I look in builderror.log, I see:

$all to 'node -e "require('nan')"' returned exit status 1.le trying to load binding.gyp

gyp ERR! configure error
gyp ERR! stack Error: `gyp` failed with exit code: 1
gyp ERR! stack     at ChildProcess.onCpExit (/usr/share/node-gyp/lib/configure.$
gyp ERR! stack     at ChildProcess.EventEmitter.emit (events.js:98:17)
gyp ERR! stack     at Process.ChildProcess._handle.onexit (child_process.js:797$
gyp ERR! System Linux 3.13.0-36-generic
gyp ERR! command "nodejs" "/usr/bin/node-gyp" "rebuild"
gyp ERR! cwd /home/marcel/game/node_modules/couchbase
gyp ERR! node -v v0.10.25
gyp ERR! node-gyp -v v0.10.10
gyp ERR! not ok
+4
source share
2 answers

I had a similar problem. Turns out couchbase is trying to run

node -e "require(\'nan\')"

However, on Ubuntu 14.04 with node installed via apt-get it nodejs. I changed it to

nodejs -e "require(\'nan\')"

in the node_modules/couchbase/binding.gypfile (below), then launched npm rebuild(from my project directory), and it worked.

+4

, node -e β†’ nodejs -e , , . // node_modules/couchbase/builderror.log python a > 2,5 < 3,0 ( ). , python 3.4.x 2.7.9. !!

0

All Articles