OBIEE Agent发邮件不发邮件
OBIEE Agent to send mail doesn't mail
我正在尝试通过 OBIEE 代理进行设置。我在EM中配置了smtp服务器,并通过telnet进行了测试。所以这应该没问题,但如果我是 运行 我的经纪人,我会得到这个:
Eventually succeeded, but encountered and resolved errors...
Number of skipped deliveries: 2 of 3
AgentID: /users/weblogic/testagent
[nQSError: 75027] Failed to open connection to SMTP Server (host localhost; port 25).
它说 'localhost' 但我不明白为什么它没有连接到我的邮件服务器。我能做些什么来解决这个问题?
谢谢!
我的instanceconfig.xml:
<Alerts>
<ScheduleServer ssl="false">localhost:9705</ScheduleServer>
<OfflinePresentationServicesURL>http://10.232.18.95:9704/analytics/saw.dll</OfflinePresentationServicesURL>
</Alerts>
<ActionFramework>
<WorkflowServer>http://10.232.18.95:9704</WorkflowServer>
<WorkflowService>ANALYTICS</WorkflowService>
<WorkflowSystem>obiaftests</WorkflowSystem>
</ActionFramework>
我的schedulerconfig.xml:
<From>Oracle Delivers</From>
<SMTP_Port>25</SMTP_Port>
<SMTP_Server>localhost</SMTP_Server>
<Sender>no-reply@oracle.com</Sender>
执行此操作分为三个步骤:
- 在 Oracle EM 中配置 SMTP 服务器
- 在 OBIEE 中创建代理
- 修改
schedulerconfig.xml
文件(位于 OBI_HOME/user_projects/domains/bi/config/fmwconfig/biconfig/OBISCH)
我没有执行第 3 步,所以 OBIEE 试图通过本地主机发送。您应该将与 EM 中配置的相同的服务器放在这里。
我正在尝试通过 OBIEE 代理进行设置。我在EM中配置了smtp服务器,并通过telnet进行了测试。所以这应该没问题,但如果我是 运行 我的经纪人,我会得到这个:
Eventually succeeded, but encountered and resolved errors... Number of skipped deliveries: 2 of 3 AgentID: /users/weblogic/testagent [nQSError: 75027] Failed to open connection to SMTP Server (host localhost; port 25).
它说 'localhost' 但我不明白为什么它没有连接到我的邮件服务器。我能做些什么来解决这个问题?
谢谢!
我的instanceconfig.xml:
<Alerts>
<ScheduleServer ssl="false">localhost:9705</ScheduleServer>
<OfflinePresentationServicesURL>http://10.232.18.95:9704/analytics/saw.dll</OfflinePresentationServicesURL>
</Alerts>
<ActionFramework>
<WorkflowServer>http://10.232.18.95:9704</WorkflowServer>
<WorkflowService>ANALYTICS</WorkflowService>
<WorkflowSystem>obiaftests</WorkflowSystem>
</ActionFramework>
我的schedulerconfig.xml:
<From>Oracle Delivers</From>
<SMTP_Port>25</SMTP_Port>
<SMTP_Server>localhost</SMTP_Server>
<Sender>no-reply@oracle.com</Sender>
执行此操作分为三个步骤:
- 在 Oracle EM 中配置 SMTP 服务器
- 在 OBIEE 中创建代理
- 修改
schedulerconfig.xml
文件(位于 OBI_HOME/user_projects/domains/bi/config/fmwconfig/biconfig/OBISCH)
我没有执行第 3 步,所以 OBIEE 试图通过本地主机发送。您应该将与 EM 中配置的相同的服务器放在这里。