質問編集履歴
2
試したことの追記
title
CHANGED
|
File without changes
|
body
CHANGED
|
@@ -20,10 +20,13 @@
|
|
|
20
20
|
|
|
21
21
|
```
|
|
22
22
|
>netstat -ano | findstr 0.0.0.0:80
|
|
23
|
-
//上記コマンドで表示されたプロセスIDをキル
|
|
23
|
+
// 上記コマンドで表示されたプロセスIDをキル
|
|
24
24
|
|
|
25
25
|
> taskkill /pid 27496 /f
|
|
26
26
|
成功:PID 27496のプロセスは強制終了されました。
|
|
27
|
+
|
|
28
|
+
>netstat -ano | findstr 0.0.0.0:80
|
|
29
|
+
// 別のプロセスidで80番ポートが動いている...
|
|
27
30
|
```
|
|
28
31
|
### 補足情報(FW/ツールのバージョンなど)
|
|
29
32
|
|
1
試したことの追記
title
CHANGED
|
File without changes
|
body
CHANGED
|
@@ -9,6 +9,9 @@
|
|
|
9
9
|
> nginx -s stop
|
|
10
10
|
nginx: [error] CreateFile() "C:\nginx/logs/nginx.pid" failed (2: The system cannot find the file specified)
|
|
11
11
|
|
|
12
|
+
> nginx.exe -s quit
|
|
13
|
+
nginx: [error] CreateFile() "C:\nginx/logs/nginx.pid" failed (2: The system cannot find the file specified)
|
|
14
|
+
|
|
12
15
|
> nginx -s quit
|
|
13
16
|
nginx: [error] CreateFile() "C:\nginx/logs/nginx.pid" failed (2: The system cannot find the file specified)
|
|
14
17
|
```
|