Добрый день. Не могу настроить постгру так чтобы к базе могли подключатся из сети.
в postgresql.conf добавил такое. #------------------------------------------------------------------------------ # CONNECTIONS AND AUTHENTICATION #------------------------------------------------------------------------------
# - Connection Settings -
listen_addresses = '*' # what IP address(es) to listen on; # comma-separated list of addresses; # defaults to 'localhost', '*' = all # (change requires restart) port = 5432 # (change requires restart) max_connections = 100 # (change requires restart) # Note: Increasing max_connections costs ~400 bytes of shared memory per # connection slot, plus lock space (see max_locks_per_transaction). You might # also need to raise shared_buffers to support more connections. #superuser_reserved_connections = 3 # (change requires restart) #unix_socket_directory = '' # (change requires restart) #unix_socket_group = '' # (change requires restart) #unix_socket_permissions = 0777 # begin with 0 to use octal notation # (change requires restart) #bonjour_name = '' # defaults to the computer name # (change requires restart)
в вайле pg_hba.conf у меня следующее. @authcomment@
# TYPE DATABASE USER CIDR-ADDRESS METHOD
@remove-line-for-nolocal@# "local" is for Unix domain socket connections only @remove-line-for-nolocal@local all all @authmethod@ # IPv4 local connections: local all all @authmethod@ host all all 127.0.0.1/32 @authmethod@ host all all 192.168.1.0/24 trust host all all all @authmethod@ # IPv6 local connections: host all all ::1/128 @authmethod@ host all all all @authmethod@
каталог данных у меня /usr/share/pgsql.
ip у сервера 192.168.1.1 Пытаюсь через pgadmin3 подключится к 192.168.1.2 и получаю ошибку "Произошла ошибка:
Error connecting to the server: не удалось подсоединиться к серверу: В соединении отказано Работает ли сервер на хосте "192.168.1.1" и принимает ли TCP/IP соединения по порту 5432?"
Что у меня не так.
Перемещено Pi из Development