質問編集履歴

1

pg_hba\.confの中身を記述

2016/07/25 08:11

投稿

javabigineer
javabigineer

スコア87

test CHANGED
File without changes
test CHANGED
@@ -11,3 +11,37 @@
11
11
  org.postgresql.util.PSQLException: FATAL: pg_hba.conf ���z�X�g"IPアドレス"�A���[�U"postgres"�A�f�[�^�x�[�X"postgres, SSL�����p���G���g��������������
12
12
 
13
13
  Exception in thread "main" java.lang.NullPointerException
14
+
15
+
16
+
17
+ ```
18
+
19
+
20
+
21
+
22
+
23
+ # TYPE DATABASE USER ADDRESS METHOD
24
+
25
+
26
+
27
+ # IPv4 local connections:
28
+
29
+ host all all 127.0.0.1/32 trust
30
+
31
+ # IPv6 local connections:
32
+
33
+ host all all ::1/128 md5
34
+
35
+ # Allow replication connections from localhost, by a user with the
36
+
37
+ # replication privilege.
38
+
39
+ #host replication postgres 127.0.0.1/32 md5
40
+
41
+ #host replication postgres ::1/128 md5
42
+
43
+
44
+
45
+
46
+
47
+ ```