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.94.2) (envelope-from ) id 1somIY-00DkuX-Qc for pgsql-general@arkaria.postgresql.org; Thu, 12 Sep 2024 16:03:59 +0000 Received: from localhost ([127.0.0.1] helo=malur.postgresql.org) by malur.postgresql.org with esmtp (Exim 4.94.2) (envelope-from ) id 1somIX-00BhtL-RO for pgsql-general@arkaria.postgresql.org; Thu, 12 Sep 2024 16:03:57 +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.94.2) (envelope-from ) id 1somIX-00BhtC-DK for pgsql-general@lists.postgresql.org; Thu, 12 Sep 2024 16:03:57 +0000 Received: from smtp5-g21.free.fr ([2a01:e0c:1:1599::14]) by magus.postgresql.org with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.94.2) (envelope-from ) id 1somIQ-000qF3-4v for pgsql-general@postgresql.org; Thu, 12 Sep 2024 16:03:56 +0000 Received: from corindon.frsi.fr (unknown [IPv6:2a01:cb05:8478:3800:e466:6ce2:8020:cfd9]) (Authenticated sender: francois.simon@free.fr) by smtp5-g21.free.fr (Postfix) with ESMTPSA id DEC4960143; Thu, 12 Sep 2024 18:03:48 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=free.fr; s=smtp-20201208; t=1726157030; bh=tsOa8GADF8fJLF30orCFZJqmI7AsY2eZ5btvOml6SOI=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=CMPH66Sg9Oe74+IOmGBvpXUX985i41F+pRpRdn5QH0Peu94YCSJcJ1t7XL1xXI63g bCKZpa2h+2xBkXuK1bevfSlJiGe2BNJ2KfnWmiWFzVaFnHvjNuwlU+AY3+oA3UVidg vpYCTxLm4hEJ8cHmlr7paLTdNIqKNwDDaWj2NfS1a814wYmIw386ph3JJIGt0MoYni alWqaTun0ELUghdIMjw5pP8B8K4SKsZoz5WFEVov+GH+kSbd4NH4guLpnWgqnuZyWW ZOm+isSFXNehUEZAHEXa+5nAwdzbCWIMsGN24W3qy9OXNcy0ZUcquhezcPlSsgg6i1 bJ4YEsNmA5NbA== Date: Thu, 12 Sep 2024 18:03:47 +0200 From: =?iso-8859-1?Q?Fran=E7ois?= SIMON To: Adrian Klaver Cc: pgsql-general@postgresql.org Subject: Re: post-bootstrap init : permission denied pg_description Message-ID: References: <241898171.198702953.1726138710864.JavaMail.root@zimbra28-e5.priv.proxad.net> <5616584c-97c1-4b65-a6d5-a957782c44c1@aklaver.com> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <5616584c-97c1-4b65-a6d5-a957782c44c1@aklaver.com> List-Id: List-Help: List-Subscribe: List-Post: List-Owner: List-Archive: Archived-At: Precedence: bulk Le Thu, Sep 12, 2024 at 08:20:59AM -0700, Adrian Klaver a écrit : > On 9/12/24 03:58, François SIMON wrote: > > Hello All, > > > > I am trying to install PostgreSQL 16.4 on AIX 7.1. > > > > I get an error at initdb step : > > > > performing post-bootstrap initialization ... 2024-09-12 12:09:07.075 CEST [14745748] FATAL: permission denied for table pg_description > > That looks like an issue with the user you are running the command as. > > What user is that? A normal user account. > What is the complete initdb command you used? I use no option. PGDATA is set to a subdirectory of $HOME for this user. $HOME is on a NFS volume. # export PGDATA=$HOME/data # initdb The files belonging to this database system will be owned by user "fsi". This user must also own the server process. The database cluster will be initialized with locale "C". The default database encoding has accordingly been set to "SQL_ASCII". The default text search configuration will be set to "english". Data page checksums are disabled. creating directory /net/h10/home/fsi/data ... ok creating subdirectories ... ok selecting dynamic shared memory implementation ... posix selecting default max_connections ... 100 selecting default shared_buffers ... 128MB selecting default time zone ... Europe/Paris creating configuration files ... ok running bootstrap script ... ok Thank you for your help. François