1

安装 RMfI (HF10) 后,在我的浏览器中收到以下错误消息:

HTTP Status 404 - /SASLogon/index.jsp
--------------------------------------------------------------------------------
type Status report
message /SASLogon/index.jsp
description The requested resource (/SASLogon/index.jsp) is not available.
--------------------------------------------------------------------------------
JBossWeb/2.0.1.GA

该 URL 与以前没有变化,所以确定这不是问题。查看服务,我可以看到 Jboss 服务器已“启动”。上述原因可能是什么?

编辑:我确实注意到 SAS Remote Server 不断停止的服务:

在此处输入图像描述

编辑 2:在 C:\jboss-4.2.3.GA\server\SASServer1\log\server.log 中出现以下错误:

2013-05-17 12:53:54,836 INFO  [STDOUT] ERROR [main] - Context initialization failed
org.springframework.beans.factory.access.BootstrapException: Unable to return specified BeanFactory instance: factory key [config.context], from group with resource name [classpath*:beanRefContext.xml]; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'config.context' defined in URL [jar:file:/C:/jboss-4.2.3.GA/server/SASServer1/deploy_sas/sas.shared9.2.ear/sas.shared.apps.war/WEB-INF/lib/sas.svcs.cluster.jar!/beanRefContext.xml]: Instantiation of bean failed; nested exception is org.springframework.beans.BeanInstantiationException: Could not instantiate bean class [org.springframework.context.support.ClassPathXmlApplicationContext]: Constructor threw exception; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sas.svcs.cache' defined in class path resource [config-context.xml]: Instantiation of bean failed; nested exception is org.springframework.beans.BeanInstantiationException: Could not instantiate bean class [com.sas.svcs.cluster.SimpleCache]: Constructor threw exception; nested exception is java.lang.IllegalStateException: Unable to start distributed cache.
4

2 回答 2

0

您的部署失败,因为依赖 spring 注入的 beancom.sas.svcs.cluster.SimpleCache无法初始化。根本原因似乎是Unable to start distributed cache.

查找此问题的 SAS 文档,根本原因似乎是JDK 1.5 build SR9-SSUAIX 服务器上的特定原因。要解决它,您需要切换到JDK 1.5 SR5a构建。

于 2013-05-17T15:52:08.703 回答
0

你是管理员安装的吗?安装说明摘录:

注意:如果您的 Windows 操作系统是 Windows Vista、Windows 7 或 Windows Server 2008,则可能需要使用“以管理员身份运行”选项进行安装。在开始菜单的附件文件夹中,右键单击命令提示符快捷方式,然后选择“以管理员身份运行”选项。接下来使用 -alwaysoverwrite 选项执行 F90009x6.exe

于 2013-05-16T21:30:16.100 回答