1

I have node 0.10.8 installed in Ubuntu machine.

I tried to install mongoose:

npm install mongoose

But got the following message in terminal:

> kerberos@0.0.2 install /___/node_modules/mongoose/node_modules/mongodb/node_modules/kerberos
> (node-gyp rebuild 2> builderror.log) || (exit 0)

> bson@0.1.8 install /___/node_modules/mongoose/node_modules/mongodb/node_modules/bson
> (node-gyp rebuild 2> builderror.log) || (exit 0)

Whats this error?

JR Galia
  • 17,229
  • 19
  • 92
  • 144
  • Does the install stop after that? If so, check out the contents of the file `/___/node_modules/mongoose/node_modules/mongodb/node_modules/bson/builderror.log`, it should contain more information. – robertklep Jun 18 '13 at 06:36
  • the `buildererror.log` just contain 2 lines: `gyp http GET http://nodejs.org/dist/v0.10.8/node-v0.10.8.tar.gz` `gyp http 200 http://nodejs.org/dist/v0.10.8/node-v0.10.8.tar.gz` – JR Galia Jun 18 '13 at 06:55
  • Sounds like it installed just fine then :) – robertklep Jun 18 '13 at 07:22
  • I got the same problem. Is moongose installed success or failed? I'm scare with some thing hanged like this – Rikky Jul 24 '13 at 11:52
  • the installation was successful though – JR Galia Jul 24 '13 at 12:48

1 Answers1

0

This is not actually an error. If you check the builderror.log files in the bson and kerberos module folders, you'll see that the logs are empty. Try spooling up your MongoDB server instance and launch your Node.JS app. If you have any more error feedback, please post as an edit and I will add more information.

I had the same exact issue. Here is a link to my StackOverflow question.

Community
  • 1
  • 1
Caleb Faruki
  • 2,577
  • 3
  • 30
  • 54