質問編集履歴

1

ログの追加

2020/04/01 00:47

投稿

LungTel
LungTel

スコア4

test CHANGED
File without changes
test CHANGED
@@ -13,3 +13,87 @@
13
13
 
14
14
 
15
15
  解決方法が知りたいです。
16
+
17
+ Apache(×)だと
18
+
19
+ Using selector: SelectSelector\r
20
+
21
+ djangoのみ(〇)だと
22
+
23
+ Using selector: SelectSelector
24
+
25
+ 違いなのですが...
26
+
27
+
28
+
29
+ 実行コマンドは下記です。
30
+
31
+ c:\Apache24\bin\httpd.exe -d C:/Apache24
32
+
33
+
34
+
35
+ 下記、Apacheのerrorログになります。【シャットダウンしてから~起動】
36
+
37
+ [Wed Apr 01 09:16:11.573881 2020] [mpm_winnt:notice] [pid 14804:tid 976] AH00422: Parent: Received shutdown signal -- Shutting down the server.
38
+
39
+ [Wed Apr 01 09:16:41.574530 2020] [mpm_winnt:notice] [pid 14804:tid 976] AH00431: Parent: Forcing termination of child process 15976
40
+
41
+ [Wed Apr 01 09:17:56.170620 2020] [mpm_winnt:notice] [pid 17836:tid 880] AH00455: Apache/2.4.41 (Win32) mod_wsgi/4.7.1 Python/3.6 configured -- resuming normal operations
42
+
43
+ [Wed Apr 01 09:17:56.173121 2020] [mpm_winnt:notice] [pid 17836:tid 880] AH00456: Apache Lounge VS16 Server built: Aug 9 2019 16:32:28
44
+
45
+ [Wed Apr 01 09:17:56.173121 2020] [core:notice] [pid 17836:tid 880] AH00094: Command line: 'c:\Apache24\bin\httpd.exe -d C:/Apache24'
46
+
47
+ [Wed Apr 01 09:17:56.286263 2020] [mpm_winnt:notice] [pid 17836:tid 880] AH00418: Parent: Created child process 12952
48
+
49
+ [Wed Apr 01 09:17:56.922791 2020] [mpm_winnt:notice] [pid 12952:tid 992] AH00354: Child: Starting 64 worker threads.
50
+
51
+ [Wed Apr 01 09:19:00.860115 2020] [wsgi:error] [pid 12952:tid 1488] **Using selector: SelectSelector\r
52
+
53
+ **
54
+
55
+
56
+
57
+
58
+
59
+ ※補足
60
+
61
+ vsでdjangoのみで実行する際は、下記コマンドを実行しています。
62
+
63
+ python manage.py runserver
64
+
65
+
66
+
67
+ 【Terminalに出力されたもの】
68
+
69
+ **Using selector: SelectSelector**
70
+
71
+ Using selector: SelectSelector
72
+
73
+ Watching for file changes with StatReloader
74
+
75
+ Watching for file changes with StatReloader
76
+
77
+ Performing system checks...
78
+
79
+
80
+
81
+ System check identified no issues (0 silenced).
82
+
83
+ (0.000)
84
+
85
+ SELECT name, type FROM sqlite_master
86
+
87
+ WHERE type in ('table', 'view') AND NOT name='sqlite_sequence'
88
+
89
+ ORDER BY name; args=None
90
+
91
+ (0.000) SELECT "django_migrations"."id", "django_migrations"."app", "django_migrations"."name", "django_migrations"."applied" FROM "django_migrations"; args=()
92
+
93
+ April 01, 2020 - 09:27:21
94
+
95
+ Django version 3.0.4, using settings 'connects.settings'
96
+
97
+ Starting development server at http://127.0.0.1:8000/
98
+
99
+ Quit the server with CTRL-BREAK