PostgreSQL - Tipps und Tricks: Unterschied zwischen den Versionen

Aus Geoinformation HSR
Wechseln zu: Navigation, Suche
(Die Seite wurde neu angelegt: Siehe auch: * PostgreSQL == Konfiguration == Die pg_hba.conf kann so eingestellt werden, dass bei der Ausführung von PostgreSQL-Kommandozeilen-Tools kein Passwo...)
 
Zeile 1: Zeile 1:
 
 
Siehe auch:
 
Siehe auch:
 
* [[PostgreSQL]]
 
* [[PostgreSQL]]
Zeile 12: Zeile 11:
 
neu:
 
neu:
 
   # IPv4 local connections:
 
   # IPv4 local connections:
   host   all   all   127.0.0.1/32   trust
+
   host   all         all         127.0.0.1/32         trust

Version vom 14. Oktober 2007, 15:29 Uhr

Siehe auch:

Konfiguration

Die pg_hba.conf kann so eingestellt werden, dass bei der Ausführung von PostgreSQL-Kommandozeilen-Tools kein Passwort übertragen werden muss.

Bsp mit 127.0.0.1: Anstelle

 # IPv4 local connections:
 host    all         all         127.0.0.1/32          md5

neu:

 # IPv4 local connections:
 host    all         all         127.0.0.1/32          trust