permission denied when try to set up duckdb destination #80169
Replies: 1 comment 1 reply
|
Hi Johannes W. S. (@johannes-ws), thank you for reporting this! The Here's how the path mapping works:
To resolve this, please try the following steps: 1. Verify the host directory exists and has correct permissions# Check your LOCAL_ROOT value (default is /tmp/airbyte_local)
grep LOCAL_ROOT .env
# Create the directory if it does not exist
mkdir -p /tmp/airbyte_local
# Ensure the directory is writable
chmod 777 /tmp/airbyte_local2. Verify Docker has access to the directory
3. Check the Docker Compose volume mountIn your volumes:
- ${LOCAL_ROOT}:/localMake sure this mount exists and is not commented out. Additional information that would help us assist you further:
For reference, here is the DuckDB destination documentation which explains the local file path mapping in detail. Need more help? Join Airbyte Community Slack for peer support, or if you're a Cloud customer, open a support ticket referencing this URL. |
Uh oh!
There was an error while loading. Please reload this page.
i got this error message "Failed to save DuckDB due to the following error: An exception occurred: PermissionError(13, 'Permission denied')", i just fill /local/lakehouse.duckdb, anyone help?
All reactions