Search
 
SCRIPT & CODE EXAMPLE
 

SQL

postgresql allow remote connection

Edit postgresql.conf file:
...
listen_addresses = '*'

Edit pg_hba.conf file:
...
host all all 0.0.0.0/0 md5
Comment

postgresql allow remote connections


listen_addresses = '*'

Comment

postgresql allow remote connections


host    all             all              0.0.0.0/0                       md5
host    all             all              ::/0                            md5

Comment

postgresql allow remote connections


listen_addresses = 'localhost'

Comment

PREVIOUS NEXT
Code Example
Sql :: MySQL FIND_IN_SET() 
Sql :: get row affected mysql 
Sql :: mysql - find in comma separated string of values 
Sql :: insert a select statement into a table 
Sql :: show column from sql server 
Sql :: Select last row from SQL Table 
Sql :: get day in sql 
Sql :: show procedures mysql 
Sql :: enable service broker in sql server 
Sql :: oracle add auto_increment column to existing table 
Sql :: sql server obtener fecha en formato dd/mm/yyyy 
Sql :: oracle pl sql source 
Sql :: mysql current date 
Sql :: set nocount on sql 
Sql :: sqlite show table definition 
Sql :: sql concat string with column value 
Sql :: mysql add column 
Sql :: drop index oracle 
Sql :: update value postgresql 
Sql :: sql duplicate rows 
Sql :: give a column name to values generated from case statement in sql 
Sql :: c# sql select 
Sql :: dateadd in sql 
Sql :: mysql subdate 
Sql :: mysql case when on date 
Sql :: rename table column postgresql 
Sql :: pad zero sql server 
Sql :: mysql replace string in table 
Sql :: sql select where more than one record exists 
Sql :: mysql email validation 
ADD CONTENT
Topic
Content
Source link
Name
7+5 =