知乎專欄 | 多維度架構 | 微信號 netkiller-ebook | QQ群:128659835 請註明“讀者” |
http://www.redmine.org/
安裝MySQL資料庫
curl -s https://raw.githubusercontent.com/oscm/shell/master/database/mysql/mysql.server.sh | bash curl -s https://raw.githubusercontent.com/oscm/shell/master/database/mysql/mysql.devel.sh | bash
創建資料庫賬號
CREATE DATABASE redmine CHARACTER SET utf8; GRANT ALL PRIVILEGES ON redmine.* TO 'redmine'@'localhost' IDENTIFIED BY 'my_password';
安裝
yum install -y ruby rubygems ruby-devel ImageMagick-devel cd /usr/local/src/ wget http://www.redmine.org/releases/redmine-3.3.0.tar.gz tar zxf redmine-3.3.0.tar.gz mv redmine-3.3.0 /srv/ ln -s /srv/redmine-3.3.0 /srv/redmine cd /srv/redmine cat >> config/database.yml <<EOF production: adapter: mysql2 database: redmine host: localhost username: redmine password: my_password encoding: utf8 EOF gem install bundler bundle install --without development test bundle exec rake generate_secret_token RAILS_ENV=production bundle exec rake db:migrate #bundle exec rake redmine:load_default_data RAILS_ENV=production REDMINE_LANG=zh bundle exec rake redmine:load_default_data mkdir -p tmp tmp/pdf public/plugin_assets sudo chown -R redmine:redmine files log tmp public/plugin_assets sudo chmod -R 755 files log tmp public/plugin_assets bundle exec rails server webrick -e production
預設用戶名與密碼 login: admin,password: admin