#navi2(RaspberryPi,toc,prev,next)
----
#contents
----
* Redmine のインストール [#k0c79256]
** 事前設定 [#d1b5b91a]
-事前に Apache2 と PostgreSQL をインストールしておいてください。
[[Apache2 のインストール>RaspberryPi/Webサーバー(Apache2)のインストール]]
[[PostgreSQLのインストール>RaspberryPi/PostgreSQLのインストール]]
**インストール [#a79ac594]
# apt-get install redmine redmine-pgsql
画面に従い適宜設定します。
# apt-get install bundler <-- Ruby 管理ソフト
# apt-get install libapache2-mod-passenger
**再設定 [#p9e23172]
次のコマンドで再設定が可能です。
dpkg-reconfigure redmine
**Apache 設定 [#k6be2f81]
/etc/apache2/mod-available/passenger.conf
<IfModule mod_passenger.c>
PassengerRoot /usr/lib/ruby/vendor_ruby/phusion_passenger/locations.ini
PassengerDefaultRuby /usr/bin/ruby
# 次の2行を追加
PassengerDefaultUser www-data
RailsBaseURI /redmine
</IfModule>
下記コマンドを実行
# chwon -R www-data:www-data /usr/share/redmine
# cd /var/www/html
# ln -s /usr/share/redmine/public redmine
**起動 [#z081cd58]
# service apache2 restart
以降、/redmine にアクセスすると Redmine の画面が開きます。
admin/admin でログインして適宜設定してください。
***メモ [#k1299e9d]
secret token 生成
# rake generate_secret_token
# rake db:migrate RAILS_ENV=production
キャッシュクリアなど
# rake db:migrate RAILS_ENV=production
# rake tmp:cache:clear
# rake tmp:sessions:clear
----
#navi2(RaspberryPi,toc,prev,next)