Technology suggesions for cloud computing

yogini bende

yogini bende

@yogini-bende-P6NUFw Oct 27, 2024
I am a M.Tech student and want to do a final year project in cloud computing in the Software-as-a-Service (SaaS). I am knowing the basic facts of the cloud computing but don't exactly know through which technologies I should go. I am completely clueless about the development procedure of cloud based application. Need help 😕

Replies

Welcome, guest

Join CrazyEngineers to reply, ask questions, and participate in conversations.

CrazyEngineers powered by Jatra Community Platform

  • Kaustubh Katdare

    Kaustubh Katdare

    @thebigk Feb 24, 2015

    yogini bende
    I am a M.Tech student and want to do a final year project in cloud computing in the Software-as-a-Service (SaaS). I am knowing the basic facts of the cloud computing but don't exactly know through which technologies I should go. I am completely clueless about the development procedure of cloud based application. Need help 😕
    Welcome to CrazyEngineers. Your choice of technology would solely be decided by the kind of project or application you wish to work on. SAAS is simply what the name suggests : a software being offered as a service [Office 365, for example]. If you tell us what SAAS project your wish to work for and share other details, we'll be able to make suggestions on the right technology.
  • Suraj Dodiya

    Suraj Dodiya

    @suraj-dodiya-qIppHt Feb 24, 2015

    First of all Clear out what you want to do in Cloud Computing. Cloud Computing is Vast area of Knowledge and one can do many things in it.
  • yogini bende

    yogini bende

    @yogini-bende-P6NUFw Feb 25, 2015

    Thank you for the reply sir.. I am thinking to make an application where links of all the profiles of user on different websites will b available so that with one application they can go through all their imp pages and along with that, the option of storing photos, videos and other information. But right now, I am clueless about going further.
  • yogini bende

    yogini bende

    @yogini-bende-P6NUFw Feb 25, 2015

    I have also read recently about the SaaS CMS. Is it effective tool or of no use??
  • rahul69

    rahul69

    @rahul69-97fAOs Feb 26, 2015

    yogini bende
    I am a M.Tech student and want to do a final year project in cloud computing in the Software-as-a-Service (SaaS). I am knowing the basic facts of the cloud computing but don't exactly know through which technologies I should go. I am completely clueless about the development procedure of cloud based application. Need help 😕
    Before going to develop the cloud based application, first you should decide on the platform which you will be using, Many platforms are available to develop and host applications on the cloud, but there are things to consider (e.g. the language to be used for development, service cost (some may be free too),feasibility for creation of particular application etc.). Find the one that suits your needs and go ahead 😀
    To get yourself started, you can check these links:
    #-Link-Snipped-#
    #-Link-Snipped-#
  • Kaustubh Katdare

    Kaustubh Katdare

    @thebigk Feb 26, 2015

    yogini bende
    Thank you for the reply sir.. I am thinking to make an application where links of all the profiles of user on different websites will b available so that with one application they can go through all their imp pages and along with that, the option of storing photos, videos and other information. But right now, I am clueless about going further.
    I think more than anything else, you will have to spend some time understanding what cloud computing exactly is. You can run any damn web application on the cloud without needing any 'special' changes to the code. So you may want to develop any software application in PHP, Ruby, node.js, perl and so on - and have that app run on the cloud.

    Remember that cloud is nothing but a cluster of servers running together. You should be able to configure it for anything you like and there are ready made stacks available in the open source world just to do that.

    yogini bende
    I am thinking to make an application where links of all the profiles of user on different websites will b available so that with one application they can go through all their imp pages and along with that, the option of storing photos, videos and other information. But right now, I am clueless about going further
    Okay, what are the programming languages you are familiar with? How'd you develop that software if you didn't have to do it for cloud computing?
  • Vishal Sharma

    Vishal Sharma

    @vishal-pysGmK Mar 18, 2015

    yogini bende
    I am a M.Tech student and want to do a final year project in cloud computing in the Software-as-a-Service (SaaS). I am knowing the basic facts of the cloud computing but don't exactly know through which technologies I should go. I am completely clueless about the development procedure of cloud based application. Need help 😕
    Start from Virtual Machines. Cost n all come later.
    I've been working on Cloud recently and use Ruby for Cloud Infrastructure automation. And, in that proceeding I find Virtual Machines the best to learn how the things will work on cloud. If you want multiple instances, use a Virtual Machine management tool called <a href="https://www.vagrantup.com/" target="_blank" rel="nofollow noopener noreferrer">Vagrant by HashiCorp</a>. It will provide you a feel of working on cloud.

    As a simple exercise to start with, try to write (Ruby) code for 5 Vagrant Instances, where 1 instance is for Database, 3 of them are web servers (take some open source website or build your own) and 1 for Load Balancer.

    Manually SSH into those instances using Putty and do your installations and configurations as required (this can be automated too 😀 but since you are starter, do it manually).

    After the installations are done, you hit on load balancers IP and see your website run! You can use HaProxy for load balancing.

    Read this post for months and try to do what I asked for! Build your confidence!