Hi All,
I am trying to use data-base as content-store using Alfresco, but i am encountering some problems:
I am using the implemenation provided at
https://issues.alfresco.com/jira/browse/ALFCOM-1077.
I have deployed all the related files and made changes to the content store impl class in content-services-context.xml as discussed in
http://forums.alfresco.com/en/viewtopic.php?f=6&t=317 by derek to:
<bean id="contentService" parent="baseContentService">
<!-- Added the New Content Store entry -->
<property name="store">
<ref bean="blobContentStore"/>
</property>
</bean>
The bean-id blobContentStore is also defined .
However, on starting the server i am getting the following exception:
org.alfresco.error.AlfrescoRuntimeException: Ensure that the 'dir.root' property is pointing to the correct data location
I googled a bit and found the following link:
http://forums.alfresco.com/en/viewtopic.php?t=5845
I followed the steps outlined there, but the problem still persists.
One noticeable point is that if i change the store property impl in contentService bean to the original one, i.e. <ref bean="fileContentStore" />. The server
starts up normally and i didn't encounter any exception.
Any pointers on the same are highly appreciated.