cancel
Showing results for 
Search instead for 
Did you mean: 

HTTP Status 500 Error, Corrupt Installation?

anuvatec
Champ in-the-making
Champ in-the-making
Running Alfresco Community Edition 3.2r2 on Ubuntu 8.04.3 Server Edition as a VM in VMware ESXi 3.5u4. I had some stability issues lately with Ubuntu/the VM crashing relatively frequently. I assume the HTTP Status 500 error I'm now getting after launching Alfresco and going to Share (…:8080/share) in the browser is related to the OS crashes. Maybe my Alfresco installation got corrupted? Anywho, below is some error details, how do I resolve this error? TIA

type Exception report

message

description The server encountered an internal error () that prevented it from fulfilling this request.

exception

javax.servlet.ServletException: org.alfresco.error.AlfrescoRuntimeException: 01230001 Unable to retrieve object: site-index of type: page

root cause

org.alfresco.error.AlfrescoRuntimeException: 01230001 Unable to retrieve object: site-index of type: page

root cause

org.alfresco.web.framework.exception.ModelObjectPersisterException: Error loading object id: site-index from persister id: RemoteStore_alfresco/site-data/pages_page

root cause

org.alfresco.web.framework.exception.ModelObjectPersisterException: Failure to load model object for path: site-index.xml

root cause

java.io.IOException: Unable to test document path: site-index.xml in remote store: alfresco due to error: 404
6 REPLIES 6

sselvan
Champ in-the-making
Champ in-the-making
Do you have a port other than 8080? If so, you are possible getting this problem.

At any case, solution this problem would be -

Go to <ALF_HOME>/tomcat/shared/classes/alfresco/web-extension/webscript-framework-config-custom.xml and uncomment the following and also fix the endpoint URLs -

   <config evaluator="string-compare" condition="Remote">
      <remote>

         <endpoint>
            <id>alfresco-noauth</id>
            <name>Alfresco - unauthenticated access</name>
            <description>Access to Alfresco Repository WebScripts that do not require authentication</description>
            <connector-id>alfresco</connector-id>
            <endpoint-url>http://localhost:8081/alfresco/s</endpoint-url>
            <identity>none</identity>
         </endpoint>

         <endpoint>
            <id>alfresco</id>
            <name>Alfresco - user access</name>
            <description>Access to Alfresco Repository WebScripts that require user authentication</description>
            <connector-id>alfresco</connector-id>
            <endpoint-url>http://localhost:8081/alfresco/s</endpoint-url>
            <identity>user</identity>
         </endpoint>

         <endpoint>
            <id>alfresco-feed</id>
            <name>Alfresco Feed</name>
            <description>Alfresco Feed - supports basic HTTP authentication</description>
            <connector-id>http</connector-id>
            <endpoint-url>http://localhost:8081/alfresco/s</endpoint-url>
            <basic-auth>true</basic-auth>
            <identity>user</identity>
         </endpoint>
         
      </remote>
   </config>

By the way, if you don't have the file in web-extension directory, get it from WEB-INF/classes/alfresco directory.

If this post was helpful, please click "Yes" on the right side of this post.

zaizi
Champ in-the-making
Champ in-the-making
500 error indicates Alfresco did not start up correctly. Check the alfresco.log file for start up log which will indicate why Alfresco did not start up correctly. Paste the logs here.

