本文整理汇总了Python中dsadmin.DSAdmin.setLogLevel方法的典型用法代码示例。如果您正苦于以下问题:Python DSAdmin.setLogLevel方法的具体用法?Python DSAdmin.setLogLevel怎么用?Python DSAdmin.setLogLevel使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类dsadmin.DSAdmin
的用法示例。
在下文中一共展示了DSAdmin.setLogLevel方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: DSAdmin
# 需要导入模块: from dsadmin import DSAdmin [as 别名]
# 或者: from dsadmin.DSAdmin import setLogLevel [as 别名]
rootpw1 = 'password'
rootpw2 = rootpw1
basedn = "dc=example,dc=com"
m1replargs = {
'suffix': basedn,
'bename': "userRoot",
'binddn': "cn=replrepl,cn=config",
'bindcn': "replrepl",
'bindpw': "replrepl",
'bindmethod': 'SASL/DIGEST-MD5',
'log' : False
}
m1 = DSAdmin(host1, port1, root1, rootpw1)
m1.replicaSetupAll(m1replargs)
m2replargs = m1replargs
m2 = DSAdmin(host2, port2, root2, rootpw2)
m2.replicaSetupAll(m2replargs)
print "create agreements and init consumers"
agmtm1tom2 = m1.setupAgreement(m2, m1replargs)
time.sleep(5)
m1.setLogLevel(1024)
m1.startReplication_async(agmtm1tom2)
print "waiting for init to finish"
time.sleep(5)
m1.waitForReplInit(agmtm1tom2)
agmtm2tom1 = m2.setupAgreement(m1, m2replargs)