Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Terminating connection because of crash of another server process -Postgres

Tags:

postgresql

Everytime i run the same query i'm getting this error:

DETAIL: The postmaster has commanded this server process to roll back the current transaction and exit, because another server process exited abnormally and possibly corrupted shared memory. HINT: In a moment you should be able to reconnect to the database and repeat your command. server closed the connection unexpectedly This probably means the server terminated abnormally before or while processing the request. connection to server was lost

I'm using phpPgAdmin 5.1.

like image 461
1pa Avatar asked Jun 05 '17 18:06

1pa


1 Answers

A concurrent query in a different database session has crashed its server backend process. As a consequence, the whole database stops and performs crash recovery from the latest checkpoint.

You should look into the database server log to see what the problem is.

like image 167
Laurenz Albe Avatar answered Sep 23 '22 11:09

Laurenz Albe