Giter Club home page Giter Club logo

cloud-computing-final-project's Introduction

Infrastructure Diagram

infrastructure diagram

RDS

The first time the RDS is created, it will need to be populated manually.

After this first time, a snapshot of the database will need to be created.

From that point on, the RDS will be populated automatically.

Here are the steps for creating the User and populating the Database/Tables:

  • Create a new ec2 instance with ssh access in a public subnet in our custom VPC
  • SSH into the instance
  • Install the mysql client:
sudo yum install mysql
  • Download the social_something database:
wget https://raw.githubusercontent.com/sam-meech-ward-bcit/social_something_full/master/database.sql
  • Login to the database using the hostname, admin-user, and admin-password - In my case:
mysql -u admin -p -h ss-database.csjefxiksrp2.us-east-1.rds.amazonaws.com 

The db hostname appears in the terraform apply output

  • In MySql now, source the social_something database:
source database.sql
  • Now create a new user with access only on the network and grant privileges.
CREATE USER 'web-app'@'172.31.%.%' IDENTIFIED WITH mysql_native_password BY 'YOUR_PASSWORD';
GRANT ALL PRIVILEGES ON social_something.* TO 'web-app'@'172.31.%.%';
  • ??? profit

cloud-computing-final-project's People

Contributors

sainishanth17 avatar

Stargazers

Dipali Shah avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.