新建數據庫提示: [PostgreSQL] "template1" being accessed by other users 說明該template1模板正在被人鏈接。我選擇的解決方案是: 查詢出鏈接該數據庫的進程,並將其殺死(比較暴力)。 select pg_terminate_backend(pid) from pg_stat_activity where DATNAME = 'template1';