How to access remotely PgAdmin4?

pgadmin-4

Solution

You need to add the following config options:

DEFAULT_SERVER = '0.0.0.0'

in config_local.py (in "pgAdmin4" folder).

If you also want to change the default port then also add

DEFAULT_SERVER_PORT = 5050

Problem

I Try access pgAdmin4 via browser instaled in another Notebook with Linux Ubuntu 16.04 in the same network in my house, but not access. In localhost... Ok But REMOTELY... DOES NOT ACCESS

Original source