質問編集履歴

2

試したこと追記

2021/11/03 08:13

投稿

KNakamura
KNakamura

スコア1

test CHANGED
File without changes
test CHANGED
@@ -81,3 +81,95 @@
81
81
  ApacheからTomcatへの転送を行わずApacheのテストページを表示してみる
82
82
 
83
83
  →変わらず表示が遅いことがあるため、Apacheにアクセスするまでに問題があると想定しております。
84
+
85
+
86
+
87
+ ####(2021/11/3追記)
88
+
89
+ - GoogleChromeの検証画面確認
90
+
91
+ 以下の通りで、初期接続時に1.3分かかっていることが分かりました。
92
+
93
+ ![イメージ説明](ef19bca0723a875f3d3e257612e78650.png)
94
+
95
+
96
+
97
+ - Apacheのログ確認
98
+
99
+ /etc/httpd/logs/内のerror_logを確認したところ、気になる箇所として以下のようなログがありました。
100
+
101
+ ```
102
+
103
+ [Wed Oct 27 13:00:14.032817 2021] [proxy_http:error] [pid 23434] (20014)Internal error (specific information not available): [client 10.0.0.17:2796] AH01102: error reading status line from remote server localhost:8009
104
+
105
+ [Wed Oct 27 13:00:14.032845 2021] [proxy:error] [pid 23434] [client 10.0.0.17:2796] AH00898: Error reading from remote server returned by /
106
+
107
+ ```
108
+
109
+
110
+
111
+ [Qiitaの記事](https://qiita.com/kazukikudo/items/96f77f1648b8ce47dc06#proxyerror-reading-status-line-from-remote-server-%E5%95%8F%E9%A1%8C)によると、
112
+
113
+ 「リバースプロキシ(Apache)とバックエンドの間でコネクションを再利用した際にリバースプロキシからリクエストを送信するタイミングとバックエンド側がコネクションをクローズしたタイミングが一致した時に発生」
114
+
115
+ するもののようです。
116
+
117
+
118
+
119
+ /etc/httpd/conf.d/proxy-ajp.conf内に以下の記述を追加すると上記エラーは解消されましたが、
120
+
121
+ ```
122
+
123
+ SetEnv proxy-initial-not-pooled 1
124
+
125
+ ```
126
+
127
+
128
+
129
+ 接続速度の問題は解決していません。
130
+
131
+
132
+
133
+ error_logの全文は以下のとおりです。
134
+
135
+ ```
136
+
137
+ [Sun Oct 31 03:44:01.344488 2021] [lbmethod_heartbeat:notice] [pid 14065] AH02282: No slotmem from mod_heartmonitor
138
+
139
+ [Sun Oct 31 03:44:01.344539 2021] [http2:warn] [pid 14065] AH10034: The mpm module (prefork.c) is not supported by mod_http2. The mpm determines how things are processed in your server. HTTP/2 has more demands in this regard and the currently selected mpm will just not do. This is an advisory warning. Your server will continue to work, but the HTTP/2 protocol will be inactive.
140
+
141
+ [Sun Oct 31 03:44:01.344941 2021] [mpm_prefork:notice] [pid 14065] AH00163: Apache/2.4.48 () OpenSSL/1.0.2k-fips configured -- resuming normal operations
142
+
143
+ [Sun Oct 31 03:44:01.344949 2021] [core:notice] [pid 14065] AH00094: Command line: '/usr/sbin/httpd -D FOREGROUND'
144
+
145
+ [Wed Nov 03 16:26:59.151418 2021] [proxy:error] [pid 20083] (111)Connection refused: AH00957: AJP: attempt to connect to 127.0.0.1:8009 (localhost) failed
146
+
147
+ [Wed Nov 03 16:26:59.152888 2021] [proxy_ajp:error] [pid 20083] [client 10.0.1.252:21230] AH00896: failed to make connection to backend: localhost
148
+
149
+ [Wed Nov 03 16:27:05.494995 2021] [mpm_prefork:notice] [pid 14065] AH00170: caught SIGWINCH, shutting down gracefully
150
+
151
+ [Wed Nov 03 16:27:06.720868 2021] [suexec:notice] [pid 4638] AH01232: suEXEC mechanism enabled (wrapper: /usr/sbin/suexec)
152
+
153
+ [Wed Nov 03 16:27:06.743505 2021] [so:warn] [pid 4638] AH01574: module proxy_module is already loaded, skipping
154
+
155
+ [Wed Nov 03 16:27:06.798965 2021] [lbmethod_heartbeat:notice] [pid 4638] AH02282: No slotmem from mod_heartmonitor
156
+
157
+ [Wed Nov 03 16:27:06.799031 2021] [http2:warn] [pid 4638] AH10034: The mpm module (prefork.c) is not supported by mod_http2. The mpm determines how things are processed in your server. HTTP/2 has more demands in this regard and the currently selected mpm will just not do. This is an advisory warning. Your server will continue to work, but the HTTP/2 protocol will be inactive.
158
+
159
+ [Wed Nov 03 16:27:06.804169 2021] [mpm_prefork:notice] [pid 4638] AH00163: Apache/2.4.51 () OpenSSL/1.0.2k-fips configured -- resuming normal operations
160
+
161
+ [Wed Nov 03 16:27:06.804196 2021] [core:notice] [pid 4638] AH00094: Command line: '/usr/sbin/httpd -D FOREGROUND'
162
+
163
+ ```
164
+
165
+
166
+
167
+ - アプリケーションのログ確認
168
+
169
+ SpringBoot内のapplication.ymlにログファイル出力の設定を行い確認しましたが、接続が遅いときでも特にログ上で異常はありませんでした。
170
+
171
+
172
+
173
+ - tracetouteコマンドによる確認
174
+
175
+ これから行ってまいります。

1

ネットワーク構成図の修正、Route53設定の追記

2021/11/03 08:13

投稿

KNakamura
KNakamura

スコア1

test CHANGED
File without changes
test CHANGED
@@ -38,9 +38,23 @@
38
38
 
39
39
  #ネットワーク構成図
40
40
 
41
- ![イメージ説明](500219813b4ebddf9a06e467c1ec6711.jpeg)
41
+ ![イメージ説明](2970856aae82df1d91b7e6d49c8d6c44.jpeg)
42
42
 
43
43
  ( 初学者のため誤っている箇所がありましたら申し訳ございません )
44
+
45
+
46
+
47
+ (追記 Route53にElasticIPを設定しているような図となっていたので図を修正しました。申し訳ありませんでした。
48
+
49
+ Route53は以下の通り設定しております。
50
+
51
+ レコードA:ALBを設定
52
+
53
+ レコードNS, SOA, CNAME:お名前.comの設定
54
+
55
+ レコードTXT:GoogleAPIの検証用の設定)
56
+
57
+ ![イメージ説明](e106a6514a22d09e677ade7919ab1beb.png)
44
58
 
45
59
 
46
60