Painless slicehost rails deployment with the slicehost gem
If you ever need to setup a slicehost server, I recommend Josh’s gem slicehost. It drops your sysadmin time down to less than one hour for basic setup, and probably more like 20-30 minutes if everything goes well.
Here are the commands that you will for sure want to use. They are self explanatory, so I’ll just list them. There are many other recipes, which you can read the source to find.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
cap slice:configure
cap mysql:install
cap apache:install
cap ruby:setup_18
cap ruby:install_enterprise
cap gems:install_rubygems
cap ruby:install_passenger
cap apache:upload_vhost
cap git:install
cap disk:free
cap disk:memory
cap aptitude:update
cap aptitude:upgrade
cap aptitude:install
cap ssh:reload
cap gems:intall
cap gems:list
cap apache:restart
cap apache:reload
cap apache:force_reload
|
March 09, 2009
