When deploying Umbraco to GreenStack, it is important to ensure that not all files are stored in the file share- otherwise you will experience file locking issues. Here are the folders and files that should not be replicated:
~/umbraco/Data/TEMP/*
You can achieve this by changing the value of the LuceneDirectoryFactory setting to 'TempFileSystemDirectoryFactory' in the appsettings.json.
Below is shown how to do this in a Json configuration source.
{
"Umbraco": {
"CMS": {
"Examine": {
"LuceneDirectoryFactory" : "TempFileSystemDirectoryFactory"
}
}
}
}