Can't we use the same existing schema/username/password for the different alfresco server?

cancel
Showing results for 
Search instead for 
Did you mean: 
siddardha
Active Member II

Can't we use the same existing schema/username/password for the different alfresco server?

Hi Everyone,

Can't we use the existing same schema/username/password for the different alfresco server?

If we are using the same details getting below error. Please help.

Jul 25, 2019 5:55:16 AM org.apache.catalina.core.StandardContext listenerStart
SEVERE: Exception sending context initialized event to listener instance of class [org.alfresco.repo.webdav.WebDAVSessionListener]
org.alfresco.error.AlfrescoRuntimeException: 06250020 Ensure that the 'dir.root' property '/opt/acs/alf_data' is pointing to the correct data location.
        at org.alfresco.repo.admin.ConfigurationChecker.check(ConfigurationChecker.java:212)
        at org.alfresco.repo.admin.ConfigurationChecker.access$0(ConfigurationChecker.java:167)
        at org.alfresco.repo.admin.ConfigurationChecker$1$1.doWork(ConfigurationChecker.java:155)
        at org.alfresco.repo.security.authentication.AuthenticationUtil.runAs(AuthenticationUtil.java:602)
        at org.alfresco.repo.admin.ConfigurationChecker$1.execute(ConfigurationChecker.java:151)

25-Jul-2019 05:55:16.981 WARNING [localhost-startStop-1] org.apache.catalina.loader.WebappClassLoaderBase.clearReferencesThreads The web application [alfresco] appears to have started a thread named [Timer-7] but has failed to stop it. This is very likely to create a memory leak. Stack trace of thread:
 java.lang.Object.wait(Native Method)
 java.lang.Object.wait(Object.java:502)
 java.util.TimerThread.mainLoop(Timer.java:526)
 java.util.TimerThread.run(Timer.java:505)
25-Jul-2019 05:55:16.981 WARNING [localhost-startStop-1] org.apache.catalina.loader.WebappClassLoaderBase.clearReferencesThreads The web application [alfresco] appears to have started a thread named [JobLockService1] but has failed to stop it. This is very likely to create a memory leak. Stack trace of thread:
 sun.misc.Unsafe.park(Native Method)
2 Replies
krutik_jayswal
Senior Member II

Re: Can't we use the same existing schema/username/password for the different alfresco server?

There are 2 places where alfresco is storing data.

First : Inside database ,in database all the values of the properties are getting stored and other information as well.

Second: dir.root location, which is generally alf_data.In this places actuall content are stored.

If you are planning to swtich the alfresco instance, you need to update both of above this(relate properties).Mismatch alf_data folder and database will cause this issue.

siddardha
Active Member II

Re: Can't we use the same existing schema/username/password for the different alfresco server?

Thank you Krutik.