Help coderanch get a
new server
by contributing to the fundraiser
  • Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Ron McLeod
  • Paul Clapham
  • Devaka Cooray
  • Liutauras Vilda
Sheriffs:
  • Jeanne Boyarsky
  • paul wheaton
  • Henry Wong
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Tim Moores
  • Carey Brown
  • Mikalai Zaikin
Bartenders:
  • Lou Hamers
  • Piet Souris
  • Frits Walraven

Using Database as content store in Alfresco

 
Ranch Hand
Posts: 88
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
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.
 
Mohit Agarwal
Ranch Hand
Posts: 88
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Any comments/suggestions from any one?
 
reply
    Bookmark Topic Watch Topic
  • New Topic