Mongo waiting on 27017 even after reinstall

The waiting for connections message in the console output indicates that the mongod.exe process is running successfully. http://docs.mongodb.org/manual/tutorial/install-mongodb-on-windows/?_ga=1.82566930.525730850.1428016333 Next you need to connect to MongoDB through mongo.exe shell using another command promt. As soon as you are done with that, the waiting message in first console would change to connection accepted. Hope that helps 🙂

Signtool error: No certificates were found that met all given criteria with a Windows Store App?

When getting this error through Visual Studio it was because there was a signing certificate setup to match the computer it was originally developed on. You can check this by going to the project properties > signing tab and checking the certificate details. You can uncheck “Sign the ClickOnce manifests” to disable signing. If you … Read more

Javac is not found

As far as I can see you have the JRE in your PATH, but not the JDK. From a command prompt try this: Then try javac again – if this works you’ll need to permanently modify your environment variables to have PATH include the JDK too.

Where/how can I download (and install) the Microsoft.Jet.OLEDB.4.0 for Windows 8, 64 bit?

I’ve got a 32 bit .net 2.0 app that uses the Jet OLEDB 4.0. It runs fin on Windows 8 32 bit, but not on the 64 bit. on 64 bit I’m getting an error: ‘Microsoft.Jet.OLEDB.4.0’ provider is not registered on the local machine. at System.Data.OleDb.OleDbServicesWrapper.GetDataSource(OleDbConnectionString constr, DataSourceWrapper& datasrcWrapper) I am aware that you can’t … Read more