anuvatec
Champ in-the-making
Champ in-the-making
Yeah, I'm getting the port already in use yet I restarted the machine and this is my first time starting the Alfresco service. I used lsof -i and netstat –listen there's no service using port 8080. The only thing I can think of that may have caused Alfresco to not start/run all of a sudden is the nightly backup script I recently created (linux shell script - I'm simply issuing the "alfresco.sh stop" command, backing up database and alf_data folder, then "alfresco.sh start" when done). That's why I suspect corruption, bad starting/stopping during testing of backup script.

Here's my log file:


02:00:11,027 INFO  [org.alfresco.config.JBossEnabledWebApplicationContext] Closing org.alfresco.config.JBossEnabledWebApplicationContext@4f0187: display name [Root WebApplicationContext]; startup date [Thu Mar 04 02:05:49 PST 2010]; root of context hierarchy
02:03:24,953 INFO  [org.alfresco.config.JndiPropertiesFactoryBean] Loading properties file from class path resource [alfresco/repository.properties]
02:03:24,981 INFO  [org.alfresco.config.JndiPropertiesFactoryBean] Loading properties file from class path resource [alfresco/domain/transaction.properties]
02:03:24,997 INFO  [org.alfresco.config.JndiPropertiesFactoryBean] Loading properties file from URL [file:/opt/alfresco/tomcat/shared/classes/alfresco-global.properties]
02:03:26,203 INFO  [org.alfresco.config.JndiPropertyPlaceholderConfigurer] Loading properties file from class path resource [alfresco/alfresco-shared.properties]
02:05:30,657 ERROR [org.springframework.web.context.ContextLoader] Context initialization failed
org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'avmRemoteService' defined in class path resource [alfresco/remote-services-context.xml]: Invocation of init method failed; nested exception is java.rmi.server.ExportException: Port already in use: 50501; nested exception is:
   java.net.BindException: Address already in use
Caused by: java.rmi.server.ExportException: Port already in use: 50501; nested exception is:
   java.net.BindException: Address already in use
   at sun.rmi.transport.tcp.TCPTransport.listen(TCPTransport.java:310)
   at sun.rmi.transport.tcp.TCPTransport.exportObject(TCPTransport.java:218)
   at sun.rmi.transport.tcp.TCPEndpoint.exportObject(TCPEndpoint.java:393)
   at sun.rmi.transport.LiveRef.exportObject(LiveRef.java:129)
   at sun.rmi.server.UnicastServerRef.exportObject(UnicastServerRef.java:190)
   at java.rmi.server.UnicastRemoteObject.exportObject(UnicastRemoteObject.java:293)
   at java.rmi.server.UnicastRemoteObject.exportObject(UnicastRemoteObject.java:235)
   at org.springframework.remoting.rmi.RmiServiceExporter.prepare(RmiServiceExporter.java:280)
   at org.springframework.remoting.rmi.RmiServiceExporter.afterPropertiesSet(RmiServiceExporter.java:227)
   at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1203)
   at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1172)
   at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:427)
   at org.springframework.beans.factory.support.AbstractBeanFactory$1.getObject(AbstractBeanFactory.java:249)
   at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:155)
   at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:246)
   at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:160)
   at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:291)
   at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:352)
   at org.springframework.web.context.ContextLoader.createWebApplicationContext(ContextLoader.java:246)
   at org.springframework.web.context.ContextLoader.initWebApplicationContext(ContextLoader.java:189)
   at org.springframework.web.context.ContextLoaderListener.contextInitialized(ContextLoaderListener.java:49)
   at org.alfresco.web.app.ContextLoaderListener.contextInitialized(ContextLoaderListener.java:69)
   at org.apache.catalina.core.StandardContext.listenerStart(StandardContext.java:3843)
   at org.apache.catalina.core.StandardContext.start(StandardContext.java:4342)
   at org.apache.catalina.core.ContainerBase.addChildInternal(ContainerBase.java:791)
   at org.apache.catalina.core.ContainerBase.addChild(ContainerBase.java:771)
   at org.apache.catalina.core.StandardHost.addChild(StandardHost.java:525)
   at org.apache.catalina.startup.HostConfig.deployDescriptor(HostConfig.java:627)
   at org.apache.catalina.startup.HostConfig.deployDescriptors(HostConfig.java:553)
   at org.apache.catalina.startup.HostConfig.deployApps(HostConfig.java:488)
   at org.apache.catalina.startup.HostConfig.start(HostConfig.java:1149)
   at org.apache.catalina.startup.HostConfig.lifecycleEvent(HostConfig.java:311)
   at org.apache.catalina.util.LifecycleSupport.fireLifecycleEvent(LifecycleSupport.java:117)
   at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1053)
   at org.apache.catalina.core.StandardHost.start(StandardHost.java:719)
   at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1045)
   at org.apache.catalina.core.StandardEngine.start(StandardEngine.java:443)
   at org.apache.catalina.core.StandardService.start(StandardService.java:516)
   at org.apache.catalina.core.StandardServer.start(StandardServer.java:710)
   at org.apache.catalina.startup.Catalina.start(Catalina.java:578)
   at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
   at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
   at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
   at java.lang.reflect.Method.invoke(Method.java:597)
   at org.apache.catalina.startup.Bootstrap.start(Bootstrap.java:288)
   at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:413)
Caused by: java.net.BindException: Address already in use
   at java.net.PlainSocketImpl.socketBind(Native Method)
   at java.net.PlainSocketImpl.bind(PlainSocketImpl.java:365)
   at java.net.ServerSocket.bind(ServerSocket.java:319)
   at java.net.ServerSocket.<init>(ServerSocket.java:185)
   at java.net.ServerSocket.<init>(ServerSocket.java:97)
   at sun.rmi.transport.proxy.RMIDirectSocketFactory.createServerSocket(RMIDirectSocketFactory.java:27)
   at sun.rmi.transport.proxy.RMIMasterSocketFactory.createServerSocket(RMIMasterSocketFactory.java:333)
   at sun.rmi.transport.tcp.TCPEndpoint.newServerSocket(TCPEndpoint.java:649)
   at sun.rmi.transport.tcp.TCPTransport.listen(TCPTransport.java:299)
   … 45 more
