Created
October 2, 2012 01:53
-
-
Save gaza3g/3815698 to your computer and use it in GitHub Desktop.
Redmine Installation Steps
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Steps to take when installing redmine | |
- Download XCode and then go to => Preferences => Install CommandLine Tools (or download the cmd line tools without instaling XCode from apple site) | |
- sudo ln -s /usr/bin/gcc /usr/bin/gcc-4.2 #fixes error when bundler tries to install json | |
- Install homebrew | |
- brew install mysql | |
- mysql_install_db --verbose --user=`whoami` --basedir="$(brew --prefix mysql)" --datadir=/usr/local/var/mysql --tmpdir=/tmp #this is the instruction from homebrew | |
- mysqladmin -u root password 'password' | |
- usr/local/opt/mysql/bin/mysqld_safe & #start mysql | |
- mysql -u root -p | |
mysql> CREATE USER 'root'@'localhost' IDENTIFIED BY 'some_pass'; | |
mysql> GRANT ALL PRIVILEGES ON *.* TO 'root'@'localhost' | |
-> WITH GRANT OPTION; | |
mysql> CREATE USER 'root'@'%' IDENTIFIED BY 'some_pass'; | |
mysql> GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' | |
-> WITH GRANT OPTION; | |
- mysqladmin -u root -p -h gazzas-MacBook.local password 'alpha4' | |
- Install rvm to install latest ruby | |
- gem install rails | |
- Clone redmine git repo | |
- bundle install | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment