为什么重启后后台出现多个postgres 运行实例?

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

为什么重启后后台有多个postgres实例运行?

如何设置开机不启动?

这很正常。

Postgres 使用多进程架构而不是多线程架构。

这些不是 "multiple instances",而是 Postgres 在服务器启动期间创建的后台进程(因为它的多进程架构)。

参见手册中的Who has any documents that about PostgreSQL background processes? for more information on the background processes that Postgres starts or this example processlist

This presentation 还提供了一些关于 Postgres 后台进程的见解。