Received: from malur.postgresql.org ([217.196.149.56]) by arkaria.postgresql.org with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.96) (envelope-from ) id 1vUrG1-008JV7-06 for pgsql-pkg-debian@arkaria.postgresql.org; Sun, 14 Dec 2025 18:55:49 +0000 Received: from localhost ([127.0.0.1] helo=malur.postgresql.org) by malur.postgresql.org with esmtp (Exim 4.96) (envelope-from ) id 1vUrFz-00E1ql-0f for pgsql-pkg-debian@arkaria.postgresql.org; Sun, 14 Dec 2025 18:55:47 +0000 Received: from magus.postgresql.org ([2a02:c0:301:0:ffff::29]) by malur.postgresql.org with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.96) (envelope-from ) id 1vUrFz-00E1qd-06 for pgsql-pkg-debian@lists.postgresql.org; Sun, 14 Dec 2025 18:55:47 +0000 Received: from goedel.df7cb.de ([49.13.90.212]) by magus.postgresql.org with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.96) (envelope-from ) id 1vUrFw-000jNR-39 for pgsql-pkg-debian@postgresql.org; Sun, 14 Dec 2025 18:55:47 +0000 Received: from msg.df7cb.de (unknown [IPv6:2a02:908:1472:9340:f0ad:fc6e:9c86:f1dc]) by goedel.df7cb.de (Postfix) with ESMTPSA id 8F9C197; Sun, 14 Dec 2025 18:55:43 +0000 (UTC) Date: Sun, 14 Dec 2025 19:55:43 +0100 From: Christoph Berg To: Simon =?iso-8859-1?Q?H=F6nscheid?= Cc: pgsql-pkg-debian@postgresql.org Subject: Re: Installing multiple Postgresql Versions in parallel, does not seem to work anymore Message-ID: Mail-Followup-To: Christoph Berg , Simon =?iso-8859-1?Q?H=F6nscheid?= , pgsql-pkg-debian@postgresql.org References: <9d6cea9e-5a54-49d1-8dfd-c8f5e390b792@xyntion.consulting> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <9d6cea9e-5a54-49d1-8dfd-c8f5e390b792@xyntion.consulting> List-Id: List-Help: List-Subscribe: List-Post: List-Owner: List-Archive: Archived-At: Precedence: bulk Re: Simon Hönscheid > The Server is Running Debian 12 and the postgresql.org apt repository. Until > today the Server was running Postgresql 14 and an upgrade to postgresql 17 > was planned. In the past I used to install the new version in parallel and > migrated the data. Today I noticecd the post install steps did not run. No > cluster was bootstrapped, no config directory created, no systemd unit > created. There was also an upgrade planned to Debian 13, so I did this > first, and tried again. Same result. The packages are co-installable. What changed is that no new cluster is created by default. If you want that, run `pg_createcluster 17 main`. But the packaging is built about pg_upgradecluster, so you might just run `pg_upgradecluster 14 main -v 17` instead. Christoph