- Newest
- Most votes
- Most comments
Hi,
Look at the various answers to this StackOverflow questions: https://stackoverflow.com/questions/69337154/aws-ec2-terminal-session-terminated-with-plugin-with-name-standard-stream-not-f
They detail all what you can check to recover from such an error.
Best,
Didier
If you resized the EBS volume, you may still need to resize the filesystem inside your instance to take advantage of the additional space. Bootstrap scripts often grow the filesystem to the volume size on first boot only - if you increase the volume size afterwards they won't do it. The exact steps for this will vary depending on the OS and disk format in use so you will need to check what filesystem and partitioning scheme (e.g. lvm, xfs, ext4, and so on) is in use on your instance, and check for suitable instructions.
Relevant content
- asked 2 years ago
- AWS OFFICIALUpdated 2 months ago
- AWS OFFICIALUpdated a month ago
- AWS OFFICIALUpdated a year ago
thank you! Will go through this.