Difference between revisions of "InstallingAboutUsOnOSX"

(Configure the app)
Line 13: Line 13:
 
Download and install. Make sure you get version 5.0!
 
Download and install. Make sure you get version 5.0!
 
* http://dev.mysql.com/downloads/mysql/5.0.html#macosx-dmg
 
* http://dev.mysql.com/downloads/mysql/5.0.html#macosx-dmg
 +
 +
==Cassandra==
 +
  mkdir -p /www/compile
 +
  cd /www/compile
 +
  wget http://mirror.its.uidaho.edu/pub/apache/incubator/cassandra/0.5.0/apache-cassandra-incubating-0.5.0-bin.tar.gz
 +
  tar xvf apache-cassandra-incubating-0.5.0-bin.tar.gz
 +
  mv apache-cassandra-incubating-0.5.0 /www/cassandra
  
 
==Ruby==
 
==Ruby==

Revision as of 22:10, 4 February 2010

Xcode tools

Git

MacPorts

Download and install:

MySQL

Download and install. Make sure you get version 5.0!

Cassandra

 mkdir -p /www/compile
 cd /www/compile
 wget http://mirror.its.uidaho.edu/pub/apache/incubator/cassandra/0.5.0/apache-cassandra-incubating-0.5.0-bin.tar.gz
 tar xvf apache-cassandra-incubating-0.5.0-bin.tar.gz
 mv apache-cassandra-incubating-0.5.0 /www/cassandra

Ruby

Download and install version 1.8.7p249

Build:

 ./configure --prefix=/www
 make
 make install

(edit .profile like so:)

 export PATH=/www/bin:/usr/local/mysql/bin:/opt/local/bin:/opt/local/sbin:$PATH

RubyGems

Download and install version 1.3.5

ruby setup.rb

Misc. Libraries

Run these commands:

 sudo port install freeimage
 sudo port install gd2
 gem install mysql -- --with-mysql-config=/usr/local/mysql/bin/mysql_config
 mkdir -p /www/aboutus ;
 cd /www/aboutus
 git clone :AboutUs/compostus.git
 git clone :AboutUs/electric_sheep.git
 cd /www/aboutus/compostus/compost
 gem install geminstaller
 geminstaller

Configure the app

  • create databases
 mysql -u root
 create database compostus_wiki_test;
 create database compostus_wiki_dev;
 grant all on *.* to wiki@localhost identified by 'wiki';
  • install sysop user
 mysql -u root compostus_wiki_dev 


Retrieved from "http://aboutus.com/index.php?title=InstallingAboutUsOnOSX&oldid=20097398"