在Tomcat 7中运行iRods Rest

时间:2015-11-16 15:00:56

标签: maven tomcat ubuntu tomcat7

我试图在Tomcat 7中运行iRods Rest。唯一的问题是当我在经理页面中时,我有应用程序列表。所有这些都运行iRods Rest,如果我试图推动"开始"我明白了:

FAIL - Application at context path /irods-rest could not be started

这是我遵循的步骤:

告诉我您是否需要更多信息或问题太具体。

1 个答案:

答案 0 :(得分:1)

我收到同样的错误,但后来我查看了/var/log/tomcat/localhost.x-x-x.log(CentOS 7)中包含的日志:

java.io.FileNotFoundException: /etc/irods-ext/irods-rest.properties (No such file or directory)

所以我创建了目录和属性文件:

mkdir /etc/irods-ext
vi /etc/irods-ext/irods-rest.properties

并添加了以下内容(在https://github.com/DICE-UNC/irods-rest/blob/master/docs/iRODSRESTAPIDocumentation.pdf中找到了模板):

irods.host=localhost
irods.port=1247
irods.zone=tempZone
utilize.packing.streams=true
auth.type=STANDARD
default.storage.resource=
web.interface.url=
cors.allow=true

现在,从Tomcat管理器页面启动irods-rest应用程序后,一切似乎都在工作。