The night before I left to travel for the holidays, I was very excited to receive my beta invite for Liquidweb’s new cloud hosting platform, Storm on Demand. I have been in the beta invite queue since Liquidweb first announced this new venture. To say the least, my excitement has not yet been let down.
Since I first signed up, I’ve been able to play with everything and the best way I can describe it is it’s a mix between Rackspace cloud and Amazon EC2. Liquidweb strongly pushes their support and service as does Rackspace and also include a backup feature but have also taken note on VPS’s CPU and memory and bandwidth pricing from Amazon. Then of course, they have thrown a few features of their own in too.
These are some of the features I’ve run into so far:
When a instance is created it basically is assigned certain number of CPU’s based on the size of the instance. Each virtual CPU is a 2.2ghz Xeon. They don’t advertise this on the Storm on Demand front page, but is displayed when you create a new instance. 2gb instance has 1 VCPU, 4gb 2 VCPU’s, 8gb 4 VCPU’s, 16gb 4 VCPU’s, 32gb 8 VCPU’s.
The control panel is very slick and responsive.
No host is perfect, so I want to talk about some of the downsides I’ve run into so far.
Major Issues:
Minor things:
Overall impression
I’m always excited to see new hosting technologies come out and see what competitors come up with next. I think Storm’s big advantages are their price’s of larger instances and the ease of use of some key features such as backups and creating server images. I’m also excited to see what their API is going to look like. My biggest peeve of Storm so far is why I was billed $38 for something that I’m suppose to pay for only what I use by the hour.
I’ve been debating back and forth for a while, weighing the pros and cons for a shared host vs. doing things myself. On one hand a shared host all the software and firewalls, etc are taken care of for you and its cheap but support isn’t that great. While on the other hand choosing a VPS, I have to manage everything myself and its a bit more money, but I have control over everything, it is much faster, and so far, Slicehost’s support is the best I have ever seen in a hosting company. So I said screw it, I’m migrating to my Slicehost VPS. I was planning to move to Mosso’s new cloud servers, but I have 6 months pre-paid so might as well use it to my advantage anyways.
Now I can proudly say I am hosted at Slicehost!
I have made a new pingdom monitor for this new host here or click the pingdom button at the bottom of the page. The data from my lunarpages host is still available. I am interested how these two compare in the upcoming months.
Previously, I was backing up my websites password-less ssh and rsync, but I have decided to change that for a couple of reasons such as passwordless ssh can have its security problems, and I dont trust hardware. Using S3 I can securely keep as many full backups as I’d like, not have to worry about hardware failing, all for pennies a month. Currently I backup my desktop with JungleDisk and thought I may as well consolidate all my backups to S3.
To accomplish this goal of backing up your website you will need 2 things, SSH access and s3sync which is a handy little S3 client written in ruby.
[user@machine s3sync] export S3CONF=/home/bront1/s3sync
To make sure everything is working do a simple command to list your buckets.
[user@machine s3sync]$ ./s3cmd.rb listbuckets bucket1 bucket2 bucket3
Yay we have s3 connectivity!
[user@machine] mysqldump -u user -pPassword --all-databases > /home/user/backup.sql [user@machine] tar -cf /home/user/backup.tar /home/user/public_html /home/user/backup.sql | gzip > /home/usr/backup.tar
[user@machine s3sync] ./s3cmd.rb put bucket-name:folder/target_name.tar.gz /home/user/backup.tar.gz
S3sync has its own sort of built in rsync to make incremental backups, but I prefer to make keep my own daily backups. Heres the script I use to create daily backups of my websites and files. It creates a backup with day, month, and year in the filename and keeps backups for the last 10 days or so. (Note: The sed and awk commands are really messy due to my lack of sed/awk knowledge. This script is run everyday at 3am using a cron job with the output written to a log.
Crontab:
0 3 * * * export S3CONF=/home/user/s3sync; /home/user/backup.sh >> /home/user/backup.log
backup.sh
#!/bin/bash export S3CONF=/home/user/s3sync cd /home/user TIMESTAMP=`date +%m%d%Y` echo "$TIMESTAMP :: Backuping up the databases" mysqldump -u user -pPassword --all-databases > /home/user/backup.sql echo "$TIMESTAMP :: Bundling all the files up" tar -cf /home/user/backup_`date +%m%d%Y`.tar public_html backup.sql gzip -f /home/user/backup_`date +%m%d%Y`.tar echo "$TIMESTAMP :: Copying backup to S3" #we use full path because this script is running in a cron job /usr/local/bin/ruby /home/user/s3sync/s3cmd.rb put bucket:folder/backup_`date +%m%d%Y`.tar.gz /home/user/backup_`date +%m%d%Y`.tar.gz echo "$TIMESTAMP :: Cleaning up" rm -f /home/user/backup_`date +%m%d%Y`.tar.gz rm -f /home/user/backup.sql echo "$TIMESTAMP :: Checking for old backups" #check how many backups are saved num=`/usr/local/bin/ruby /home/user/s3sync/s3cmd.rb list bucket:folder | wc -l` #we save at least 10 days of backups #13 is checked for due to other crap s3cmd prints out if [ "$num" == "13" ]; then echo "$TIMESTAMP :: Deleting old backup" #i know there is a better way to check this, i just dont know how last=`/usr/local/bin/ruby /home/user/s3sync/s3cmd.rb list bucket:folder | sed -e 's/-//g' | awk '{printf("%s", $0 (NR==1 ? "" : " "))}' | awk '{print $2}'` /usr/local/bin/ruby /home/user/s3sync/s3cmd.rb delete bucket:$last else echo "$TIMESTAMP :: No old backup to delete" fi echo "$TIMESTAMP :: Done"
Shared hosts are a great way to get started on the web whether you want to make a blog, start a forum, or you want to start developing your own applications, and did I mention shared hosting can be really cheap? That low monthly bill doesn’t come without a price, and no, I’m not talking about dollars and cents here, I’m talking about service. There is a huge trade off when getting such a service so cheaply. I see a lot of people who rely on these shared hosts for their businesses, client websites, and a lot of mission critical applications and it is just a flat out bad idea.
When not to choose a shared host:
If these sort of things are really matter to you then spending the extra 10-20$ a month for a reliable VPS. It may not have all the bells and whistles, but you get a lot more in return. It may not have all the bells and whistles a shared has offers with unlimited bandwidth and a billion other things, but if you are at the point to where one or more items in the above list affects you then than going this route should be worth it.
As for myself, I am sort of an uptime freak and obsessed with the health of my machines so I dont really mind spending a little extra money to fulfill these obsessions of mine. Even with that being said, there are still appropriate times when using a shared host makes the most sense.
Both solutions have their pros and cons, I suggest looking at your needs and expectations and choose which way to go is right for you.
A couple of weeks ago I setup iptables on my Slicehost VPS. After a few days of watching it I was suprised at how many connections were being denied. This machine has only been public for a couple days or so and I only had one domain pointing to it too. Its been a few weeks now and the information I have gathered is pretty interesting, take a look.
Top 10 countries based on number of denied hosts:

Top 10 ports based on number of denied connections:

Here is a mash up I made using the Google Maps API. This representation only shows around 500 of the denied hosts but I think its a good view of where all the connections come from throughout the world. Now to only AJAX‘ify this thing and have a live view of where the denied hosts are coming from in the world.
VPS hosting done right that is.
I am some-what hard to please, especially when it comes to hosting and technology in general. I hold web hosting companies to standards I would expect myself to meet if I were in their shoes. I dont want unexpected outages, unexplained server performance, random machine reboots, and probably my #1 pet peeve with hosting companies is often I feel like I monitor their servers better than they do. Is it really that hard for companies to tell their customers what is going on?
The other day I received a lovely text message from my pingdom monitoring of biturl (the site hosted on my slice) notifying me that it was down. Probably 30 seconds later I received an email from slicehost letting me know what’s going on.
The server your slice was on became unresponsive to our monitoring at 04:05:50 UTC and an emergency reboot was required.
Slices were restarted and are running, however we will be monitoring this machine for further trouble.
Please note this was a server issue and your Slice activity was not a causal factor.
We’ll notify you should further action be required.
We apologise for this downtime and please contact us if you have any questions.
Slicehost Support
[39001]
—-
Slicehost Support
support@slicehost.com
The downtime only lasted 10 mintues but it could of lasted an hour and I wouldn’t have minded. Instead of me thinking “WTF?! why is this down“, and going through the process of opening a ticket, talking to a support guy who doesn’t know anything, and never getting a definitive answer on what happened, they simply sent a courtesy email to me. Downtime is inevitable, but when it does happen I appreciate being notified on what is going on. It’s these little gestures that go a long way in a host and really sets them apart from other hosts.
Amazon EC2 just rolled out a new sudo pre-payment plans for all its instance sizes. With this new plan you pay a flat up front fee for a one or three year term. In exchange for this pre-payment you receive discounted per-hour price. A lot of people are using EC2 as a permanent web host and dont need to scale up like other services with possibly hundreds of instances being created or terminated at any given time. So what Amazon did here was give their consistent users a break with this new pricing structure.
This is a table with the pre-payment fees and what discount you get with them.
Actual costs. Pre-payment 1/3 year vs none.
| Instance | Pre-Payment | Per-Hour Cost | Per-Month Cost | 1yr Cost | 3yr Cost | 3yr Per-Month Cost |
| Small | None | 0.1 | $73 | $876 | $2,628 | $73 |
| Small | 1yr $325 | 0.03 | $21.90 | $587.80 | $1,763.40 | $48.98 |
| Small | 3yr $500 | 0.03 | $21.90 | $429.46 | $1,288.40 | $35.78 |
Currently the reserved instance pricing is only available for Linux/Unix instances.
[Via Techcrunch]
A couple months back I signed up for the GoDadddy Grid Host beta. It was too great of a deal to pass up, 5$/mo with 100gb of space and 1TB of bandwidth (basically what MediaTemple gives you).
For this review I set up a test blog that syndicated around 20 different feeds. 37k posts and 2.7k comments later, I think I have a good base site to test this service with.
It has been 4 months, and so far my impression is “meh”. It seems to be plagued with the common problems that all grid hosting is struck with, one being mysql as the bottle neck. Everything I ran that did not require a database back end was lightning fast, significantly faster than any shared host out there.
Here are the results of a benchmark I ran using a script that would test strings, dates, file system i/o, encryption, dates, images, arrays, and objects.
As shown above, godaddy is much faster, by 250ms and other users should not affect the processing power unlike a shared host where everyone is competing for the same cpu cycles. But like i said above, the bottleneck wasn’t with the actual running of website scripts, it was the database. My test blog is terribly slow when caching is not enabled, but once I did enable caching, load times dropped significantly. With a lot of grid systems, they do not scale mysql like they do web servers.
Another common “feature” with grid hosting is better uptime, that doesn’t seem to be the case with godaddy. I used pingdom to monitor my test blog and within 4 months, I accumulated a total of 14 hours 27 minutes of downtime which brought my uptime(%) to 99.29%, far from godaddy’s claimed “99.9%”.
Compare to these uptime statistics to my current host uptime with only 40m down, 99.97% up since november of 2008.
In all fairness, this service is still in beta and grid systems do take a while to get all the kinks worked out (MediaTemple being a prime example) but currently the downtime is unacceptable so I suggest avoiding it for now.
If you are looking for a good host, I suggest slicehost or linode for a VPS, dreamhost if you want a billion features, or lunarpages if you like cpanel and want things stable.
Ever wonder who owns/hosts some of the most popular blogs? Well I put together a list for you incase you are wondering. This list is taken from Technorati’s top 100 blogs page and I used whoishostingthis.com to find out who is hosting a particular blog.
The top 100 changes a lot so this may not reflect actual standings.
Blogs I think should be on the list:
I am always shopping around for new cool online services and hosting. Yesterday I was looking at Godaddy (because Diggnation drills Godaddy into my brain) and I saw that they are offering a new grid hosting plan. I am kind of anal about website up time so I decided to take a look. Currently their grid hosting plan is in beta with a ridiculously low price of of 5$/mo with minimum of a 3 month commitment. The plan comes with 100gb of space, 1TB of storage, and unlimited CPU cycles. This was just too good of a deal for me to pass up and at least try out. Grid hosting can be kind of expensive and I have seen some bad reviews and up time regarding some popular grid hosting companies, like MediaTemple.
Current Plan Details:
If you are really looking for grid hosting it usually means you have 1 high traffic site or a couple high traffic sites. I know 99% of the hosts out there offer OMGUNLIMITED everything but I really would rather have stability and scalability over bells and whistles. I have hosted with godaddy years ago but eventually left because they some what restrict you and what you can do and I found better offers out there that could suit my needs better. But I have noticed they have gone through a lot of changes and opened things up a little more, but still not as much as others.
Pros
Cons
The cons are pretty big for me but I am hoping that the stability will trump the cons.
I set up what to help me test this service is basically a huge blog spam site taking in around 20 or so RSS feeds. This is wordpress 2.7 with no caching and constantly updating. In about 2 days I already have 1500+ posts. I will post updates as I get time to benchmark and mess around with this a little more.