You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There is a service that ran on the enterprise bundle version 2.4.2, the image of which was built via source ./sdk/env.sh && cartridge pack docker --sdk-path ./sdk/ ... and started like:
Then the service was updated bundle to version 2.8.2, also packed and ran it and got an error permission denied in the docker for the missing .tarantool.cookie because it was looking for it at /var/lib/tarantool/storage-A-0/.tarantool.cookie instead of looking for it in /var/lib/tarantool/<service-name>.storage-A-0/.tarantool.cookie as he did before.
After removing TARANTOOL_WORKDIR from environment variables, I restarted it and got the same permission denied error, cuz earlier images were launched with USER tarantool:taranool, and now with USER 1200:1200.
After chown 1200:1200 /path/to/named/volume everything worked.
We should describe an additional upgrade step for upgrading on or over 2.8.0 release in 2.8.0 release notes (on the releases page), in the CHANGELOG.md file and add the 'Troubleshooting' section into the documentation (preferably after PR #634):
There is a service that ran on the enterprise bundle version 2.4.2, the image of which was built via
source ./sdk/env.sh && cartridge pack docker --sdk-path ./sdk/ ...
and started like:Then the service was updated bundle to version 2.8.2, also packed and ran it and got an error permission denied in the docker for the missing
.tarantool.cookie
because it was looking for it at/var/lib/tarantool/storage-A-0/.tarantool.cookie
instead of looking for it in/var/lib/tarantool/<service-name>.storage-A-0/.tarantool.cookie
as he did before.After removing
TARANTOOL_WORKDIR
from environment variables, I restarted it and got the same permission denied error, cuz earlier images were launched withUSER tarantool:taranool
, and now withUSER 1200:1200
.After
chown 1200:1200 /path/to/named/volume
everything worked.Maybe need test and fix that case?
Info about containers
2.4.2 version
2.8.2
The text was updated successfully, but these errors were encountered: