升级PostgreSQL数据库很方便,可以使用brew postgresql-upgrade-database

在使用 Homebrew 安装 PostgreSQL 时,如果执行 brew update && brew upgrade 进行更新时,可能会导致 PostgreSQL 也被更新,并因版本不匹配而无法正常运行。

错误示例:PG::ConnectionBad(适用于Rails)

Rails - PG::ConnectionBad

通过查看以上错误消息,可以推测可能是与PG(PostgreSQL)相关的影响。因此,如果实际执行PostgreSQL命令,就会发现需要单独对PostgreSQL进行更新的必要性。

╭─○ yasulab ‹2.6.5› ~/coderdojo.jp
╰─○ pg_ctl -D /usr/local/var/postgres start 

waiting for server to start....2020-02-29 10:35:46.814 JST [42482] FATAL:  database files are incompatible with server

2020-02-29 10:35:46.814 JST [42482] DETAIL:  The data directory was initialized by PostgreSQL version 11, which is not compatible with this version 12.2.

 stopped waiting

pg_ctl: could not start server
Examine the log output.

简单的解决方法 de

解决PostgreSQL数据库的方法是参考PostgreSQL文档,逐步执行每个命令(例如:迁移Homebrew Postgres到新版本)。

然而…!! 现在可以使用自2018年引入的brew postgresql-upgrade-database命令,Homebrew会一次性提供方便的支持。

╭─○ yasulab ‹2.6.5› ~/coderdojo.jp
╰─○ brew postgresql-upgrade-database

==> brew install postgresql@11
==> Downloading https://homebrew.bintray.com/bottles/postgresql@11-11.7.catalina.bottle.tar.gz
==> Downloading from https://akamai.bintray.com/d9/d9c41a81b4314a10ba40636a2eddf2c48f15c2563754a6fcfd75a20914
######################################################################## 100.0%
==> Pouring postgresql@11-11.7.catalina.bottle.tar.gz
==> /usr/local/Cellar/postgresql@11/11.7/bin/initdb --locale=C -E UTF-8 /usr/local/var/postgresql@11
==> Caveats
To migrate existing data from a previous major version of PostgreSQL run:
  brew postgresql-upgrade-database

postgresql@11 is keg-only, which means it was not symlinked into /usr/local,
because this is an alternate version of another formula.

If you need to have postgresql@11 first in your PATH run:
  echo 'export PATH="/usr/local/opt/postgresql@11/bin:$PATH"' >> ~/.zshrc

For compilers to find postgresql@11 you may need to set:
  export LDFLAGS="-L/usr/local/opt/postgresql@11/lib"
  export CPPFLAGS="-I/usr/local/opt/postgresql@11/include"

For pkg-config to find postgresql@11 you may need to set:
  export PKG_CONFIG_PATH="/usr/local/opt/postgresql@11/lib/pkgconfig"


To have launchd start postgresql@11 now and restart at login:
  brew services start postgresql@11
Or, if you don't want/need a background service you can just run:
  pg_ctl -D /usr/local/var/postgresql@11 start
==> Summary
?  /usr/local/Cellar/postgresql@11/11.7: 3,192 files, 36.5MB
==> Upgrading postgresql data from 11 to 12...
waiting for server to start....2020-02-29 10:40:09.308 JST [44314] LOG:  listening on IPv6 address "::1", port 5432
2020-02-29 10:40:09.308 JST [44314] LOG:  listening on IPv4 address "127.0.0.1", port 5432
2020-02-29 10:40:09.309 JST [44314] LOG:  listening on Unix socket "/tmp/.s.PGSQL.5432"
2020-02-29 10:40:09.344 JST [44315] LOG:  database system was interrupted; last known up at 2020-02-28 11:30:09 JST
2020-02-29 10:40:09.662 JST [44315] LOG:  database system was not properly shut down; automatic recovery in progress
2020-02-29 10:40:09.667 JST [44315] LOG:  redo starts at 0/39B8650
2020-02-29 10:40:09.667 JST [44315] LOG:  invalid record length at 0/39B8730: wanted 24, got 0
2020-02-29 10:40:09.667 JST [44315] LOG:  redo done at 0/39B86F8
2020-02-29 10:40:09.683 JST [44314] LOG:  database system is ready to accept connections
 done
server started
waiting for server to shut down....2020-02-29 10:40:10.039 JST [44314] LOG:  received fast shutdown request
2020-02-29 10:40:10.041 JST [44314] LOG:  aborting any active transactions
2020-02-29 10:40:10.041 JST [44314] LOG:  background worker "logical replication launcher" (PID 44321) exited with exit code 1
2020-02-29 10:40:10.042 JST [44316] LOG:  shutting down
2020-02-29 10:40:10.048 JST [44314] LOG:  database system is shut down
 done
server stopped
==> Moving postgresql data from /usr/local/var/postgres to /usr/local/var/postgres.old...
==> Creating database...
The files belonging to this database system will be owned by user "yasulab".
This user must also own the server process.

The database cluster will be initialized with locale "ja_JP.UTF-8".
initdb: could not find suitable text search configuration for locale "ja_JP.UTF-8"
The default text search configuration will be set to "simple".

Data page checksums are disabled.

fixing permissions on existing directory /usr/local/var/postgres ... ok
creating subdirectories ... ok
selecting dynamic shared memory implementation ... posix
selecting default max_connections ... 100
selecting default shared_buffers ... 128MB
selecting default time zone ... Asia/Tokyo
creating configuration files ... ok
running bootstrap script ... ok
performing post-bootstrap initialization ... ok
syncing data to disk ... ok

initdb: warning: enabling "trust" authentication for local connections
You can change this by editing pg_hba.conf or using the option -A, or
--auth-local and --auth-host, the next time you run initdb.

Success. You can now start the database server using:

    /usr/local/opt/postgresql/bin/pg_ctl -D /usr/local/var/postgres -l logfile start

==> Migrating and upgrading data...
Performing Consistency Checks
-----------------------------
Checking cluster versions                                   ok
Checking database user is the install user                  ok
Checking database connection settings                       ok
Checking for prepared transactions                          ok
Checking for reg* data types in user tables                 ok
Checking for contrib/isn with bigint-passing mismatch       ok
Checking for tables WITH OIDS                               ok
Checking for invalid "sql_identifier" user columns          ok
Creating dump of global objects                             ok
Creating dump of database schemas
                                                            ok
Checking for presence of required libraries                 ok
Checking database user is the install user                  ok
Checking for prepared transactions                          ok

If pg_upgrade fails after this point, you must re-initdb the
new cluster before continuing.

Performing Upgrade
------------------
Analyzing all rows in the new cluster                       ok
Freezing all rows in the new cluster                        ok
Deleting files from new pg_xact                             ok
Copying old pg_xact to new server                           ok
Setting next transaction ID and epoch for new cluster       ok
Deleting files from new pg_multixact/offsets                ok
Copying old pg_multixact/offsets to new server              ok
Deleting files from new pg_multixact/members                ok
Copying old pg_multixact/members to new server              ok
Setting next multixact ID and offset for new cluster        ok
Resetting WAL archives                                      ok
Setting frozenxid and minmxid counters in new cluster       ok
Restoring global objects in the new cluster                 ok
Restoring database schemas in the new cluster
                                                            ok
Copying user relation files
                                                            ok
Setting next OID for new cluster                            ok
Sync data directory to disk                                 ok
Creating script to analyze new cluster                      ok
Creating script to delete old cluster                       ok

Upgrade Complete
----------------
Optimizer statistics are not transferred by pg_upgrade so,
once you start the new server, consider running:
    ./analyze_new_cluster.sh

Running this script will delete the old cluster's data files:
    ./delete_old_cluster.sh
==> Upgraded postgresql data from 11 to 12!
==> Your postgresql 11 data remains at /usr/local/var/postgres.old

顺便说一下… shuō yī xià…)

如果曾经用相同的命令进行过升级,那么由于 postgres.old 目录的存在,执行可能会在中途停止。

╭─○ yasulab ‹2.6.5› ~/coderdojo.jp
╰─○ brew postgresql-upgrade-database

Error: /usr/local/var/postgres.old already exists!
Remove it if you want to upgrade data automatically.

根据上述信息,如果不想删除,可以将其重新命名为合适的名称以解决问题,这样更加放心。

CoderDojo Japan Top.png

相关文章

    • Rails で DB に接続できなくなったときの考え方 – Qiita

brew-postgresql-upgrade-database: add new command. #21244 – GitHub
Migrating Homebrew Postgres to a New Version – Olivier Lacan

bannerAds