RELATEED CONSULTING
相关咨询
选择下列产品马上在线沟通
服务时间:8:30-17:00
你可能遇到了下面的问题
关闭右侧工具栏

新闻中心

这里有您想知道的互联网营销解决方案
Python删除mongodb数据库和用户,查看Python
#!/usr/bin/env python
#coding:utf-8

from pymongo import MongoClient

client = MongoClient('192.168.6.243', 27017)
db=client['admin']
db.authenticate('root','123456')

#help(db) #查看python操作MongoDB的方法

for i in range(2,900):
    try:
        db = client['s%s' % i]
        db.command("dropUser", "Tany")
        db.command("dropDatabase")
    except:
        print 'not db'

网站栏目:Python删除mongodb数据库和用户,查看Python
当前地址:http://scpingwu.com/article/gjohod.html