gpt4 book ai didi

postgresql - WSL2 和 Docker 桌面上的 Postgres 卷安装 : Permission Denied on PGDATA folder

转载 作者:行者123 更新时间:2023-12-02 19:44:34 27 4
gpt4 key购买 nike

有一些类似的帖子,但这与在 Docker 桌面上运行带有 WSL2 后端的 Postgres 特别相关。 WSL2 在 Windows 上带来完整的 Linux 体验。卷可以挂载到 Windows 和 Linux 文件系统。但出于性能原因,最佳做法是使用 Linux 文件系统,请参阅 docker documentation .

Performance is much higher when files are bind-mounted from the Linux filesystem, rather than remoted from the Windows host. Therefore avoid docker run -v /mnt/c/users:/users (where /mnt/c is mounted from Windows).Instead, from a Linux shell use a command like docker run -v ~/my-project:/sources where ~ is expanded by the Linux shell to $HOME.

我的 WSL 发行版是 Ubuntu 20.04 LTS。我将安装 Postgres 数据目录绑定(bind)到 Linux 文件系统上的目录,并且我还将 Postgres PGDATA 配置为使用子目录,因为官方 Docker 图像文档中对此进行了说明:

PGDATAThis optional variable can be used to define another location - like a subdirectory - for the database files. The default is /var/lib/postgresql/data. If the data volume you're using is a filesystem mountpoint (like with GCE persistent disks) or remote folder that cannot be chowned to the postgres user (like some NFS mounts), Postgres initdb recommends a subdirectory be created to contain the data.

这就是我启动 Postgres 并将卷安装到 WSL2 Ubuntu 文件系统的方式:

docker run -d \
--name some-postgres -e POSTGRES_PASSWORD=root \
-e PGDATA=/var/lib/postgresql/data/pgdata \
-v ~/custom/mount:/var/lib/postgresql/data \
postgres

我可以执行到正在运行的容器并验证数据文件夹是否存在并且配置是否正确:

enter image description here

现在,如果我尝试从主机 (WSL2 Linux) 访问该文件夹,我将获得被拒绝的权限:

enter image description here

如果有人能提供解决方案,我将不胜感激。现有帖子均无法解决该问题。

最佳答案

这与 PostgreSQL 无关。 Docker 容器以 root 运行,因此 Docker 创建的任何目录也将属于 root

关于postgresql - WSL2 和 Docker 桌面上的 Postgres 卷安装 : Permission Denied on PGDATA folder,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64357189/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com