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

AWSのEC2でrootになれなくなった場合の対処方法

Posted at

ubuntuユーザーのsudoers設定を変更してしまい、スーパーユーザーになれなくなった場合の対処法

  1. AWSマネジメントコンソールにログインする
  2. EC2を開く
  3. インスタンスを選択する
  4. インスタンスを停止する(停止時に削除されないように注意)
  5. 「アクションメニュー」の「インスタンスの設定」→「ユーザーデータの表示/変更」を選ぶ
  6. ユーザーデータに下記を記入

#cloud-config
bootcmd:

  • echo "ubuntu ALL=(ALL:ALL) NOPASSWD:ALL" >> /etc/sudoers
  1. 「保存」を押した後、インスタンスを起動する
  2. ubuntuユーザーで、パスワードなしで「sudo su -」が出来るか確認
  3. 出来ることが確認出来たら、インスタンスを停止し、ユーザーデータに記述したものを削除
  4. インスタンスを起動

以上。

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?