sunwarr10r
sunwarr10r

Reputation: 4787

Why are there multiple instances of postgres running in the background after restart?

Why are there multiple instances of postgres running in the background after restart?

enter image description here

How can I configure it not to start on booting up the system?

Upvotes: 1

Views: 3149

Answers (1)

user330315
user330315

Reputation:

That's perfectly normal.

Postgres uses a multi-process architecture rather than a multi-threaded architecture.

Those are not "multiple instances", but the background processes that Postgres creates during the server startup (because of its multi-process architecture).

See Who has any documents that about PostgreSQL background processes? for more information on the background processes that Postgres starts or this example processlist in the manual

This presentation also gives some insight about the Postgres background processes.

Upvotes: 6

Related Questions