我在AWS EC2上安装了mongodb,在创建新架构时遇到此错误-
MongoError: 28: No space left on device
有趣的是,其他create(insert)查询工作正常。我什至删除了2-3个收藏夹,以检查存储是否是真正的问题,但没有用。
下面是Im用于创建文档的Node.js代码(如果不存在则创建集合)。
// Create a doc
NewCollection.create({version: 1, status: true, text: 'Sample text to insert'})
.then(() => {
console.log('OK');
})
.catch(err => {
console.log(err);
})
规格- MongoDB 4.0,总大小小于 900MB ,Ubuntu 18-64位