質問編集履歴
3
記述追加
test
CHANGED
@@ -1 +1 @@
|
|
1
|
-
|
1
|
+
Supervisorから動作させるとrequestの戻り値が 404になってしまう
|
test
CHANGED
File without changes
|
2
追記
test
CHANGED
@@ -1 +1 @@
|
|
1
|
-
supervisor
|
1
|
+
supervisorがうまく動作しない
|
test
CHANGED
File without changes
|
1
追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -53,3 +53,31 @@
|
|
53
53
|
404になってしまいます。
|
54
54
|
|
55
55
|
なぜでしょうか?
|
56
|
+
|
57
|
+
|
58
|
+
|
59
|
+
Supervisorの設定は
|
60
|
+
|
61
|
+
[program:sendf]
|
62
|
+
|
63
|
+
process_name=%(program_name)s_%(process_num)02d
|
64
|
+
|
65
|
+
command=/user/bin/python3 XXX.py
|
66
|
+
|
67
|
+
autostart=true
|
68
|
+
|
69
|
+
autorestart=true
|
70
|
+
|
71
|
+
startsecs=5
|
72
|
+
|
73
|
+
user=root
|
74
|
+
|
75
|
+
numprocs=1
|
76
|
+
|
77
|
+
redirect_stderr=true
|
78
|
+
|
79
|
+
stdout_logfile=/----/sendf.log
|
80
|
+
|
81
|
+
|
82
|
+
|
83
|
+
これです
|