Error while importing DATABASE dump of bookbrainz on my local setup

hey ! @Prabhleen
i faced the same problem before .
you can follow these steps to solve that .

  1. find the PID of application running on 127.0.0.1 and port 5432
  2. kill the process with known PID
    3.and restart the server of postresql .

commands to use on ubuntu , according to steps mentioned above;

  1. netstat -tnlp
    it will list all programme and respective PID , just find the PID manually .
  2. kill “PID”
  3. sudo systemctl restart postgresql
if you don't find any PID , just do step 3

let me know if you got over this or not !!

3 Likes