Last active
February 24, 2021 19:02
-
-
Save oleglomako/e37c7bb7cf7cbaa6f47d7cbf99750a77 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ссылка на источник: | |
http://ru-developer.blogspot.com/2015/10/pgadmin-postgresql.html | |
Проблема: | |
При подключении к удаленному серверу получаем ряд ошибок. | |
Сначала рабочее место жалуется, что сервер его не слушает, | |
потом, что у админа нет прав на подключение: | |
- "Server doesn’t listen" | |
- "Grant users remote access" | |
Решение: | |
1. Заходим в настройки сервера по пути | |
/etc/postgresql/9.3/main/ | |
2. Редактируем файл postgresql.conf | |
Вместо: | |
listen_addresses = 'localhost' | |
Вписываем: | |
listen_addresses = '*' | |
3. Редактируем файл pg_hba.conf | |
Вместо: | |
# IPv4 local connections: | |
host all all 127.0.0.1 md5 | |
Вписываем: | |
# IPv4 local connections: | |
host all all 0.0.0.0/0 md5 | |
4. Не забываем перезагрузить. | |
sudo service postgresql restart | |
Все. С этого момента можно все и отовсюду. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment