Skip to main content

Free Cloud Server | Get A Free Cloud Server | Amazon AWS


Hello Developer | Reader | Creator | Explorer!

I was going through cloud servers on Internet, as it becomes very difficult to manage everything on shared hosting.

Amazon AWS is one of the providers of cloud services, which has a scheme of pay as you use. Amazon AWS includes a lot many web servirces like, Api Gateway, SNS(Mobile Messaging), S3(Strorage), etc.
AWS has almost all those reuirements which a developer would require.

And also the best part is Amazon AWS gives 12 months free access to its web services.

In this post we will discuss about creating an Account on Amazon AWS and setting up with cloud on EC2 (a service of amazon aws which provides cloud computing).

Amazon EC2 cloud computing, that includes a public ip and a free domain(domain would be somthing like ec2-bla-bla.bla-bla.amazonaws.com)

Follow these steps to create Amazon Account:-

  1. Create a amazon AWS account go here https://aws.amazon.com/ on top left click on sign in to console. After doing that you may be asked for billing information. Fill in that becasue it is required to veirfy your account, it charges Rs. 2 (In India) for the account verification.
  2. After completing that  you will be dropped into your dashboard. On top right corner you will be seeing your Name and just next to that you will see a dropdown of Server Region. Click on that and change to your desired server location. It is recommened that you choose a location which is nearer to your target customers's location. Like for India select Asia Pacific (Mumbai).
  3. On top you have black coloured navigation menu from where you can easily navigate to desired service's(dashboard) or docs. From their go to Compute > EC2
  4. Next you will be able to see your EC2 Dashboard. Here you will be able to see number of instances (i.e. Hosted Clouds), number of volumes (i.e. storage drives), etc. you will get familiar with all of them as soon as you start exploring. Click on launch instance.
  5. Next you have to choose an Image/OS to begin with I will choose ubuntu for now.
  6. After that select free tier option which will have 1 Gb Ram 1 cpu. Then click on review and launch. you can review other configurations add storage if you want. Then you continue.
  7. Next you will get a dialog box where you will be asked to create a key pair. Select create a new key pair add name to it and then click on download. With this key you can access shell of your cloud via ssh. For e.g. ssh -i 'yourkey.pem' ubuntu@ec2-bla-bla-bla-bla.amazonaws.com!
  8. You are done! setting up your cloud.
Great now you can install apache2 or nginx and then you can point your domain to your public ip of your cloud(you will find public ip on instances). Now you are done!

Thank you for reading this post, Share if you like it.

Comments

  1. Its really great and knowledgeable blog you have shared with us. Keep me more updates in future.
    Cloud Hosting Providers
    Cloud Computing SaaS

    ReplyDelete

Post a Comment

Popular posts from this blog

Redirect Non-www to www and vice versa | Non www to www | www to Non-www

You have a website say example.com, you want it only to be accessed by www.example.com, instead of both example.com & www.example.com or you may want your domain to be only accessed by example.com instead of both example.com & www.example.com. What is www and why should I redirect to my preferred domain?  Well here's the answer: Www is actually a subdomain of your domain. www actually refers to [world wide web] hmm! well than why redirect? The best answer is both the domains might have same content i.e. yourdomain.com and www.yourdomain.com, and its not very good to the search engine bots. What should I choose? www or non-www domain? This is completly depended upon you and the name of your domain. Sometimes domains are quite good without www for example https://letsencrypt.org . The domain with or without www does'nt effects search engine optimization (SEO). 1. Redirect your website from non-www to www  i.e. example.com to www.example.com Configure your ngin

Laravel 5.2 Multi Authentication

Today I wasted almost 3 hours to search on internet about Multi Authentication in Laravel 5.2. I have gone though laracast's post and other few forums too, I was still not able to find any solution for it. Their were packages such as sboo/multiauth, ollieread/multiauth, kbweb/multiauth etc. yet was not satisfied with their solutions, I tried to use them a lot but very soon I got stuck with bugs. Finally after a long research I finally found out a great solution for it, i found it on a frequent website I visit for my solution of any coding problems, and the solution was really shocking for me that it required no package installation or any other kinda stuff. It's already included with Laravel 5.2. Thanks to  Hasmukh Tank  a stack overflow user, he made a beautiful step by step procedure to do that. Here are those procedures: Refer Url :  How to use multi Auth in laravel 5.2 1. First we create two models 1 ) user , 2 ) admin 2. Update the config / auth . php fil