我有一个weblogic域,
然后我发现myrealm中的用户不见了。 我是weblogic和WLST的新手。似乎WLST没有将用户/密码导出到模板? 如何使用WLST预先配置安全领域用户/密码?所以我不需要手动创建很多用户/密码?
答案 0 :(得分:1)
由于Weblogic嵌入式LDAP的特性,您必须在在线模式下执行此操作。如果你去,可以通过控制台执行此操作:
Home >Summary of Security Realms >myrealm >Users and Groups>Migration tab
执行域名导出并导入新域名。
这可以通过以下网站完成:
connect('weblogic','weblogic', 't3://origDomain:7001')
domainRuntime()
cd('/DomainServices/DomainRuntimeService/DomainConfiguration/FirstDomain/SecurityConfiguration/FirstDomain/DefaultRealm/myrealm/AuthenticationProviders/DefaultAuthenticator')
cmo.exportData('DefaultAtn','/tmp/your.ldif', Properties())
connect('weblogic','weblogic', 't3://newDomain:8001')
domainRuntime()
cd('/DomainServices/DomainRuntimeService/DomainConfiguration/SecondDomain/SecurityConfiguration/SecondDomain/DefaultRealm/myrealm/AuthenticationProviders/DefaultAuthenticator')
cmo.importData('DefaultAtn','/app/userdata/abc.ldif', Properties())