当尝试在批处理文件中设置 Glassfish 配置时,有一个命令在直接从命令行运行时有效 - 但在放入 Windows 批处理文件时失败。
命令:
call asadmin.bat create-auth-realm --classname com.sun.enterprise.security.auth.realm.ldap.LDAPRealm --property jaas-context="ldapRealm":directory="ldap\://domain.com\:389:base-dn=dc\=domain,dc\=com:group-base-dn=ou\=Groups,ou\=domain,dc\=com":search-bind-dn="CN\=username,OU\=Accounts,OU\=domain,DC\=com":search-bind-password="password":search-filter="(&(objectCategory\=user)(sAMAccountName\=%s))":group-search-filter="(&(objectCategory\=group)(member\=%d))" a-realm
当在命令行上完全按照上面运行时,它会以响应完成:
Command create-auth-realm executed successfully.
当完全按照上述方式从批处理文件运行时,它会失败并显示以下响应:
(member\ was unexpected at this time.
请注意,某些等号字符的转义是针对 Glassfish,而不是尝试转义 Windows 批处理命令的字符。
我的猜测是,当在批处理文件中运行时,批处理文件将某些字符视为特殊字符。我试过转义括号但没有运气。
此命令如何在批处理文件中工作!?