これを挿入に使用しています:
import pymongo
import sys
def main():
connection = pymongo.Connection("mongodb://localhost", safe=True)
db = connection.m101
people = db.people
person ={'name': 'Barack Obama', 'role':'President',
'address':{'address1': 'The White House',
'street': '1600 Pensylvania Avenue',
'state':'DC',
'city':'Washington'},
'interests':['government', 'basketball', 'the middle east']
}
people.insert(person)
そして、書き込みmongo
コマンドを使用しようとすると、
Could not connect to server 127.0.0.1:27017 src/mongo
shell mongo.js:91
exception: connection failed
何ができるでしょうか?私は彼らのチュートリアルに従っています!