An Azure managed PostgreSQL database service for app development and deployment.
Hi paxbun,
If the server is in restart state, you may need to wait till comes online.
What causes long recovery on Azure Database for PostgreSQL- Recent checkpoints are critical for fast server recovery. Once a restart happens, either it was a new instance (failover to healthy instance) or same instance (in-place restart) will connect to disk that has all logs, all WAL logs after the last successful checkpoint need to be applied to the data pages before the server starts to accept connections again.
Or you can retry using CLI command https://learn.microsoft.com/en-us/azure/postgresql/flexible-server/how-to-restart-server-cli
Thank You!