克隆/下载
贡献代码
同步代码
取消
提示: 由于 Git 不支持空文件夾,创建文件夹后会生成空的 .keep 文件
Loading...
README
MIT

PostgreSQL 相关工具及备忘

pg-upgrade

PostgreSQL的大版本升级镜像工具

参考以下:

https://github.com/tianon/docker-postgres-upgrade/tree/master

https://github.com/docker-library/postgres/issues/37

具体使用

1.构建工具镜像,运行命令如下

 // 原生镜像的大版本升级
 docker build -f ./Dockerfile-pg -t pg-upgrade .
 // PostgreSQL+PostgreGIS+TimescaleDB镜像的大版本升级
 docker build -f ./Dockerfile-tsdb -t tsdb-upgrade .

2.关闭PostgreSQL数据库 docker stop pg-13

3.数据备份,将原数据文件路径备份,/var/lib/postgresql/13/data

4.升级

 // 原生镜像的大版本升级
 docker build -f ./Dockerfile-pg -t pg-upgrade .
 /** PostgreSQL+PostgreGIS+TimescaleDB镜像的大版本升级
 * 命令模板:docker run --rm -v $PGDATAOLD:/var/lib/postgresql/13/data -v PGDATANEW:/var/lib/postgresql/15/data tsdb-upgrade
 * $PGDATAOLD:旧版本数据文件路径
 * $PGDATANEW:新版本数据文件路径
 * 示例如下:
 */
 docker run --rm \
  -v /data/postgres/13/_data:/var/lib/postgresql/13/data \
  -v /data/postgres/15/data:/var/lib/postgresql/15/data \
  tsdb-upgrade
 docker run --rm \
  -v /data/postgres/13/_data:/var/lib/postgresql/13/data \
  -v /data/postgres/15/data:/var/lib/postgresql/15/data \
  pg-upgrade

镜像相关文件说明

  • docker-upgrade:工具脚步,不需要修改
  • Dockerfile-pg:PostgreSQL原生镜像的大版本升级
  • Dockerfile-tsdb:PostgreSQL+PostgreGIS+TimescaleDB镜像的大版本升级,基础镜像及版本需要和PostGIS-TimescaleDB自制镜像一致,否则会失败

注意事项

  • 如果存在自定义表空间,升级时可能会报错(找不到表空间),该问题的根本原因未找到,暂时使用以下解决方案
解决方案:
 1.关闭PostgreSQL数据库
 2.备份数据文件
 3.启动PostgreSQL数据库
 4.将使用自定表空间的数据库修改为默认表空间
 5.删除自定义表空间
 6.重复上述升级步骤

PostGIS-TimescaleDB

PostgreSQL+PostgreGIS+TimescaleDB自制镜像

  • Dockerfile:最新版本镜像
  • Dockerfile.pg13-3-2:13-PostgreSQL版本,3-PostGIS版本,2-TimescaleDB版本
MIT License Copyright (c) 2024 edi-K Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

简介

1.pg docker容器大版本升级; 2.pg+postgres+timescaledb 镜像; 展开 收起
Dockerfile 等 2 种语言
MIT
取消

发行版

暂无发行版

贡献者

全部

近期动态

不能加载更多了
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化