Обсуждение: Database creation taking too long

Поиск
Список
Период
Сортировка

Database creation taking too long

От
Mauricio Alejandro De León Cárdenas
Дата:
Hi, im trying to create a new user within a rails app using the following command:
createuser --createdb --login -P myapp

It's been running for almost 1 hour but nothing happens (trying to run it on windows 10 with git bash). Is this normal?

Aviso de confidencialidad y exención - Confidential notice and legal advice disclaimer - 
www.udem.edu.mx/disclaimer

Re: Database creation taking too long

От
Tom Lane
Дата:
=?UTF-8?Q?Mauricio_Alejandro_De_Le=C3=B3n_C=C3=A1rdenas?= <mauricio.deleonc@udem.edu> writes:
> Hi, im trying to create a new user within a rails app using the following
> command:
> createuser --createdb --login -P myapp

> It's been running for almost 1 hour but nothing happens (trying to run it
> on windows 10 with git bash). Is this normal?

Sounds like it's blocked on a lock, perhaps.  Try opening another
connection to the DB and snooping around in pg_locks to see what's
blocking it.

            regards, tom lane