ready-baked public AMI (Amazon Machine Image). • Hard: – Set-up an EC2 micro instance from scratch. – Leverage on CloudWatch to do custom metrics + alarms. – Rock it like it’s 1999!
–p 11. Create the Database: CREATE DATABASE thinkup; 12. Grant connection privilege: GRANT USAGE ON *.* TO thinkup@localhost IDENTIFIED BY ‘thinkuppassword’; 13. Grant database privilege: GRANT ALL PRIVILEGES ON thinkup.* to thinkup@localhost ; 14. Give it a spin: mysql –u thinkup –p‘thinkuppassword’ thinkup