https://stackoverflow.com/questions/876522/creating-a-copy-of-a-database-in-postgresql
. . .
selengkapnya>>https://tecadmin.net/postgresql-allow-remote-connections/
. . .
selengkapnya>>When you have 2 container on same docker network, to connect to each other we do not need to use exposed port, instead we use default port (port defined inside container)
Example if we define port 5433:5432, if connect from outside network we should use 5433, but if we want to connect from inside network we can use 5432.
. . .
selengkapnya>>To show db size on postgresql, you can use psql command bellow:
\l+
Additional if you want to show table size, you can use this command bellow:
\d+
. . .
selengkapnya>>Secara default postgresql hanya menerima koneksi dari localhost, namun untuk beberapa case kadang diperlukan remote koneksi ke postgresql. Untuk itu perlu perubahan konfigurasi supaya postgresql data menerima koneksi dari luar. Pertama kita coba check dengan netstat. Pada terminal masukan perintah netstat -nlt. Perintah tersebut akan mengeluarkan list port yang. . .
selengkapnya>>