how to create data base in Amazon EC2 - Stack Overflow most recent 30 from stackoverflow.com 2009-12-02T16:08:53Z http://stackoverflow.com/feeds/question/564716 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/564716/how-to-create-data-base-in-amazon-ec2 0 how to create data base in Amazon EC2 panidarapu 2009-02-19T10:40:30Z 2009-02-19T11:36:36Z <p>Hi ,</p> <p>I was created an account in Ec2 , But i can't understand how to upload file in ec2 server, how to create ftp account for transfer the files and how to create Mysql Data base in ec2.</p> <p>any one knows, Please Share with me...</p> <p>I need your help..</p> <p>Regards Siva</p> http://stackoverflow.com/questions/564716/how-to-create-data-base-in-amazon-ec2/564887#564887 1 Answer by Alabaster Codify for how to create data base in Amazon EC2 Alabaster Codify 2009-02-19T11:36:36Z 2009-02-19T11:36:36Z <p>Since you have an account with Amazon and EC2, you can use their console: <a href="http://aws.amazon.com/ebs/" rel="nofollow">https://console.aws.amazon.com/ec2/home</a>.</p> <p>In the console, click on <strong>Instances</strong>, then <strong>Launch Instance</strong> to create a new virtual machine. There are lots of operating systems to choose from; a good choice for a first instance would be 32-bit Ubuntu running on an <code>m1.small</code> instance.</p> <p>If you already have a Keypair, select the one you want from the list. Otherwise, you can create a new Keypair in the <strong>Keypair</strong> dialog. When the new instance has been created, you can use the keypair to connect to it, using a command like:</p> <pre><code>ssh -i siva_keypair root@InstancePublicDNS </code></pre> <p>You can get the instance public DNS name from the console. At this point, you're basically logged on to a new machine, and can use it in any way you would use a real, physical machine.</p> <p>By the sound of it, you're going to want to create some user accounts, install an FTP server and MySQL (use <code>apt-get</code> if you're on Ubuntu).</p> <p>Note that you <em>can</em> lose data which you put on the local disk if an instance goes down - if you're running a database you should use <a href="http://aws.amazon.com/ebs/" rel="nofollow">EBS</a> which is very easy to set up, and gets you persistent, fast storage which can be attached to any EC2 instance.</p>