CentOS6.4へのRedmine3.0.3を試みております。
<<現在の状態>>
http://XXX.XXX.XXX.XXX/redmine
アクセスすると、ブラウザに
We're sorry, but something went wrong.
We've been notified about this issue and we'll take a look at it shortly.
が表示されます。
apacheのエラーログにはこのような情報が追加されております。
<</var/log/httpd/access_log>>
192.168.0.127 - - [29/May/2015:15:41:01 +0900] "GET /redmine/ HTTP/1.1" 500 3065 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:38.0) Gecko/20100101 Firefox/38.0"
<</var/log/httpd/error_log>>
[ 2015-05-29 15:13:36.6366 7472/7f8679c88700 age/Hel/Req/CheckoutSession.cpp:252 ]: [Client 1-1] Cannot checkout session because a spawning error occurred. The identifier of the error is e516e3b4. Please see earlier logs for details about the error.
apacheのconfファイルが原因なのか、redmineの導入方法に問題があるのかわからない状態です。
閲覧するべきファイルや、お気づきの点ありましたらアドバイスをお願い致します。
---ここから環境情報です
<<環境>>
OS : CentOS6.4(X64)
Webサーバー : apache2.2(X64)
Mod : passenger_module (shared) Syntax OK
SELinux : 停止させている
ブラウザ : Firefox(最新版)
<<インストールについて参考にしたサイト>>
http://blog.redmine.jp/articles/3_0/installation_centos/
<<Redmineのインストール先>>
ls -alt /var/lib/
drwxrwxr-x. 17 apache apache 4096 5月 28 19:19 2015 redmine_2nd
<<Documentroot>>
ls -alt /var/www/html/
lrwxrwxrwx 1 root root 28 5月 29 14:58 2015 redmine -> /var/lib/redmine_2nd/public/
-rw-r--r--. 1 apache apache 226 5月 28 18:48 2015 index.html
<</var/log/httpd/error_log>>
[ 2015-05-29 15:13:36.6366 7472/7f8679c88700 age/Hel/Req/CheckoutSession.cpp:252 ]: [Client 1-1] Cannot checkout session because a spawning error occurred. The identifier of the error is e516e3b4. Please see earlier logs for details about the error.
<<設定ファイル>>
<<httpd.confファイル>>
○ /etc/httpd/conf/httpd.conf
<VirtualHost *:80>
ServerName XXX.XXX.XXX.XXX # <-- 自分のIPアドレス。
DocumentRoot /var/www/html
</VirtualHost>
○ /etc/httpd/conf.d/redmine.conf
Redmine専用の.conf
<Location "/redmine">
Options Indexes FollowSymLinks
RackBaseURI /redmine
</Location>
<Directory "/var/lib/redmine_2nd/public/">
Require all granted
</Directory>
○ /etc/httpd/conf.d/passenger.conf
Passengerの基本設定。
passenger-install-apache2-module --snippet を実行して表示される設定を使用。
LoadModule passenger_module /usr/local/lib/ruby/gems/2.2.0/gems/passenger-5.0.8/buildout/apache2/mod_passenger.so
<IfModule mod_passenger.c>
PassengerRoot /usr/local/lib/ruby/gems/2.2.0/gems/passenger-5.0.8
PassengerDefaultRuby /usr/local/bin/ruby
</IfModule>
回答1件
あなたの回答
tips
プレビュー