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
When I try to mount /var/lib/postgresql/data from worker to a local host directory in my docker-compose.yml it throws the exeption: chmod: changing permissions of '/var/lib/postgresql/data': Operation not permitted
Possible solution is to change the script "wait-for-manager.sh" like that:
set -e
until test -f /healthcheck/manager-ready ; do
>&2 echo "Manager is not ready - sleeping"
sleep 1
done
>&2 echo "Manager is up - starting worker"
exec "/docker-entrypoint.sh" "postgres"
citus version: 9.4.1
postgres version: 12
The text was updated successfully, but these errors were encountered:
uulyar
changed the title
Bug in script "wait-for-manager.sh"
Bug in the script "wait-for-manager.sh"
Oct 15, 2020
When I try to mount /var/lib/postgresql/data from worker to a local host directory in my docker-compose.yml it throws the exeption:
chmod: changing permissions of '/var/lib/postgresql/data': Operation not permitted
Possible solution is to change the script "wait-for-manager.sh" like that:
citus version: 9.4.1
postgres version: 12
The text was updated successfully, but these errors were encountered: