PostgreSQL/Postgre SQL/Inet Port

Материал из SQL эксперт
Версия от 10:13, 26 мая 2010; Admin (обсуждение | вклад) (1 версия)
(разн.) ← Предыдущая | Текущая версия (разн.) | Следующая → (разн.)
Перейти к: навигация, поиск

port of the local connection

postgres=# -- port of the local connection
postgres=# select inet_server_port();
 inet_server_port
------------------
             5432
(1 row)
postgres=#



Port of the remote connection

postgres=# -- port of the remote connection
postgres=# select inet_client_port() ;
 inet_client_port
------------------
             4996
(1 row)
postgres=#