CentOSã«Redmineãå ¥ãã
åã«Tracãå ¥ãããã©ãRedmineã®ã»ããï¼ä¸»ã«è¦ãç®çã«ï¼è¯ãããã«æããã®ã§å ¥ãã¦ã¿ããæ¬å½ã¯passengerãå ¥ãã¦Apacheçµç±ã§èµ·åã§ããã¨ããã¾ã§æ§ç¯ãããã ãã©ãã¡ã¢ããå¿ãã¦ãããã®é¨åã¯ãããæ¸ããããããªãã
Railsãã¤ã³ã¹ãã¼ã«
# gem install rails --include-dependencies Bulk updating Gem source index for: http://gems.rubyforge.org Building native extensions. This could take a while... ERROR: While executing gem ... (Gem::Installer::ExtensionBuildError) ERROR: Failed to build gem native extension. ruby extconf.rb install rails --include-dependencies checking for fcgiapp.h... no checking for fastcgi/fcgiapp.h... no *** extconf.rb failed *** Could not create Makefile due to some reason, probably lack of necessary libraries and/or headers. Check the mkmf.log file for more details. You may need configuration options. Provided configuration options: --with-opt-dir --without-opt-dir --with-opt-include --without-opt-include=${opt-dir}/include --with-opt-lib --without-opt-lib=${opt-dir}/lib --with-make-prog --without-make-prog --srcdir=. --curdir --ruby=/usr/bin/ruby --with-fcgi-dir --without-fcgi-dir --with-fcgi-include --without-fcgi-include=${fcgi-dir}/include --with-fcgi-lib --without-fcgi-lib=${fcgi-dir}/lib Gem files will remain installed in /usr/lib/ruby/gems/1.8/gems/fcgi-0.8.7 for inspection. Results logged to /usr/lib/ruby/gems/1.8/gems/fcgi-0.8.7/ext/fcgi/gem_make.out
ãªããã¨ã©ã¼ãåºãã
# gem -v
0.9.4
gemã®ãã¼ã¸ã§ã³ãå¤ãããããªãã
gemãã¢ãããã¼ã
# gem update --system ... # gem -v 1.3.4
Railsãã¤ã³ã¹ãã¼ã«ï¼åææ¦ï¼
# gem install rails --include-dependencies
...
ä»åº¦ã¯æåããã
ãã¼ã¿ãã¼ã¹ä½æ
# mysql -u root -p
Enter password:
...
mysql> create database redmine; ... mysql> grant all on redmine.* to 'redmine'@'%' identified by 'redmine' with grant option; ... mysql>
Redmineãã¤ã³ã¹ãã¼ã«
# useradd redmine # passwd redmine ... # wget http://rubyforge.org/frs/download.php/56909/redmine-0.8.4.tar.gz # tar xzvf redmine-0.8.4.tar.gz # mv redmine-0.8.4 /opt/redmine # cd /opt/redmine # chown redmine:redmine -R redmine
Redmineã®è¨å®
ãã¼ã¿ãã¼ã¹
# cd config # cp -p database.yml.example database.yml # vi database.yml
production: adapter: mysql database: redmine host: localhost username: root password: encoding: utf8
ãã®é¨åã以ä¸ã®ããã«å¤æ´ããã
production: adapter: mysql database: redmine host: localhost username: root password: root encoding: utf8 socket: /var/lib/mysql/mysql.sock
# rake db:migrate RAILS_ENV="production" ... # rake load_default_data RAILS_ENV="production" ... Select language: bg, ca, cs, da, de, en, es, fi, fr, he, hu, it, ja, ko, lt, nl, no, pl, pt, pt-br, ro, ru, sk, sr, sv, th, tr, uk, vn, zh, zh-tw [en] ja ...
ã¡ã¼ã«
# cp -p email.yml.example email.yml # vi email.yml
production: delivery_method: :smtp smtp_settings: address: smtp.example.net port: 25 domain: example.net authentication: :login user_name: redmine@example.net password: redmine
ãã®é¨åãèªåã®ç°å¢ã«åããã¦è¨å®ããã
production: delivery_method: :smtp smtp_settings: address: localhost port: 25 domain: tanamon.jp #authentication: :login #user_name: [email protected] #password: redmine
redmineã®èµ·å
# ruby script/server -e production
http://localhost:3000/ã«ã¢ã¯ã»ã¹ãã¦åä½ç¢ºèªãããã