質問編集履歴
2
postgresql.confの内容を追記しました。
test
CHANGED
File without changes
|
test
CHANGED
@@ -42,6 +42,42 @@
|
|
42
42
|
|
43
43
|
|
44
44
|
|
45
|
+
postgresql.confの内容は下記になります。※コメントされていない部分のみ記載しました。
|
46
|
+
|
47
|
+
|
48
|
+
|
49
|
+
listen_addresses = '*' # what IP address(es) to listen on;
|
50
|
+
|
51
|
+
port = 5432 # (change requires restart)
|
52
|
+
|
53
|
+
max_connections = 100 # (change requires restart)
|
54
|
+
|
55
|
+
|
56
|
+
|
57
|
+
log_destination = 'stderr' # Valid values are combinations of
|
58
|
+
|
59
|
+
logging_collector = on # Enable capturing of stderr and csvlog
|
60
|
+
|
61
|
+
log_line_prefix = '%t ' # special values:
|
62
|
+
|
63
|
+
log_timezone = 'Asia/Tokyo'
|
64
|
+
|
65
|
+
datestyle = 'iso, ymd'
|
66
|
+
|
67
|
+
timezone = 'Asia/Tokyo'
|
68
|
+
|
69
|
+
lc_messages = 'Japanese_Japan.932' # locale for system error message
|
70
|
+
|
71
|
+
lc_monetary = 'Japanese_Japan.932' # locale for monetary formatting
|
72
|
+
|
73
|
+
lc_numeric = 'Japanese_Japan.932' # locale for number formatting
|
74
|
+
|
75
|
+
lc_time = 'Japanese_Japan.932' # locale for time formatting
|
76
|
+
|
77
|
+
default_text_search_config = 'pg_catalog.simple'
|
78
|
+
|
79
|
+
|
80
|
+
|
45
81
|
|
46
82
|
|
47
83
|
何卒よろしくお願いいたします。
|
1
pg_hba.confファイル内容の追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -30,4 +30,18 @@
|
|
30
30
|
|
31
31
|
|
32
32
|
|
33
|
+
pg_hba.confの内容は下記となります。※この部分だけコメントが外れていました。
|
34
|
+
|
35
|
+
# IPv4 local connections:
|
36
|
+
|
37
|
+
host all all 127.0.0.1/32 md5
|
38
|
+
|
39
|
+
# IPv6 local connections:
|
40
|
+
|
41
|
+
host all all ::1/128 md5
|
42
|
+
|
43
|
+
|
44
|
+
|
45
|
+
|
46
|
+
|
33
47
|
何卒よろしくお願いいたします。
|