cancel
Showing results for 
Search instead for 
Did you mean: 

Windows FIleserver as repository of Alfresco

ags
Champ in-the-making
Champ in-the-making
Hi,

I want to know if its posible use Windows Fileserver as repository of Alfresco and if its possible how configure it.

Someone can help me?

Thanks a lot
1 REPLY 1

jpotts
World-Class Innovator
World-Class Innovator
Alfresco stores metadata in the relational database and content in the file system. The file system where it stores the content binaries (and other things) is usually referred to as the "alf_data" directory because that's the name of the directory that Alfresco is configured to point to out-of-the-box.

If your goal is to tell Alfresco to store its content binaries on a Windows file server, you could change the "dir.root" property in alfresco-global.properties to point to a remotely mounted file system. However, you do NOT want to do this. That's because the dir.root property points to a directory that includes both the content and the Lucene indexes. Lucene indexes need to be on local storage. So you should also change the dir.contentstore property, like this:

dir.root=/some/local/path
dir.contentstore=/some/remote/mount/contentstore
dir.contentstore.deleted=/some/remote/mount/contentstore.deleted
The indexes would then be placed under /some/local/path and your content would go in the location shown above.

If you do this, keep in mind that the content store is private to Alfresco. You should not let people access it directly.

Jeff