質問編集履歴

2

ps auxとmaillogを調べました。

2020/06/19 18:46

投稿

退会済みユーザー
test CHANGED
File without changes
test CHANGED
@@ -36,6 +36,8 @@
36
36
 
37
37
  追記
38
38
 
39
+ mastodonのページを開くことはできるのですが、新規ユーザ登録メールが送信されていないという事象が発生しています。
40
+
39
41
 
40
42
 
41
43
  ps aux |grep bundle
@@ -45,3 +47,23 @@
45
47
  home/mastodon/live/vendor/bundle/ruby/2.6.0/bin/sidekiq -C 5 -q mailer -q default -q mailers -q pull -q push
46
48
 
47
49
  と表示されます。
50
+
51
+
52
+
53
+ また、/var/log/maillogを確認したところ以下のようなログが複数残っていました。
54
+
55
+ postfix/smptd connect from xxxxxxx
56
+
57
+ postfix/smptd lost connection after CONNECT from xxxxxx
58
+
59
+ postfix/smptd disconect from xxxxxxx
60
+
61
+ postfix/anvil statistics: max connection rate 1/60s for (smpt:xxxx.xx.xxxx.xxxx) at Jun 18
62
+
63
+ postfix/anvil statistics: max connection count 1 for (smpt:xxxx.xx.xxxx.xxxx) at Jun 18
64
+
65
+ postfix/anvil statistics: max cache size 1 at Jun 18
66
+
67
+
68
+
69
+ ※xxxxxはすべて同じIPアドレス

1

ps auxでbundleコマンドを調べた結果、sidekiqが動作しているようです。

2020/06/19 18:46

投稿

退会済みユーザー
test CHANGED
File without changes
test CHANGED
@@ -29,3 +29,19 @@
29
29
  なぜbundleが常に実行され、cpu負荷が過大になっているのでしょうか?
30
30
 
31
31
  このbundleコマンドを停止させる方法はあるのでしょうか?
32
+
33
+
34
+
35
+
36
+
37
+ 追記
38
+
39
+
40
+
41
+ ps aux |grep bundle
42
+
43
+ でプロセスを確認したところ、
44
+
45
+ home/mastodon/live/vendor/bundle/ruby/2.6.0/bin/sidekiq -C 5 -q mailer -q default -q mailers -q pull -q push
46
+
47
+ と表示されます。