Question
I can't start Postgresql
hi All,
can't start Postgresql container with :
p.p1 {margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Menlo; color: #000000; background-color: #ffffff} span.s1 {font-variant-ligatures: no-common-ligatures}
docker run --name pega74db -P -e POSTGRES_USER=pega -e POSTGRES_PASSWORD=pegasys pega74db
p.p1 {margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Menlo; color: #000000; background-color: #ffffff} p.p2 {margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Menlo; color: #000000; background-color: #ffffff; min-height: 13.0px} span.s1 {font-variant-ligatures: no-common-ligatures} log looks like:
LOG:received fast shutdown request
waiting for server to shut down...LOG:aborting any active transactions
.LOG:autovacuum launcher shutting down
LOG:shutting down
LOG:database system is shut down
done
server stopped
PostgreSQL init process complete; ready for start up.
LOG:database system was shut down at 2019-04-15 08:00:20 UTC
LOG:MultiXact member wraparound protections are now enabled
LOG:database system is ready to accept connections
LOG:autovacuum launcher started
^CLOG:received fast shutdown request
LOG:aborting any active transactions
LOG:autovacuum launcher shutting down
use the other command & check.
docker run --name pega74db -p 5432:5432 -e POSTGRES_USER=pega -e POSTGRES_PASSWORD=pegasys pega74db
Please make sure the port numbers are appropriate for your settings.
-
RC