質問編集履歴
5
追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -58,6 +58,48 @@
|
|
58
58
|
|
59
59
|
![イメージ説明](e5620ce76f996223362038d5b4be03d3.png)
|
60
60
|
|
61
|
+
### sudo journalctl -u gunicornした結果
|
62
|
+
|
63
|
+
```
|
64
|
+
|
65
|
+
Nov 03 08:05:04 blog-django systemd[1]: Started gunicorn daemon.
|
66
|
+
|
67
|
+
Nov 03 08:05:04 blog-django systemd[1]: gunicorn.service: Main process exited, code=exited, status=200/CHDIR
|
68
|
+
|
69
|
+
Nov 03 08:05:04 blog-django systemd[1]: gunicorn.service: Failed with result 'exit-code'.
|
70
|
+
|
71
|
+
Nov 03 11:02:38 blog-django systemd[1]: Started gunicorn daemon.
|
72
|
+
|
73
|
+
Nov 03 11:02:38 blog-django systemd[14194]: gunicorn.service: Changing to the requested working directory failed: No such file or directory
|
74
|
+
|
75
|
+
Nov 03 11:02:38 blog-django systemd[14194]: gunicorn.service: Failed at step CHDIR spawning /home/hogehoge/anaconda3/envs/blog-django/bin/gunicorn: No such file or directory
|
76
|
+
|
77
|
+
Nov 03 11:02:38 blog-django systemd[1]: gunicorn.service: Main process exited, code=exited, status=200/CHDIR
|
78
|
+
|
79
|
+
Nov 03 11:02:38 blog-django systemd[1]: gunicorn.service: Failed with result 'exit-code'.
|
80
|
+
|
81
|
+
Nov 03 11:24:08 blog-django systemd[1]: Started gunicorn daemon.
|
82
|
+
|
83
|
+
Nov 03 11:24:08 blog-django systemd[14279]: gunicorn.service: Changing to the requested working directory failed: No such file or directory
|
84
|
+
|
85
|
+
Nov 03 11:24:08 blog-django systemd[14279]: gunicorn.service: Failed at step CHDIR spawning /home/hogehoge/anaconda3/envs/blog-django/bin/gunicorn: No such file or directory
|
86
|
+
|
87
|
+
Nov 03 11:24:08 blog-django systemd[1]: gunicorn.service: Main process exited, code=exited, status=200/CHDIR
|
88
|
+
|
89
|
+
Nov 03 11:24:08 blog-django systemd[1]: gunicorn.service: Failed with result 'exit-code'.
|
90
|
+
|
91
|
+
Nov 03 11:24:50 blog-django systemd[1]: Started gunicorn daemon.
|
92
|
+
|
93
|
+
Nov 03 11:24:50 blog-django systemd[14295]: gunicorn.service: Changing to the requested working directory failed: No such file or directory
|
94
|
+
|
95
|
+
Nov 03 11:24:50 blog-django systemd[14295]: gunicorn.service: Failed at step CHDIR spawning /home/hogehoge/anaconda3/envs/blog-django/bin/gunicorn: No such file or directory
|
96
|
+
|
97
|
+
Nov 03 11:24:50 blog-django systemd[1]: gunicorn.service: Main process exited, code=exited, status=200/CHDIR
|
98
|
+
|
99
|
+
Nov 03 11:24:50 blog-django systemd[1]: gunicorn.service: Failed with result 'exit-code'.
|
100
|
+
|
101
|
+
```
|
102
|
+
|
61
103
|
|
62
104
|
|
63
105
|
### nginxの設定ファイル
|
4
追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -57,3 +57,25 @@
|
|
57
57
|
僕は特にAIアプリは作っておらず、自分のブログを恒常的に稼働させるためにgunicornやnginxが必要そうだということでこちらの[動画](https://www.youtube.com/watch?v=_87RY9rb79I&t=9s)を参考にさせていただいております。
|
58
58
|
|
59
59
|
![イメージ説明](e5620ce76f996223362038d5b4be03d3.png)
|
60
|
+
|
61
|
+
|
62
|
+
|
63
|
+
### nginxの設定ファイル
|
64
|
+
|
65
|
+
```
|
66
|
+
|
67
|
+
server {
|
68
|
+
|
69
|
+
server_name {外部IP};
|
70
|
+
|
71
|
+
location / {
|
72
|
+
|
73
|
+
include proxy_params;
|
74
|
+
|
75
|
+
proxy_pass http://unix:/home/hogehoge/blog_django/blog_django.sock;
|
76
|
+
|
77
|
+
}
|
78
|
+
|
79
|
+
}
|
80
|
+
|
81
|
+
```
|
3
追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -50,8 +50,10 @@
|
|
50
50
|
|
51
51
|
gunicorn.service以外に必要なファイルなどありますでしょうか?知見をお持ちの方、よろしくお願いいたします。
|
52
52
|
|
53
|
-
【追記】
|
53
|
+
## 【追記】
|
54
54
|
|
55
55
|
### 参考にしたもの
|
56
56
|
|
57
|
+
僕は特にAIアプリは作っておらず、自分のブログを恒常的に稼働させるためにgunicornやnginxが必要そうだということでこちらの[動画](https://www.youtube.com/watch?v=_87RY9rb79I&t=9s)を参考にさせていただいております。
|
58
|
+
|
57
59
|
![イメージ説明](e5620ce76f996223362038d5b4be03d3.png)
|
2
追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -50,7 +50,7 @@
|
|
50
50
|
|
51
51
|
gunicorn.service以外に必要なファイルなどありますでしょうか?知見をお持ちの方、よろしくお願いいたします。
|
52
52
|
|
53
|
-
|
53
|
+
【追記】
|
54
54
|
|
55
55
|
### 参考にしたもの
|
56
56
|
|
1
追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -49,3 +49,9 @@
|
|
49
49
|
|
50
50
|
|
51
51
|
gunicorn.service以外に必要なファイルなどありますでしょうか?知見をお持ちの方、よろしくお願いいたします。
|
52
|
+
|
53
|
+
|
54
|
+
|
55
|
+
### 参考にしたもの
|
56
|
+
|
57
|
+
![イメージ説明](e5620ce76f996223362038d5b4be03d3.png)
|