amazon EC2を使用していますが、サーバーでUFWを有効にし、ログアウトした他のルールを追加していません。ルールが指定されていないため、sshにログインできず、Webサイトもダウンしています。誰かが今ufwを無効にする方法を手伝ってくれますか?
助けてくれてありがとう、
私はその問題の解決策を見つけました。以下の点で説明しました。
私は同じ問題を抱えており、これらの手順が機能することがわかりました。
インスタンスを停止します
「インスタンス設定」->「ユーザーデータの表示/変更」に移動します
これを貼り付けます
Content-Type: multipart/mixed; boundary="//"
MIME-Version: 1.0
--//
Content-Type: text/cloud-config; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: attachment; filename="cloud-config.txt"
#cloud-config
cloud_final_modules:
- [scripts-user, always]
--//
Content-Type: text/x-shellscript; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: attachment; filename="userdata.txt"
#!/bin/bash
ufw disable
iptables -L
iptables -F
--//
それがあなたのために働くことを願っています。