Questions tagged [cloud]

Cloud computing is the delivery of computing as a service rather than a product, whereby shared resources, software, and information are provided to computers and other devices as a utility (like the electricity grid) over a network (typically the Internet)

Cloud computing is about hardware-based services (involving computing, network and storage capacities), where:

  • Services are provided on-demand; customers can pay for them as they go, without the need to invest into a datacenter.
  • Hardware management is abstracted from the customers.
  • Infrastructure capacities are elastic and can easily scale up and down.

Cloud computing providers offer their services according to three fundamental models:

  1. Infrastructure as a service (IaaS).
  2. Platform as a service (PaaS),
  3. Software as a service (SaaS)

IaaS is the most basic and each higher model abstracts from the details of the lower models.

See more on Wikipedia: http://en.wikipedia.org/wiki/Cloud_computing

913 questions
3
votes
1 answer

Using Microsoft Azure to host a .NET solution

I'm working in a startup which looks to deploy their code to the "cloud". One of the options is Microsoft Azure - the questions is should it be used? We use .NET with SQL Server. The front end consist of a Web Service and a Web Site. We use…
Bob
  • 43
  • 6
3
votes
4 answers

Excessive hosting costs

A client of mine is getting billed around ~$1400 per month for hosting. However the site is only averaging roughly 200 hits per day and it serves no large files nor videos. It's hosted with http://www.engineyard.com/ and I've looked at the bill…
K-Bear
  • 131
  • 4
3
votes
2 answers

Does a VPN requirement kill the concept of having a Web Application in the Cloud?

Recently I posted a question in SO, but so far I got no answers. I wonder if I'm asking the wrong question. This is the problem: We need to design an application which offers a public http web service, but at the same time it must consume some …
Christian
  • 133
  • 4
3
votes
3 answers

How can we protect data on managed hosts(vps, cloud, etc)?

These hosting facilities tend to be great, they are cheap and work well compared to other alternatives. Though while being cheap, there is a compromise to be made and I want to know if there is a way to not make that compromise. The compromise…
Recursion
  • 619
  • 2
  • 7
  • 19
3
votes
2 answers

What's the difference between Rackspace Cloud Servers and Rackspace Cloud Sites?

I'm looking to host a video-centric PHP site. Video will be served from CDN. What does Cloud Site's $150/mo get you? [Edit] Seems like with cloud site you get: web server that's ready to go a web-based control panel 50 GB of scalable storage…
Matt
  • 215
  • 2
  • 7
3
votes
1 answer

Ubuntu in the cloud: what does it mean?

Can someone explain to me what does it mean to "install Ubuntu in the cloud"? How does that differ from signing up with a VPS with any hosting company? Really trying to understand what this means and how it's different from normal web hosting.
damian
3
votes
1 answer

Which one to go Dedicated server or Cloud Hosting?

We are going to outsource a solution from the data-center (for some reason), it is a web solution built on .NET and SQL server and it has scheduled night services. I searched for Cloud Hosting (IaaS) and I found some nice prices and offers and see…
Kronass
  • 197
  • 4
3
votes
4 answers

Expandable cloud software?

Is there cloud software like Eucalyptus that will let you easily 'flip a switch' and start expanding onto EC2 as additional 'virtual' Eucalyptus(or whatever) nodes?
pjz
  • 10,595
  • 1
  • 32
  • 40
3
votes
6 answers

Combine several physical servers into 1 virtual server

The current virtualisation splits one big physical server into smaller virtual servers. But is it possible to combine several physical servers into 1 virtual server ? UPDATE: We have several different systems which require their own server to…
Jayaraman
3
votes
3 answers

3 Servers, is this is a cluster?

At the moment I have one Ubuntu server, 9.10, running with a simple Samba share, a mail server, DNS server and DHCP server. Mostly its just there for file sharing and email server. I also have 2 other servers that are exactly the same hardware and…
Schodemeiss
  • 230
  • 1
  • 2
  • 7
3
votes
1 answer

Installing Windows 10 on Hetzner Cloud (but not Dedicated) server

I am looking for a tricky way to install Windows 10 on Hetzner Cloud (but not Dedicated) server. Hetzner don't provide any ISO images for consumer-grade OS, including business desktop editions. Even though Microsoft allows VM/Cloud usage of Windows…
EIKA
  • 31
  • 1
  • 2
3
votes
1 answer

Contents in Kubernetes pod gets empty when persistent volume is mounted

persistent volume claim and persistent volume yaml file apiVersion: v1 kind: PersistentVolume metadata: name: my-volume labels: type: local spec: storageClassName: manual capacity: storage: 5Gi accessModes: - ReadWriteOnce …
aks
  • 57
  • 2
  • 7
3
votes
2 answers

Things I should look for/tread cautiously if I am moving to the cloud

What should I be looking out for when moving to a cloud like Rackspace? Another user at serverfault had issues like compute cycles (CC) exploding and I did not want to have the same experience.
Quintin Par
  • 4,373
  • 11
  • 49
  • 72
3
votes
1 answer

What is the best practice for managing Application Specific Users in GCP

Is there a "best practice" for managing application specific users for VMs in Google Cloud Platform? For example, in the old server world, you might have a "syslog" user for the syslog daemon, or an "nginx" user for nginx. In that world I would have…
Rob Jones
  • 133
  • 5
3
votes
1 answer

Why should I ever limit a load balancer to a specific availability zone (AWS)?

I'm starting to learn how to manage a cloud infrastructure and I'm going through the AWS documentation right now. If my question didn't make it obvious enough, I'm a complete beginner about this stuff. When creating a ELB (Elastic Load balancer), I…