SSH 到 EC2 執行個體逾時

SSH 到 EC2 執行個體逾時

我建立了一個AWS EC2 實例來在其上設定prometheus,我建立了一個新的ssh 金鑰對並使用terraform 來配置該實例,我使用實例類型為「t3.large」和120GB 的SSD 磁碟,作業系統為Ubuntu 18.04,並且我可以正常 ssh 到該實例。到現在為止一切都還好。

使用 docker 安裝 Prometheus 和 Grafana 一段時間後,我回到實例,發現我無法登入!我遇到以下問題:

ssh: connect to host [ip] port 22: Connection timed out

我確信這不是互聯網連接問題,因為我可以 ssh 到其他實例。使用 IP 位址或 DNS 時問題相同,連接埠 22 也開放。

這是我使用的 terraform 腳本,但我認為它與此無關:

provider "aws" {
  profile = "default"
  region  = "eu-west-1"
}

resource "aws_key_pair" "ubuntu" {
  key_name   = "ubuntu"
  public_key = file("ubuntu.pem.pub")
}

resource "aws_security_group" "ubuntu" {
  name        = "ubuntu-security-group"
  description = "Allow HTTP, HTTPS and SSH traffic"

  ingress {
    description = "SSH"
    from_port   = 22
    to_port     = 22
    protocol    = "tcp"
    cidr_blocks = ["0.0.0.0/0"]
  }

  ingress {
    description = "HTTPS"
    from_port   = 443
    to_port     = 443
    protocol    = "tcp"
    cidr_blocks = ["0.0.0.0/0"]
  }

  ingress {
    description = "HTTP"
    from_port   = 80
    to_port     = 80
    protocol    = "tcp"
    cidr_blocks = ["0.0.0.0/0"]
  }

  ingress {
    description = "HTTP"
    from_port   = 3000
    to_port     = 3000
    protocol    = "tcp"
    cidr_blocks = ["0.0.0.0/0"]
  }

  ingress {
    description = "HTTP"
    from_port   = 9090
    to_port     = 9090
    protocol    = "tcp"
    cidr_blocks = ["0.0.0.0/0"]
  }

  ingress {
    description = "HTTP"
    from_port   = 9100
    to_port     = 9100
    protocol    = "tcp"
    cidr_blocks = ["0.0.0.0/0"]
  }



  egress {
    from_port   = 0
    to_port     = 0
    protocol    = "-1"
    cidr_blocks = ["0.0.0.0/0"]
  }

  tags = {
    Name = "terraform"
  }
}


resource "aws_instance" "ubuntu" {
  key_name      = aws_key_pair.ubuntu.key_name
  ami           = "ami-0dc8d444ee2a42d8a"
  instance_type = "t3.large"

  tags = {
    Name = "ubuntu-prometheus"
  }

  vpc_security_group_ids = [
    aws_security_group.ubuntu.id
  ]

  connection {
    type        = "ssh"
    user        = "ubuntu"
    private_key = file("key")
    host        = self.public_ip
  }

  ebs_block_device {
    device_name = "/dev/sda1"
    volume_type = "gp2"
    volume_size = 120
  }
}

resource "aws_eip" "ubuntu" {
  vpc      = true
  instance = aws_instance.ubuntu.id
}

答案1

我終於解決了這個問題,並再次訪問了我的 EC2 實例,所有資料都保持原樣。

這個問題背後的原因是,為了允許 http 流量進入我使用的新端口,該端口ufw啟用了防火牆,並且不包含允許 ssh 的規則,ufw這會導致訪問失敗。我本可以使用 aws 安全群組並添加正確的規則來避免這一切。

解決方案是建立一個新的 EC2 實例,並將舊 EC2 執行個體的磁碟區掛載到這個新建立的執行個體。

列出可用磁碟,如下所示:

buntu@ip-172-31-27-78:~$ lsblk
NAME        MAJ:MIN RM  SIZE RO TYPE MOUNTPOINT
loop0         7:0    0 97.8M  1 loop /snap/core/10185
loop1         7:1    0 28.1M  1 loop /snap/amazon-ssm-agent/2012
nvme0n1     259:0    0  120G  0 disk 
└─nvme0n1p1 259:1    0  120G  0 part /
nvme1n1     259:2    0  120G  0 disk 
└─nvme1n1p1 259:3    0  120G  0 part 

之後將您的分割區掛載到任何目錄:

$ sudo mkdir /data
$ sudo mount /dev/nvme1n1p1 /data/

現在您將能夠訪問您的捲文件,為了允許 ssh 訪問,編輯位於目錄中的文件user.rulesuser6.rules添加/data/etc/ufw以下行:

#user.rules
-A ufw-user-input -p tcp --dport 22 -j ACCEPT
-A ufw-user-input -p udp --dport 22 -j ACCEPT
user6.rules
-A ufw6-user-input -p tcp --dport 22 -j ACCEPT
-A ufw6-user-input -p udp --dport 22 -j ACCEPT

感謝這個帖子誰給了我很多幫助,我把所有步驟都收集在這裡。

相關內容