Re: BUG #18054: Permission denied.

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: arasopero(dot)1(at)gmail(dot)com
Cc: pgsql-bugs(at)lists(dot)postgresql(dot)org
Subject: Re: BUG #18054: Permission denied.
Date: 2023-08-14 03:27:19
Message-ID: 791480.1691983639@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-bugs

PG Bug reporting form <noreply(at)postgresql(dot)org> writes:
> I can not make backup and restoration of my db by this issues:
> baap(at)baap-notebookpc:~$ sudo su postgres
> [sudo] password for baap:
> postgres(at)baap-notebookpc:/home/baap$ psql
> could not change directory to "/home/baap": Permission denied
> psql (15.4 (Ubuntu 15.4-1.pgdg22.04+1))

You have not shown an actual failure here. The "could not change
directory" warning might be alarming, but you have not explained
how it causes you any problem.

What is actually happening, I think, is that psql is chdir'ing
to someplace else in pursuit of figuring out its own absolute
path, and then it tries to chdir back to where it was started
from, and fails because that directory is not readable by the
postgres user. It produces a warning about that but continues
anyway. So this doesn't affect your ability to use SQL
commands, but it might affect your ability to run meta-commands
that expect the current working directory to be "/home/baap".
However, given that psql could not read any files within that
directory, it's not clear to me what practical problem ensues
that wouldn't manifest in some other form anyway.

regards, tom lane

In response to

Browse pgsql-bugs by date

  From Date Subject
Next Message Thomas Munro 2023-08-14 03:56:06 Re: BUG #17928: Standby fails to decode WAL on termination of primary
Previous Message Julien Rouhaud 2023-08-14 03:00:14 Re: BUG #18054: Permission denied.