Home > Software engineering >  How to backup Ec2 linux instances along with users
How to backup Ec2 linux instances along with users

Time:12-21

Is there a way to backup users along with software created in AWS.

context:I am currently learning ansible and shutting down those instances created after some time..Everyday i have to recreate again users,,install anisble after relaunching those instances

CodePudding user response:

The natural way to backup EC2 instances is through snapshots. You can also create custom AMI which will simplify launching new instances with all the per-installed software of yours, along with its users and all the settings.

  • Related