After trying to upgrade from 9.0.5 to 9.2.1, my docker container wont boot anymore.
The error is
An exception occurred during task execution. To see the full traceback, use -vvv. The error was: OSError: [Errno 16] Device or resource busy: b'/opt/splunk/etc/system/local/.ansible_tmpcxrl7u_bweb.conf' -> b'/opt/splunk/etc/system/local/web.conf'
fatal: [localhost]: FAILED! => {
"changed": false
}
Now is suppose that this is because of this commit, which makes chages to web.conf: aafd019
I also need to make changes to web.conf (mainly caching for development purposes):
[settings]
cacheEntriesLimit = 0
cacheBytesLimit = 0
crossOriginSharingPolicy = https://localhost:8090
crossOriginSharingHeaders = *
I tried making the changes using the entrypoint, which fails because of permission denied error to web.conf
May I suggest introducing environment variables that allow for setting the above headers?
Also, I would greatly appreciate any hint on how to get a temporary fix for this.
After trying to upgrade from 9.0.5 to 9.2.1, my docker container wont boot anymore.
The error is
Now is suppose that this is because of this commit, which makes chages to web.conf: aafd019
I also need to make changes to web.conf (mainly caching for development purposes):
I tried making the changes using the entrypoint, which fails because of permission denied error to web.conf
May I suggest introducing environment variables that allow for setting the above headers?
Also, I would greatly appreciate any hint on how to get a temporary fix for this.