deployd / deployd

a toolkit for building realtime APIs
http://www.deployd.com
4.98k stars 661 forks source link

Windows 8 installation problem #369

Open epicslapper opened 10 years ago

epicslapper commented 10 years ago

I get starting deployd v0.6.10 mongod Starting mongod +0ms mongod error 1 +16ms mongod killing mongod +0ms

i have node v0.10.28 same result with either mongodb 2.27 and 2.4x

is this an issue with deployd 0.6.10 for windows ?

thanks!

rgolea commented 10 years ago

no... i think it's not supported on windows 8. Don't worry. do a dpd install 'app name'. cd 'app name' dpd

afterwards (when failed) do npm install deployd create a file app.js

//make sure you have mongodb installed or hosted somewhere.

do this inside app.js

http://web.archive.org/web/20140701102659/http://docs.deployd.com/docs/server/as-a-node-module.md

afterwards do node app.js

ericfong commented 9 years ago

I think after this https://github.com/deployd/deployd/pull/449 , dpd will print out

starting deployd v0.8.0-rc.1...
Failed to start MongoDB

Thanks @rgolea that, please double check you have mongod on your $PATH

CezaryDanielNowak commented 9 years ago

You can modify your local $PATH locally, without playing with advanced Windows configuration.

Create run.bat and fill it with:

SET PATH=%PATH%;C:\Program Files\MongoDB 2.6 Standard\bin\
dpd -o -d

deployd should start by run.bat :-)