Ik heb UltraSQL 1.0.5b hier geinstalleerd. Alles ging goed, de installatie, de configuratie.
Postmaster wil ook gewoon starten, en is gereed voor verbindingen. Maar als ik nu bijv. met psql wil connecten, dan krijg ik van psql de volgende error:
Postmaster geeft de volgende output:
Hier zijn stukjes van de configuratie:
PG_HBA.CONF
POSTGRESQL.CONF
Weet iemand hier een oplossing voor of is bekend met dit probleem? Ik heb alles al geprobeerd wat hier staat: http://techdocs.postgresql.org/guides/InstallingOnWindows . Helaas zonder succes...
Postmaster wil ook gewoon starten, en is gereed voor verbindingen. Maar als ik nu bijv. met psql wil connecten, dan krijg ik van psql de volgende error:
code:
1
2
3
4
| C:\Program Files\UltraSQL\bin>psql psql: server closed the connection unexpectedly This probably means the server terminated abnormally before or while processing the request. |
Postmaster geeft de volgende output:
code:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
| C:\Program Files\UltraSQL\bin>postmaster 2004-03-01 21:47:55 DEBUG: database system was interrupted at 2004-03-01 21:30 :00 West-Europa 2004-03-01 21:47:55 DEBUG: checkpoint record is in pg_xlog/0000000000000000 at offset 2785836 2004-03-01 21:47:55 DEBUG: redo record is at 0/2A822C; undo record is at 0/0; shutdown TRUE 2004-03-01 21:47:55 DEBUG: next transaction id: 195; next oid: 16631 2004-03-01 21:47:55 DEBUG: database system was not properly shut down; automat ic recovery in progress 2004-03-01 21:47:56 DEBUG: ReadRecord: record with zero length at 0/2A826C 2004-03-01 21:47:56 DEBUG: redo is not required 2004-03-01 21:48:00 DEBUG: database system is ready 2004-03-01 21:48:17 FATAL 1: getpeername() failed |
Hier zijn stukjes van de configuratie:
PG_HBA.CONF
code:
(de bovenstaande x'en zijn vervangen ivm publiceren eigen IP)1
2
3
4
5
6
| ... # TYPE DATABASE IP_ADDRESS MASK AUTH_TYPE local all trust host all 127.0.0.1 255.255.255.255 trust host all 10.0.0.150 255.255.255.255 trust host all xx.xxx.xxx.xx 255.255.255.255 trust |
POSTGRESQL.CONF
code:
1
2
3
4
5
6
7
8
9
10
11
12
13
| ... # # Connection Parameters # tcpip_socket = true #ssl = false #max_connections = 32 port = 5432 #hostname_lookup = false #show_source_port = false ... |
Weet iemand hier een oplossing voor of is bekend met dit probleem? Ik heb alles al geprobeerd wat hier staat: http://techdocs.postgresql.org/guides/InstallingOnWindows . Helaas zonder succes...