npm を使用してSails -mongoをインストールし、基本的なSails.jsアプリケーションを実行していますが、ホストが認識されません。
MongoDB はデフォルトのポート 27017 で稼働していますが、モデルを生成した後、アプリケーションを実行しようとすると次のエラーが発生します。
これが私のadapter.jsです。ノードv0.10.0を実行しており、v0.8.895を帆走しています
// Configure installed adapters
// If you define an attribute in your model definition,
// it will override anything from this global config.
module.exports.adapters = {
// If you leave the adapter config unspecified
// in a model definition, 'default' will be used.
'default': 'mongo',
// In-memory adapter for DEVELOPMENT ONLY
// (data is NOT preserved when the server shuts down)
memory: {
module: 'sails-dirty',
inMemory: true
},
// Persistent adapter for DEVELOPMENT ONLY
// (data IS preserved when the server shuts down)
// PLEASE NOTE: disk adapter not compatible with node v0.10.0 currently
// because of limitations in node-dirty
// See https://github.com/felixge/node-dirty/issues/34
// disk: {
// module: 'sails-dirty',
// filePath: './.tmp/dirty.db',
// inMemory: false
// },
mongo: {
module : 'sails-mongo',
url : 'mongodb://Chris:DBPASSWORD@localhost:27017/localHostTestDB'
}
};
管理者の役割で localHostTestDB にユーザーを既に追加しました。
どんな助けでも感謝します。ありがとう!