0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

AWS上のシステムを維持管理して得たハマりポイントその2

Posted at

#はじめに

前回の記事の続きでAWSでハマったポイントについて書きます。

#ELBのCookieはリクエスト毎に変わる!

  • ELB(ALB)のセッションパーシステンス用のCookie(AWSALB, AWSALBCORS)はリクエスト毎に新しいものが払出される。

  • 完全に直近のCookieを送信しなくてもパーシステンスされるが、設定された有効期限が切れたCookieを送信するとパーシステンスが解除されてしまう(他のサーバ号機に振り分けられてしまう)。

  • Cookieの有効期限はStickiness durationの値を変更することで1 秒から 7 日の間で指定可能。

  • 通常のブラウザであれば自動で新しいものに上書かれるが、スマホアプリ等でCookieを作り込みで管理している場合は注意が必要。

#サービス稼働直後からメールが送れない!

  • サービス稼働直後から、特定ドメインに対してメールが送信できない事象が発生。

  • EC2で構築したメール送信サーバ用のNAT GatewayのEIP(グローバルIP)がメール受信ブラックリストに登録されていたのが原因。

  • このIPは以前AWS上の別システムに付与されていた際にブラックリスト登録された模様。

  • 急ぎブラックリストの解除をブラックリスト管理に依頼しほどなく解決。

  • メールサーバをAWSで構築する場合には、以下を実施した方が良いと実感。

    1. 主要ドメイン宛てに一通りメール送信テストを実施。
    2. サービスイン前にEIPがブラックリストに登録されていないか主要ブラックリスト管理サイト(Smaphaus 等)で確認。

eip.png

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?