How do I restart pgAdmin? [closed]
I'm using Ubuntu. I can't see any data and stuck on loading when pgAdmin window is idle for a while. How to restart pgAdmin in Ubuntu?
11 Answer
Run:
pkill pgadminOr detect your specific process PID (first number) with:
ps aux | grep pgadminThen run:
kill <PID NUMBER>