Pg hba.conf
From MapbenderWiki
[edit]
EN
Configuration file which is read by PostgreSQL to allow users with no password to access the data. This file contains a list of trusted clients - usually you will only enter machines in the immediate neighbourhood of the database server.
| #TYPE | DATABASE | USER | IP-ADDRESS | IP-MASK | METHOD |
| local | all | all | trust | ||
| host | all | all | 127.0.0.1 | 255.255.255.255 | trust |
| Example: | |||||
| host | all | all | 10.32.96.18 | 255.255.255.0 | trust |
[edit]
DE
Konfigurationsdatei, die von PostgreSQL gelesen wird, um Benutzern ohne Passwort Zugang zu den Daten zu ermöglichen. Diese Datei enthält eine Liste von vertrauenswürdigen Clients - aber normalerweise wird man nur mit Maschinen aus der direkten Nachbarschaft des Datenbank-Servers zu tun haben.
| #TYP | DATENBANK | BENUTZER | IP-ADDRESSE | IP-MASKE | METHODE |
| local | all | all | trust | ||
| host | all | all | 127.0.0.1 | 255.255.255.255 | trust |
| Beispiel: | |||||
| host | all | all | 10.32.96.18 | 255.255.255.0 | trust |

