Archive

Posts Tagged ‘linux’

Setting up WordPress on Ubuntu

October 20, 2009 3 comments

I just did several projects that required a wordpress install. The setup I used was Ubuntu (ami-5059be39) on EC2, apache and mysql obviously ;). Here is a script I used to prep the system and install necessary libraries

sudo apt-get update

sudo apt-get dist-upgrade

sudo apt-get install git-core
sudo apt-get install apache2 php5-mysql libapache2-mod-php5 mysql server
sudo apt-get install phpmyadmin

Download WordPress and extract to a directory. I used /home/ubuntu/projectname.

Then sym link this directory to /var/www/projectname. When you are done, edit apache conf file, which is located at /etc/apache2/sites-enabled/projectname, to point to the deploy directory:

DocumentRoot /var/www/<strong>projectname

You can use the 000-default file if you want, but I usually rename it to the project name I’m working on to avoid confusion (or if you have more than one subdomain or website running on the same machine).

Last step, restart apache:

sudo /etc/init.d/apache 2 restart

Good luck.

Edit (3/3/2011): updated code formatting.

How to setup RoR+Passenger+MySql+Ubuntu Server on EC2

October 10, 2009 7 comments

UPDATE: Please see new post for updated info.

Hello, this is my first post and I’m going to show you how to setup Ubuntu Server to run Rails/MySql/Passenger stack on Amazon’s EC2. There are a lot of tutorials out there showing how to prep Ubuntu Server or get Passenger working or one or the other, but I haven’t found anything that would walk me through the whole stack, so I put together this script to install everything I need to get my rails app running. I hope you’ll find it useful as well. Here we go.

1. Prep
I’m assuming you got your Amazon EC2 account setup and lunched the official Ubuntu server AMI (ami-5059be39 – ubuntu-intrepid is the latest one at the time of this writing).

If you haven’t done that check out this great post Starting Amazon EC2 with Mac OS X by Robert Sosinksi. I also highly recommend the Elasticfox Firefox plug-in to manage your EC2 instances.

2. Install

SSH into your server. Go to /home/ubuntu and create setup.sh file. Copy and paste the following:

# Setup Ruby on Rails, MySql, Apache + Passenger
# on Amazon Ubuntu instance (ami-5059be39 – ubuntu-intrepid)
# 10/09/09

echo Updating system...
sudo apt-get update
sudo apt-get dist-upgrade
sudo apt-get install build-essential
sudo apt-get install curl libcurl4-openssl-dev
sudo apt-get install zlib1g-dev libssl-dev libexpat1-dev

echo Installing tools...
sudo apt-get install apache2 apache2-threaded-dev
sudo apt-get install ruby ri rdoc ruby1.8-dev irb libreadline-ruby1.8
sudo apt-get install libruby1.8 libopenssl-ruby libopenssl-ruby1.8
sudo apt-get install mysql-server libmysqlclient15off mysql-client-5.0
sudo apt-get install mysql-common mysql-server-5.0 libmysqlclient-dev
sudo apt-get install libmysql-ruby libmysql-ruby1.8 psmisc

sudo apt-get install subversion
sudo apt-get install git-core gitweb

echo Installing ruby gems...
cd /usr/local/src
sudo wget http://rubyforge.org/frs/download.php/60718/rubygems-1.3.5.tgz
sudo tar -zvxf rubygems-1.3.5.tgz
cd rubygems-1.3.5/
sudo ruby setup.rb

echo Symlinking...
sudo ln -s /usr/bin/gem1.8 /usr/local/bin/gem
sudo ln -s /usr/bin/ruby1.8 /usr/local/bin/ruby
sudo ln -s /usr/bin/rdoc1.8 /usr/local/bin/rdoc
sudo ln -s /usr/bin/ri1.8 /usr/local/bin/ri
sudo ln -s /usr/bin/irb1.8 /usr/local/bin/irb

echo Installing Gems...
sudo gem install sys-proctable --no-rdoc --no-ri
sudo gem install rails --no-rdoc --no-ri
sudo gem install mysql --no-rdoc --no-ri
sudo gem install capistrano rspec rdoc --no-rdoc --no-ri
sudo gem install passenger --no-rdoc --no-ri
sudo gem install haml --no-rdoc --no-ri
sudo gem install hpricot --no-rdoc --no-ri
sudo gem install json --no-rdoc --no-ri
sudo gem install newrelic_rpm --no-rdoc --no-ri
sudo gem install sqlite3-ruby --no-rdoc --no-ri
sudo gem install will_paginate --no-rdoc --no-ri
sudo gem install authlogic --no-rdoc --no-ri
sudo gem install cached_model --no-rdoc --no-ri

echo Installing Phusion Passenger
sudo passenger-install-apache2-module

Save the file and type sudo bash ./setup.sh to start.

Note: –no-rdoc –no-ri makes it so that no gem documentation is installed. Simply remove that line if you want to download documentation files.

Make sure to press Y when prompted. You should have plenty of space to get everything.

Let’s see what this script does now. The first part updates the system, then it installs apache, ruby, mysql server, and necessary libraries. Then we install subversion and git (if you only need one just remove the other. You are using a version control system…right?)

The next part installs ruby gems. I’ve had some trouble with aptitude so I built from source. The script just grabs rubygems source from rubyforge, extracts, and installs it. If you want to do this manually don’t forget to symlink.

Next step is to install your gems. Those listed in the script are the ones that I commonly use when starting out a rails app, but feel free to add/remove which ever you need.

Last part installs Passenger Phusion. The folks at modrails.com made it extremely easy to setup so just follow their instructions. I usually put

LoadModule passenger_module /usr/lib/ruby/gems/1.8/gems/passenger-2.2.4/ext/apache2/mod_passenger.so
PassengerRoot /usr/lib/ruby/gems/1.8/gems/passenger-2.2.4
PassengerRuby /usr/bin/ruby1.8

at the end of apache config file (/etc/apache2/apache2.conf). Then create your app-specific config file at /etc/apache2/sites-enabled/client-app
and paste

<VirtualHost *:80>
ServerName 123.123.123.123 #Server ip or www.yourhostname.com
DocumentRoot /home/ubuntu/yourapp/public  # Rails public directory!
</VirtualHost>

Restart apache

sudo /etc/init.d/apache2 restart

And voila!

Edit (3/3/2011): updated code formatting