Ver Mensaje Individual
  #1 (permalink)  
Antiguo 30/01/2011, 15:14
Ylatoma
 
Fecha de Ingreso: agosto-2007
Mensajes: 12
Antigüedad: 17 años, 2 meses
Puntos: 0
Mensaje Error al configurar un servidor postgresql conexión remota

hola A todos espero me puedan ayudar a configurar un servidor pstgresql , lo estado configurando y cuando intento ingresar desde una maquina cliente me muestra el siguiente error

could not connect to server: Connection timed out (0x0000274C/10060) Is the server running on host "192.168.1.35" and accepting TCP/IP connections on port 5432?



pero si local mente si hay acceso el problema surge cuando la conexión es remota


Código SQL:
Ver original
  1. postgresql.conf
  2.  
  3. # - Connection Settings -
  4.  
  5. listen_addresses = '*'      # what IP address(es) TO listen ON;
  6.                     # comma-separated list OF addresses;
  7.                     # defaults TO 'localhost', '*' = ALL
  8.                     # (CHANGE requires restart)
  9. port = 5432             # (CHANGE requires restart)
  10. #tcpip_socket = TRUE
  11. max_connections = 100           # (CHANGE requires restart)
  12. # Note:  Increasing max_connections costs ~400 bytes OF shared memory per
  13. # connection slot, plus LOCK SPACE (see max_locks_per_transaction).
  14. #superuser_reserved_connections = 3 # (CHANGE requires restart)
  15. #unix_socket_directory = ''     # (CHANGE requires restart)
  16. #unix_socket_group = ''         # (CHANGE requires restart)
  17. #unix_socket_permissions = 0777     # BEGIN WITH 0 TO USE octal notation
  18.                     # (CHANGE requires restart)
  19. #bonjour = off              # advertise server via Bonjour
  20.                     # (CHANGE requires restart)
  21. #bonjour_name = ''          # defaults TO the computer name
  22.    
  23.  
  24.  
  25.  
  26.  
  27.  
  28.  
  29.  
  30. pg_hba.conf
  31.  
  32. # TYPE  DATABASE        USER            CIDR-ADDRESS            METHOD
  33.  
  34. # IPv4 LOCAL connections:
  35.  host    ALL             ALL             192.168.1.35/32            md5
  36. # IPv6 LOCAL connections:
  37. host    ALL             ALL             ::1/128                 md5
  38.  
  39.  
  40. #host   ALL         ALL     192.168.1.35 255.255.255.0 md5
  41. #host   ALL     ALL     192.168.1.35 255.255.255.0 trust
  42. #host   ALL     ALL     0.0.0.0 0.0.0.0 md5
  43. #host   bd_gestion  postgres    192.168.1.35 255.255.255.0 md5
con esta configuración local mente funciona perfectamente
pero cuando activo el tcpi_socket=true
no funciona

agradecería bastante su ayuda.