One person's experience with installing mx

From mx Help Wiki
Revision as of 16:23, 22 January 2007 by Adeans (Talk | contribs)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

need developer's tools install mysql (and startup) - make sure to secure

mkdir src (to make a directory called 'src') cd src (change directory into 'src')

cd ~ vi .bash_login (look for this line: 'export PATH="/usr/local/bin:/usr/local/sbin:$PATH"' should be at the end of the file (if file exists); if not, hit 'i' to insert, paste the line in there, hit 'escape', then type ':wq') [make sure terminal settings are "Execute this comman (specify complete path):" with '/bin/bash' in the text box open a new terminal and type "echo $PATH"


installing Readline:

curl -O ftp://ftp.gnu.org/gnu/readline/readline-5.1.tar.gz tar xzvf readline-5.1.tar.gz cd readline-5.1 ./configure --prefix=/usr/local make sudo make install cd ..


installing gems:

curl -O http://rubyforge-files.ruby-forum.com/rubygems/rubygems-0.9.0.tgz tar xzvf rubygems-0.9.0.tgz cd rubygems-0.9.0 sudo ruby setup.rb cd ..

sudo gem install rails --include-dependencies


install svn (or click on svn link? - http://subversion.tigris.org/servlets/NewsItemView?newsItemID=1755)


svn co svn+ssh://website.edu/Volumes/data/svn/mx

---

from db directory do: mysql -u root -p GRANT ALL PRIVILEGES ON mx_development.* TO 'mx'@'localhost' IDENTIFIED BY 'MmmXxx'; create database mx_development; use mx_development; source tables.sql;

[get copy of data]

quit mysql, and from dumps directory type: rake restore file=data.sql

Personal tools