3
1

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 3 years have passed since last update.

GCPのUbuntu VM上でUFWを有効化してSSH接続ができなくなった時の解決方法

Last updated at Posted at 2021-01-12

直面した問題

GCPのUbuntu VM上で色々いじっていた所、UFWを有効化したまま切断 => 再起動をしてしまいssh接続等ができなくなった。

これで解決した

VMインスタンス情報に、カスタムメタデータとして UFWを無効化する起動スクリプト を記述する。
その後、VMインスタンスを再起動する。

UFW無効化.sh
#! /bin/bash
/usr/sbin/ufw disable

↓こんな感じ。 startup-script をキーにすることで起動スクリプトとして認識される。
image.png

3
1
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
3
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?