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 1vt0Zw-00Ecks-2r for pgsql-novice@arkaria.postgresql.org; Thu, 19 Feb 2026 09:44:12 +0000 Received: from localhost ([127.0.0.1] helo=malur.postgresql.org) by malur.postgresql.org with esmtp (Exim 4.96) (envelope-from ) id 1vt0Zv-00359V-15 for pgsql-novice@arkaria.postgresql.org; Thu, 19 Feb 2026 09:44:11 +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 1vt0Zv-00359N-0I for pgsql-novice@lists.postgresql.org; Thu, 19 Feb 2026 09:44:11 +0000 Received: from gw.citecs.de ([212.9.189.66]) by magus.postgresql.org with esmtp (Exim 4.98.2) (envelope-from ) id 1vt0Zq-000000007Sn-2imO for pgsql-novice@lists.postgresql.org; Thu, 19 Feb 2026 09:44:09 +0000 Received: from app.citecs ([10.0.0.50]) by gw.citecs.de with esmtp (Exim 3.35 #1 (Debian)) id 1vt0Zo-0003cg-00; Thu, 19 Feb 2026 10:44:04 +0100 Received: from chris by app.citecs proof01 gvjztgcz with local (Exim 4.80) id 1vt0Zo-0002Q1-76; Thu, 19 Feb 2026 10:44:04 +0100 Date: Thu, 19 Feb 2026 10:44:04 +0100 From: chris To: "Subramanian,Ramachandran" Cc: "pgsql-novice@lists.postgresql.org" Subject: Re: How to check completeness of installation Message-ID: <20260219094404.GA1707@app.citecs> References: <628793fdc61e42df9b1cd945e2141a4d@alte-leipziger.de> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <628793fdc61e42df9b1cd945e2141a4d@alte-leipziger.de> X-PGP-Fingerprint: 4096R/3B7D0DF2 / B865 A021 AC93 B61F 4476 32A6 04A6 FBDD 3B7D 0DF2 X-PGP-Key-Url: https://www.citecs.de/pgpkey.chris.asc X-PGP-Key: https://www.citecs.de/pgpkey.chris.asc Organization: private User-Agent: Mutt/1.5.21 (2010-09-15) List-Id: List-Help: List-Subscribe: List-Post: List-Owner: List-Archive: Archived-At: Precedence: bulk On Thu, Feb 19, 2026 at 08:59:29AM +0000, Subramanian,Ramachandran wrote: > Hello, > > we are in a Situation where Linux boxes are delivered to us with postgres installed. > Our group cannot install or upgrade. We do not have root privileges. > > Yesterday I found out pg_waldump bin file is missing and today I found out > pg_archivecleanup is also missing. I am new to postgres and do not have > a complete list of executables that are expected to be present. Referring do Debian installations you should be able (unless it's explicitely prohibited) to use the debian package management to look around. First you might want to look at the packages related to postgres installed: dpkg -l | grep postgres then you can take a look at which files they contain, like: dpkg -L postgresql-server-dev-17 For RPM based distribution there are similar ways, just take a look at "man rpm". > 1. Is there any command or method with which we as DBAs can check for completeness of installation. "completeness" is a vage description as there are numerous optional components. > 2. Is there any way with which we can install Postgress WITHOUT ROOT privileges. You really should not do this, for several reasons. Just talk to the administration folks. HTH, chris