02:06:04,312 INFO  [org.alfresco.web.site.FrameworkHelper] Successfully Initialized Web Framework
02:06:13,580 INFO  [org.alfresco.config.JBossEnabledWebApplicationContext] Refreshing org.alfresco.config.JBossEnabledWebApplicationContext@1886fb3: display name [Root WebApplicationContext]; startup date [Fri Mar 05 02:06:13 PST 2010]; root of context hierarchy
02:06:15,871 INFO  [org.alfresco.config.JBossEnabledWebApplicationContext] Bean factory for application context [org.alfresco.config.JBossEnabledWebApplicationContext@1886fb3]: org.springframework.beans.factory.support.DefaultListableBeanFactory@1c9d0e1
02:06:27,904 INFO  [org.alfresco.web.scripts.DeclarativeRegistry] Registered 22 Web Scripts (+0 failed), 24 URLs
02:06:28,020 INFO  [org.alfresco.web.scripts.AbstractRuntimeContainer] Initialised Presentation Web Script Container (in 2376.278ms)
02:06:29,330 INFO  [org.alfresco.web.scripts.DeclarativeRegistry] Registered 40 Web Scripts (+0 failed), 42 URLs
02:06:29,486 INFO  [org.alfresco.web.scripts.AbstractRuntimeContainer] Initialised WebFramework Web Script Container (in 1430.0741ms)
02:06:29,828 INFO  [org.alfresco.web.site.FrameworkHelper] Successfully Initialized Web Framework
02:09:47,377 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/site-webscripts/components/common/audio/edit.get.desc.xml due to error: 02050016 Failed to read script configuration file ; Unable to test document path: components/common/audio/edit.get.config.xml in remote store: alfresco-webuser due to error: 500
02:09:47,395 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/site-webscripts/components/common/audio/edit.post.desc.xml due to error: 02050015 Failed to read script configuration file ; Unable to test document path: components/common/audio/edit.post.config.xml in remote store: alfresco-webuser due to error: 500
02:09:47,395 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/site-webscripts/components/common/audio/view.get.desc.xml due to error: 02050017 Failed to read script configuration file ; Unable to test document path: components/common/audio/view.get.config.xml in remote store: alfresco-webuser due to error: 500
02:09:47,395 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/site-webscripts/components/common/breadcrumb/edit.get.desc.xml due to error: 02050007 Failed to read script configuration file ; Unable to test document path: components/common/breadcrumb/edit.get.config.xml in remote store: alfresco-webuser due to error: 500
02:09:47,396 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/site-webscripts/components/common/breadcrumb/edit.post.desc.xml due to error: 02050006 Failed to read script configuration file ; Unable to test document path: components/common/breadcrumb/edit.post.config.xml in remote store: alfresco-webuser due to error: 500
02:09:47,396 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/site-webscripts/components/common/breadcrumb/view.get.desc.xml due to error: 02050008 Failed to read script configuration file ; Unable to test document path: components/common/breadcrumb/view.get.config.xml in remote store: alfresco-webuser due to error: 500
02:09:47,396 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/site-webscripts/components/common/display-items/edit.get.desc.xml due to error: 02050022 Failed to read script configuration file ; Unable to test document path: components/common/display-items/edit.get.config.xml in remote store: alfresco-webuser due to error: 500
02:09:47,396 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/site-webscripts/components/common/display-items/edit.post.desc.xml due to error: 02050021 Failed to read script configuration file ; Unable to test document path: components/common/display-items/edit.post.config.xml in remote store: alfresco-webuser due to error: 500
02:09:47,397 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/site-webscripts/components/common/display-items/view.get.desc.xml due to error: 02050023 Failed to read script configuration file ; Unable to test document path: components/common/display-items/view.get.config.xml in remote store: alfresco-webuser due to error: 500
02:09:47,397 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/site-webscripts/components/common/flash-mp3/edit.get.desc.xml due to error: 02050019 Failed to read script configuration file ; Unable to test document path: components/common/flash-mp3/edit.get.config.xml in remote store: alfresco-webuser due to error: 500
02:09:47,397 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/site-webscripts/components/common/flash-mp3/edit.post.desc.xml due to error: 02050018 Failed to read script configuration file ; Unable to test document path: components/common/flash-mp3/edit.post.config.xml in remote store: alfresco-webuser due to error: 500
02:09:47,397 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/site-webscripts/components/common/flash-mp3/view.get.desc.xml due to error: 02050020 Failed to read script configuration file ; Unable to test document path: components/common/flash-mp3/view.get.config.xml in remote store: alfresco-webuser due to error: 500
02:09:47,397 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/site-webscripts/components/common/html/edit.get.desc.xml due to error: 02050028 Failed to read script configuration file ; Unable to test document path: components/common/html/edit.get.config.xml in remote store: alfresco-webuser due to error: 500
02:09:47,398 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/site-webscripts/components/common/html/edit.post.desc.xml due to error: 02050027 Failed to read script configuration file ; Unable to test document path: components/common/html/edit.post.config.xml in remote store: alfresco-webuser due to error: 500
02:09:47,398 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/site-webscripts/components/common/html/view.get.desc.xml due to error: 02050029 Failed to read script configuration file ; Unable to test document path: components/common/html/view.get.config.xml in remote store: alfresco-webuser due to error: 500
02:09:47,398 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/site-webscripts/components/common/image/edit.get.desc.xml due to error: 02050025 Failed to read script configuration file ; Unable to test document path: components/common/image/edit.get.config.xml in remote store: alfresco-webuser due to error: 500
02:09:47,398 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/site-webscripts/components/common/image/edit.post.desc.xml due to error: 02050024 Failed to read script configuration file ; Unable to test document path: components/common/image/edit.post.config.xml in remote store: alfresco-webuser due to error: 500
02:09:47,399 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/site-webscripts/components/common/image/view.get.desc.xml due to error: 02050026 Failed to read script configuration file ; Unable to test document path: components/common/image/view.get.config.xml in remote store: alfresco-webuser due to error: 500
02:09:47,399 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/site-webscripts/components/common/include/edit.get.desc.xml due to error: 02050004 Failed to read script configuration file ; Unable to test document path: components/common/include/edit.get.config.xml in remote store: alfresco-webuser due to error: 500
02:09:47,399 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/site-webscripts/components/common/include/edit.post.desc.xml due to error: 02050003 Failed to read script configuration file ; Unable to test document path: components/common/include/edit.post.config.xml in remote store: alfresco-webuser due to error: 500
02:09:47,399 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/site-webscripts/components/common/include/view.get.desc.xml due to error: 02050005 Failed to read script configuration file ; Unable to test document path: components/common/include/view.get.config.xml in remote store: alfresco-webuser due to error: 500
02:09:47,400 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/site-webscripts/components/common/jw-player/edit.get.desc.xml due to error: 02050031 Failed to read script configuration file ; Unable to test document path: components/common/jw-player/edit.get.config.xml in remote store: alfresco-webuser due to error: 500
02:09:47,400 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/site-webscripts/components/common/jw-player/edit.post.desc.xml due to error: 02050030 Failed to read script configuration file ; Unable to test document path: components/common/jw-player/edit.post.config.xml in remote store: alfresco-webuser due to error: 500
02:09:47,400 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/site-webscripts/components/common/jw-player/view.get.desc.xml due to error: 02050032 Failed to read script configuration file ; Unable to test document path: components/common/jw-player/view.get.config.xml in remote store: alfresco-webuser due to error: 500
02:09:47,400 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/site-webscripts/components/common/markup/edit.get.desc.xml due to error: 02050001 Failed to read script configuration file ; Unable to test document path: components/common/markup/edit.get.config.xml in remote store: alfresco-webuser due to error: 500
02:09:47,400 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/site-webscripts/components/common/markup/edit.post.desc.xml due to error: 02050000 Failed to read script configuration file ; Unable to test document path: components/common/markup/edit.post.config.xml in remote store: alfresco-webuser due to error: 500
02:09:47,402 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/site-webscripts/components/common/markup/view.get.desc.xml due to error: 02050002 Failed to read script configuration file ; Unable to test document path: components/common/markup/view.get.config.xml in remote store: alfresco-webuser due to error: 500
02:09:47,402 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/site-webscripts/components/common/navigation/edit.get.desc.xml due to error: 02050013 Failed to read script configuration file ; Unable to test document path: components/common/navigation/edit.get.config.xml in remote store: alfresco-webuser due to error: 500
02:09:47,402 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/site-webscripts/components/common/navigation/edit.post.desc.xml due to error: 02050012 Failed to read script configuration file ; Unable to test document path: components/common/navigation/edit.post.config.xml in remote store: alfresco-webuser due to error: 500
02:09:47,402 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/site-webscripts/components/common/navigation/view.get.desc.xml due to error: 02050014 Failed to read script configuration file ; Unable to test document path: components/common/navigation/view.get.config.xml in remote store: alfresco-webuser due to error: 500
02:09:47,402 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/site-webscripts/components/common/video/edit.get.desc.xml due to error: 02050010 Failed to read script configuration file ; Unable to test document path: components/common/video/edit.get.config.xml in remote store: alfresco-webuser due to error: 500
02:09:47,403 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/site-webscripts/components/common/video/edit.post.desc.xml due to error: 02050009 Failed to read script configuration file ; Unable to test document path: components/common/video/edit.post.config.xml in remote store: alfresco-webuser due to error: 500
02:09:47,403 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/site-webscripts/components/common/video/view.get.desc.xml due to error: 02050011 Failed to read script configuration file ; Unable to test document path: components/common/video/view.get.config.xml in remote store: alfresco-webuser due to error: 500
02:09:47,403 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/org/alfresco/index.get.desc.xml due to error: 02050037 Failed to read script configuration file ; Unable to test document path: org/alfresco/index.get.config.xml in remote store: alfresco-webuser due to error: 500
02:09:47,403 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/org/alfresco/index.post.desc.xml due to error: 02050045 Failed to read script configuration file ; Unable to test document path: org/alfresco/index.post.config.xml in remote store: alfresco-webuser due to error: 500
02:09:47,404 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/org/alfresco/indexall.get.desc.xml due to error: 02050035 Failed to read script configuration file ; Unable to test document path: org/alfresco/indexall.get.config.xml in remote store: alfresco-webuser due to error: 500
02:09:47,404 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/org/alfresco/indexfailures.get.desc.xml due to error: 02050054 Failed to read script configuration file ; Unable to test document path: org/alfresco/indexfailures.get.config.xml in remote store: alfresco-webuser due to error: 500
02:09:47,404 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/org/alfresco/indexfamily.get.desc.xml due to error: 02050046 Failed to read script configuration file ; Unable to test document path: org/alfresco/indexfamily.get.config.xml in remote store: alfresco-webuser due to error: 500
02:09:47,404 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/org/alfresco/indexlifecycle.get.desc.xml due to error: 02050043 Failed to read script configuration file ; Unable to test document path: org/alfresco/indexlifecycle.get.config.xml in remote store: alfresco-webuser due to error: 500
02:09:47,405 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/org/alfresco/indexpackage.get.desc.xml due to error: 02050040 Failed to read script configuration file ; Unable to test document path: org/alfresco/indexpackage.get.config.xml in remote store: alfresco-webuser due to error: 500
02:09:47,405 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/org/alfresco/indexuri.get.desc.xml due to error: 02050039 Failed to read script configuration file ; Unable to test document path: org/alfresco/indexuri.get.config.xml in remote store: alfresco-webuser due to error: 500
02:09:47,405 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/org/alfresco/jsdebugger.get.desc.xml due to error: 02050033 Failed to read script configuration file ; Unable to test document path: org/alfresco/jsdebugger.get.config.xml in remote store: alfresco-webuser due to error: 500
02:09:47,405 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/org/alfresco/jsdebugger.post.desc.xml due to error: 02050042 Failed to read script configuration file ; Unable to test document path: org/alfresco/jsdebugger.post.config.xml in remote store: alfresco-webuser due to error: 500
02:09:47,406 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/org/alfresco/scriptdescription.get.desc.xml due to error: 02050034 Failed to read script configuration file ; Unable to test document path: org/alfresco/scriptdescription.get.config.xml in remote store: alfresco-webuser due to error: 500
02:09:47,406 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/org/alfresco/scriptdump.get.desc.xml due to error: 02050044 Failed to read script configuration file ; Unable to test document path: org/alfresco/scriptdump.get.config.xml in remote store: alfresco-webuser due to error: 500
02:09:47,406 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/org/alfresco/scriptinstall.get.desc.xml due to error: 02050038 Failed to read script configuration file ; Unable to test document path: org/alfresco/scriptinstall.get.config.xml in remote store: alfresco-webuser due to error: 500
02:09:47,406 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/org/alfresco/scriptinstall.post.desc.xml due to error: 02050041 Failed to read script configuration file ; Unable to test document path: org/alfresco/scriptinstall.post.config.xml in remote store: alfresco-webuser due to error: 500
02:09:47,406 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/org/alfresco/test/atomentry.post.desc.xml due to error: 02050053 Failed to read script configuration file ; Unable to test document path: org/alfresco/test/atomentry.post.config.xml in remote store: alfresco-webuser due to error: 500
02:09:47,426 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/org/alfresco/test/bogustest.post.desc.xml due to error: 02050048 Failed to read script configuration file ; Unable to test document path: org/alfresco/test/bogustest.post.config.xml in remote store: alfresco-webuser due to error: 500
02:09:47,427 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/org/alfresco/test/encodedsubmit.post.desc.xml due to error: 02050050 Failed to read script configuration file ; Unable to test document path: org/alfresco/test/encodedsubmit.post.config.xml in remote store: alfresco-webuser due to error: 500
02:09:47,427 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/org/alfresco/test/exception.get.desc.xml due to error: 02050047 Failed to read script configuration file ; Unable to test document path: org/alfresco/test/exception.get.config.xml in remote store: alfresco-webuser due to error: 500
02:09:47,427 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/org/alfresco/test/jsonecho.post.desc.xml due to error: 02050052 Failed to read script configuration file ; Unable to test document path: org/alfresco/test/jsonecho.post.config.xml in remote store: alfresco-webuser due to error: 500
02:09:47,428 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/org/alfresco/test/requestbody.put.desc.xml due to error: 02050051 Failed to read script configuration file ; Unable to test document path: org/alfresco/test/requestbody.put.config.xml in remote store: alfresco-webuser due to error: 500
02:09:47,428 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/org/alfresco/test/runas.get.desc.xml due to error: 02050049 Failed to read script configuration file ; Unable to test document path: org/alfresco/test/runas.get.config.xml in remote store: alfresco-webuser due to error: 500
02:09:47,428 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/org/alfresco/web/messages.get.desc.xml due to error: 02050036 Failed to read script configuration file ; Unable to test document path: org/alfresco/web/messages.get.config.xml in remote store: alfresco-webuser due to error: 500
02:09:47,428 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/web-studio/api/content/associations/associations.get.desc.xml due to error: 02050097 Failed to read script configuration file ; Unable to test document path: web-studio/api/content/associations/associations.get.config.xml in remote store: alfresco-webuser due to error: 500
02:09:47,429 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/web-studio/api/context/setcontext.get.desc.xml due to error: 02050083 Failed to read script configuration file ; Unable to test document path: web-studio/api/context/setcontext.get.config.xml in remote store: alfresco-webuser due to error: 500
02:09:47,429 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/web-studio/api/importer/importer.get.desc.xml due to error: 02050096 Failed to read script configuration file ; Unable to test document path: web-studio/api/importer/importer.get.config.xml in remote store: alfresco-webuser due to error: 500
02:09:47,429 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/web-studio/api/importer/statuscheck.get.desc.xml due to error: 02050095 Failed to read script configuration file ; Unable to test document path: web-studio/api/importer/statuscheck.get.config.xml in remote store: alfresco-webuser due to error: 500
02:09:47,429 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/web-studio/api/login/login.get.desc.xml due to error: 02050091 Failed to read script configuration file ; Unable to test document path: web-studio/api/login/login.get.config.xml in remote store: alfresco-webuser due to error: 500
02:09:47,429 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/web-studio/api/model/get.get.desc.xml due to error: 02050092 Failed to read script configuration file ; Unable to test document path: web-studio/api/model/get.get.config.xml in remote store: alfresco-webuser due to error: 500
02:09:47,430 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/web-studio/api/model/list.get.desc.xml due to error: 02050093 Failed to read script configuration file ; Unable to test document path: web-studio/api/model/list.get.config.xml in remote store: alfresco-webuser due to error: 500
02:09:47,430 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/web-studio/api/model/put.get.desc.xml due to error: 02050094 Failed to read script configuration file ; Unable to test document path: web-studio/api/model/put.get.config.xml in remote store: alfresco-webuser due to error: 500
02:09:47,430 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/web-studio/api/page/associations/associations.get.desc.xml due to error: 02050089 Failed to read script configuration file ; Unable to test document path: web-studio/api/page/associations/associations.get.config.xml in remote store: alfresco-webuser due to error: 500
02:09:47,431 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/web-studio/api/prebuilt/list.get.desc.xml due to error: 02050084 Failed to read script configuration file ; Unable to test document path: web-studio/api/prebuilt/list.get.config.xml in remote store: alfresco-webuser due to error: 500
02:09:47,431 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/web-studio/api/region/region-get.get.desc.xml due to error: 02050085 Failed to read script configuration file ; Unable to test document path: web-studio/api/region/region-get.get.config.xml in remote store: alfresco-webuser due to error: 500
02:09:47,431 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/web-studio/api/regions/regions-get.get.desc.xml due to error: 02050090 Failed to read script configuration file ; Unable to test document path: web-studio/api/regions/regions-get.get.config.xml in remote store: alfresco-webuser due to error: 500
02:09:47,431 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/web-studio/api/resource/sites.get.desc.xml due to error: 02050088 Failed to read script configuration file ; Unable to test document path: web-studio/api/resource/sites.get.config.xml in remote store: alfresco-webuser due to error: 500
02:09:47,433 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/web-studio/api/resource/spaces.get.desc.xml due to error: 02050086 Failed to read script configuration file ; Unable to test document path: web-studio/api/resource/spaces.get.config.xml in remote store: alfresco-webuser due to error: 500
02:09:47,433 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/web-studio/api/resource/webapp.get.desc.xml due to error: 02050087 Failed to read script configuration file ; Unable to test document path: web-studio/api/resource/webapp.get.config.xml in remote store: alfresco-webuser due to error: 500
02:09:47,433 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/web-studio/api/site/create.get.desc.xml due to error: 02050082 Failed to read script configuration file ; Unable to test document path: web-studio/api/site/create.get.config.xml in remote store: alfresco-webuser due to error: 500
02:09:47,434 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/web-studio/api/template/absolutelayout/region/delete/deleteregion-get.get.desc.xml due to error: 02050078 Failed to read script configuration file ; Unable to test document path: web-studio/api/template/absolutelayout/region/delete/deleteregion-get.get.config.xml in remote store: alfresco-webuser due to error: 500
02:09:47,434 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/web-studio/api/template/tablelayout/panel/delete/deletepanel-get.get.desc.xml due to error: 02050079 Failed to read script configuration file ; Unable to test document path: web-studio/api/template/tablelayout/panel/delete/deletepanel-get.get.config.xml in remote store: alfresco-webuser due to error: 500
02:09:47,435 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/web-studio/api/template/tablelayout/region/delete/deleteregion-get.get.desc.xml due to error: 02050080 Failed to read script configuration file ; Unable to test document path: web-studio/api/template/tablelayout/region/delete/deleteregion-get.get.config.xml in remote store: alfresco-webuser due to error: 500
02:09:47,435 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/web-studio/api/template/tablelayout/row/delete/deleterow-get.get.desc.xml due to error: 02050081 Failed to read script configuration file ; Unable to test document path: web-studio/api/template/tablelayout/row/delete/deleterow-get.get.config.xml in remote store: alfresco-webuser due to error: 500
02:09:47,436 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/web-studio/incontext/components.get.desc.xml due to error: 02050098 Failed to read script configuration file ; Unable to test document path: web-studio/incontext/components.get.config.xml in remote store: alfresco-webuser due to error: 500
02:09:47,436 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/web-studio/trees/comptree.get.desc.xml due to error: 02050073 Failed to read script configuration file ; Unable to test document path: web-studio/trees/comptree.get.config.xml in remote store: alfresco-webuser due to error: 500
02:09:47,436 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/web-studio/trees/contenttree.get.desc.xml due to error: 02050076 Failed to read script configuration file ; Unable to test document path: web-studio/trees/contenttree.get.config.xml in remote store: alfresco-webuser due to error: 500
02:09:47,437 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/web-studio/trees/navtree.get.desc.xml due to error: 02050077 Failed to read script configuration file ; Unable to test document path: web-studio/trees/navtree.get.config.xml in remote store: alfresco-webuser due to error: 500
02:09:47,437 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/web-studio/trees/sitestree.get.desc.xml due to error: 02050075 Failed to read script configuration file ; Unable to test document path: web-studio/trees/sitestree.get.config.xml in remote store: alfresco-webuser due to error: 500
02:09:47,444 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/web-studio/trees/spacestree.get.desc.xml due to error: 02050074 Failed to read script configuration file ; Unable to test document path: web-studio/trees/spacestree.get.config.xml in remote store: alfresco-webuser due to error: 500
02:09:47,444 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/web-studio/wizards/content/associations/add/wizard.get.desc.xml due to error: 02050071 Failed to read script configuration file ; Unable to test document path: web-studio/wizards/content/associations/add/wizard.get.config.xml in remote store: alfresco-webuser due to error: 500
02:09:47,444 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/web-studio/wizards/content/associations/remove/wizard.get.desc.xml due to error: 02050072 Failed to read script configuration file ; Unable to test document path: web-studio/wizards/content/associations/remove/wizard.get.config.xml in remote store: alfresco-webuser due to error: 500
02:09:47,445 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/web-studio/wizards/editregion/wizard.get.desc.xml due to error: 02050064 Failed to read script configuration file ; Unable to test document path: web-studio/wizards/editregion/wizard.get.config.xml in remote store: alfresco-webuser due to error: 500
02:09:47,445 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/web-studio/wizards/navigation/add/wizard.get.desc.xml due to error: 02050065 Failed to read script configuration file ; Unable to test document path: web-studio/wizards/navigation/add/wizard.get.config.xml in remote store: alfresco-webuser due to error: 500
02:09:47,445 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/web-studio/wizards/navigation/copy/wizard.get.desc.xml due to error: 02050067 Failed to read script configuration file ; Unable to test document path: web-studio/wizards/navigation/copy/wizard.get.config.xml in remote store: alfresco-webuser due to error: 500
02:09:47,446 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/web-studio/wizards/navigation/delete/wizard.get.desc.xml due to error: 02050068 Failed to read script configuration file ; Unable to test document path: web-studio/wizards/navigation/delete/wizard.get.config.xml in remote store: alfresco-webuser due to error: 500
02:09:47,447 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/web-studio/wizards/navigation/edit/wizard.get.desc.xml due to error: 02050066 Failed to read script configuration file ; Unable to test document path: web-studio/wizards/navigation/edit/wizard.get.config.xml in remote store: alfresco-webuser due to error: 500
02:09:47,447 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/web-studio/wizards/page/associations/add/wizard.get.desc.xml due to error: 02050069 Failed to read script configuration file ; Unable to test document path: web-studio/wizards/page/associations/add/wizard.get.config.xml in remote store: alfresco-webuser due to error: 500
02:09:47,447 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/web-studio/wizards/page/associations/remove/wizard.get.desc.xml due to error: 02050070 Failed to read script configuration file ; Unable to test document path: web-studio/wizards/page/associations/remove/wizard.get.config.xml in remote store: alfresco-webuser due to error: 500
02:09:47,447 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/web-studio/wizards/regionmanager/absoluteposition/wizard.get.desc.xml due to error: 02050062 Failed to read script configuration file ; Unable to test document path: web-studio/wizards/regionmanager/absoluteposition/wizard.get.config.xml in remote store: alfresco-webuser due to error: 500
02:09:47,447 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/web-studio/wizards/regionmanager/tablelayout/wizard.get.desc.xml due to error: 02050063 Failed to read script configuration file ; Unable to test document path: web-studio/wizards/regionmanager/tablelayout/wizard.get.config.xml in remote store: alfresco-webuser due to error: 500
02:09:47,448 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/web-studio/wizards/removecomponent/wizard.get.desc.xml due to error: 02050061 Failed to read script configuration file ; Unable to test document path: web-studio/wizards/removecomponent/wizard.get.config.xml in remote store: alfresco-webuser due to error: 500
02:09:47,448 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/web-studio/wizards/site/config/siteconfig.get.desc.xml due to error: 02050060 Failed to read script configuration file ; Unable to test document path: web-studio/wizards/site/config/siteconfig.get.config.xml in remote store: alfresco-webuser due to error: 500
02:09:47,448 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/web-studio/wizards/template/add/wizard.get.desc.xml due to error: 02050055 Failed to read script configuration file ; Unable to test document path: web-studio/wizards/template/add/wizard.get.config.xml in remote store: alfresco-webuser due to error: 500
02:09:47,449 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/web-studio/wizards/template/copy/wizard.get.desc.xml due to error: 02050058 Failed to read script configuration file ; Unable to test document path: web-studio/wizards/template/copy/wizard.get.config.xml in remote store: alfresco-webuser due to error: 500
02:09:47,449 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/web-studio/wizards/template/delete/wizard.get.desc.xml due to error: 02050059 Failed to read script configuration file ; Unable to test document path: web-studio/wizards/template/delete/wizard.get.config.xml in remote store: alfresco-webuser due to error: 500
02:09:47,449 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/web-studio/wizards/template/edit/wizard.get.desc.xml due to error: 02050056 Failed to read script configuration file ; Unable to test document path: web-studio/wizards/template/edit/wizard.get.config.xml in remote store: alfresco-webuser due to error: 500
02:09:47,449 WARN  [org.alfresco.web.scripts.DeclarativeRegistry] Unable to register script classpath:alfresco/webscripts/web-studio/wizards/template/tablelayoutmanager/wizard.get.desc.xml due to error: 02050057 Failed to read script configuration file ; Unable to test document path: web-studio/wizards/template/tablelayoutmanager/wizard.get.config.xml in remote store: alfresco-webuser due to error: 500
02:09:48,341 INFO  [org.alfresco.web.site.FrameworkHelper] Successfully Initialized Web Framework
11:31:39,811 INFO  [org.alfresco.config.JBossEnabledWebApplicationContext] Closing org.alfresco.config.JBossEnabledWebApplicationContext@1886fb3: display name [Root WebApplicationContext]; startup date [Fri Mar 05 02:06:13 PST 2010]; root of context hierarchy

durrell
Champ in-the-making
Champ in-the-making
That error is actually complaining that the RMI port is already in use, which is port 50501.

Do you have something listening on 50501 before Alfresco starts?

anuvatec
Champ in-the-making
Champ in-the-making
I restarted the machine, verified nothing is running on port 50501. Started Alfresco and now java is running on 50501 (which I'm assuming is Alfresco) and I still get the error. Maybe Alfresco is running itself twice or something? Any other ideas?

anuvatec
Champ in-the-making
Champ in-the-making
No ideas? Anyone? How about backing up the data and doing a fresh install of Alfresco and restoring the data from the old installation - is this possible? if so, how would I go about this?