質問編集履歴

2

Windowsイベントログ追記

2019/07/26 02:49

投稿

rmrmnrm
rmrmnrm

スコア139

test CHANGED
File without changes
test CHANGED
@@ -269,3 +269,19 @@
269
269
 
270
270
 
271
271
  ```
272
+
273
+ ### Windowsイベントログ
274
+
275
+ Windowsログ>システム
276
+
277
+ 「xampp」で検索したところ以下のエラーを発見しました。
278
+
279
+ ただ発生時間が切り替え操作時でなくPCシャットダウンした時間のようなので、XAMPPを立ち上げたまま終了しようとしたために発生したものかもしれません。
280
+
281
+ ```
282
+
283
+ Caption XAMPP Control Panel v3.2.4 [ Compiled: Jun 5th 2019 ]: xampp-control.exe - アプリケーション エラー
284
+
285
+ Message 0x000000000065B2AE の命令が 0x0000000000000042 のメモリを参照しました。メモリが read になることはできませんでした。 プログラムを終了するには [OK] をクリックしてください
286
+
287
+ ```

1

エラーログ追記

2019/07/26 02:49

投稿

rmrmnrm
rmrmnrm

スコア139

test CHANGED
File without changes
test CHANGED
@@ -201,3 +201,71 @@
201
201
  なにか作業漏れがあるでしょうか。ご指摘いただけると幸いです。
202
202
 
203
203
  以上、よろしくお願いします。
204
+
205
+
206
+
207
+ ### apache error_log
208
+
209
+
210
+
211
+ PHP7.2起動→停止→5.6変更→起動(エラーで終了)→7.1変更→起動→停止
212
+
213
+
214
+
215
+ 上記の作業を行いエラーログを出力しましたが、エラーログにはPHP5.6起動時のログがありませんでした。
216
+
217
+ ```
218
+
219
+ #PHP7.2起動
220
+
221
+ [ssl:warn] [pid 19296:tid 812] AH01909: www.example.com:443:0 server certificate does NOT include an ID which matches the server name
222
+
223
+ [core:warn] [pid 19296:tid 812] AH00098: pid file C:/xampp/apache/logs/httpd.pid overwritten -- Unclean shutdown of previous Apache run?
224
+
225
+ [ssl:warn] [pid 19296:tid 812] AH01909: www.example.com:443:0 server certificate does NOT include an ID which matches the server name
226
+
227
+ [mpm_winnt:notice] [pid 19296:tid 812] AH00455: Apache/2.4.39 (Win64) OpenSSL/1.1.1c PHP/7.2.20 configured -- resuming normal operations
228
+
229
+ [mpm_winnt:notice] [pid 19296:tid 812] AH00456: Apache Lounge VC15 Server built: May 29 2019 11:22:50
230
+
231
+ [core:notice] [pid 19296:tid 812] AH00094: Command line: 'c:\xampp\apache\bin\httpd.exe -d C:/xampp/apache'
232
+
233
+ [mpm_winnt:notice] [pid 19296:tid 812] AH00418: Parent: Created child process 8408
234
+
235
+ [Wed Jul 24 11:38:23.834214 2019] which matches the server name
236
+
237
+ [ssl:warn] [pid 8408:tid 688] AH01909: www.example.com:443:0 server certificate does NOT include an ID which matches the server name
238
+
239
+ [mpm_winnt:notice] [pid 8408:tid 688] AH00354: Child: Starting 150 worker threads.
240
+
241
+
242
+
243
+ #この間にPHP5.6に変更し起動エラーを起こしている
244
+
245
+
246
+
247
+ #PHP7.1起動
248
+
249
+ [ssl:warn] [pid 22256:tid 716] AH01909: www.example.com:443:0 server certificate does NOT include an ID which matches the server name
250
+
251
+ [core:warn] [pid 22256:tid 716] AH00098: pid file C:/xampp/apache/logs/httpd.pid overwritten -- Unclean shutdown of previous Apache run?
252
+
253
+ [ssl:warn] [pid 22256:tid 716] AH01909: www.example.com:443:0 server certificate does NOT include an ID which matches the server name
254
+
255
+ [[mpm_winnt:notice] [pid 22256:tid 716] AH00455: Apache/2.4.39 (Win64) OpenSSL/1.1.1c PHP/7.1.30 configured -- resuming normal operations
256
+
257
+ [mpm_winnt:notice] [pid 22256:tid 716] AH00456: Apache Lounge VC15 Server built: May 29 2019 11:22:50
258
+
259
+ [core:notice] [pid 22256:tid 716] AH00094: Command line: 'c:\xampp\apache\bin\httpd.exe -d C:/xampp/apache'
260
+
261
+ [mpm_winnt:notice] [pid 22256:tid 716] AH00418: Parent: Created child process 16816
262
+
263
+ [ssl:warn] [pid 16816:tid 604] AH01909: www.example.com:443:0 server certificate does NOT include an ID which matches the server name
264
+
265
+ [ssl:warn] [pid 16816:tid 604] AH01909: www.example.com:443:0 server certificate does NOT include an ID which matches the server name
266
+
267
+ [mpm_winnt:notice] [pid 16816:tid 604] AH00354: Child: Starting 150 worker threads.
268
+
269
+
270
+
271
+ ```