On Fri, Jun 14, 2013 at 06:38:42PM -0300, Marcelo Henrique Gomes wrote: > Hello, > > I run the command /dspace/bin/dspace stats-util -m -i -f and happen this > error > > INFO [main] (DSpaceKernelInit.java:52) - Created new kernel: > DSpaceKernel:org.dspace:name=57919428-707c-4ff1-ad38-0392890574be,type=DSpaceKernel:lastLoad=null:loadTime=0:running=false:kernel=null > INFO [main] (ConfigurationManager.java:1224) - Loading from classloader: > file:/dspace/config/dspace.cfg > Failure during filter init: ConfigurationManager: Too many levels of > recursion in configuration property variable interpolation,
This is the problem ^^
Your config/dspace.cfg file probably has a property in it which refers
back to itself for its value.
> property=db.poolname:java.lang.IllegalArgumentException:
^^^^^^^^^^^^^^^^^^^^
This is the property with the problem. You probably have something
like:
db.poolname = ${db.poolname}
If you want to give the database connection pool a specific name,
replace ${db.poolname} with that name. Otherwise, comment the line
out:
#db.poolname = ${db.poolname}
How to decide? I've never used this property. I expect that few
sites have. If you know that you need to do this, do; if you don't
know why you would want to do this, comment it out.
--
Mark H. Wood, Lead System Programmer [email protected]
Machines should not be friendly. Machines should be obedient.
signature.asc
Description: Digital signature
------------------------------------------------------------------------------ This SF.net email is sponsored by Windows: Build for Windows Store. http://p.sf.net/sfu/windows-dev2dev
_______________________________________________ DSpace-tech mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/dspace-tech List Etiquette: https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette

