Re: Implications of resetting Postgres service in Windows

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: Albert Gostick <amgostick(at)navdata(dot)ca>
Cc: pgsql-novice(at)lists(dot)postgresql(dot)org
Subject: Re: Implications of resetting Postgres service in Windows
Date: 2020-09-01 17:56:16
Message-ID: 141594.1598982976@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-novice

Albert Gostick <amgostick(at)navdata(dot)ca> writes:
> We have Postgres 9.4 installed on Win2012. It was installed by an
> outside contractor years ago.
> I was asked to review and change all the passwords used in Postgres
> (along with another product) and noticed that on this server, the
> postgres service "postgresql-x64-9.4" runs under the "Network Service"
> account and it has a password associated with it.
> I sort of think I can guess the password used by the developer, but I
> cannot be sure.

> If I change this password, what are the implications:
> a) nothing - the password is only used to secure the service running
> or
> b) the password also needs to be changed somehow within the database
> (using pgAdmin I assume - although I have not found a screen there to
> change the superuser password).

(a) is correct; whatever password the operating system account may have
is irrelevant to, indeed not known to, the Postgres server.

You will need to be sure that the server can still be started
successfully, of course.

(It is of course possible that the previous admin used the same password
inside the database as for the OS account, but that would be a chance
coincidence from our standpoint.)

regards, tom lane

In response to

Browse pgsql-novice by date

  From Date Subject
Next Message Hannah Huang 2020-09-04 00:20:27 Confusions regards serializable transaction
Previous Message Albert Gostick 2020-09-01 17:23:33 Implications of resetting Postgres service in Windows