Vikas Acharya
Vikas Acharya

Reputation: 4152

how to use aws ec2 as back end to android app

I was using godaddy web hosting services where i used to put my php rest api. And use mysql database through it. also i used to store images and videos on file storage.

In AWS lot of things were there I'm not even understanding the proper way to start through it.

Kindly give some detail answer and please don't link me again to the same official document page as if i understood their itself why i need to ask on stackoverflow.

Upvotes: 0

Views: 207

Answers (1)

Osama Khalid
Osama Khalid

Reputation: 337

  1. MySQL is available to RDS users, so you can do that. So from your back-end you can easily connect to that.
  2. Your back-end( rest api ) can be on EC2. From the code you can always connect to you RDS database just like any other database. you will get host , username and password for RDS.
  3. Use S3 bucket to save images/videos. You can then you simple S3 api to save and retrieve your images. Files are stored with a unique Id to S3 bucket which makes them easy to access.

Every thing from above is available in aws free tier account

Upvotes: 1

Related Questions