使用WEBrick时,使用sqlite3的简单sinatra应用程序可以使用,但在使用apache和passenger时则不行

时间:2012-12-23 13:16:35

标签: sqlite apache2 sinatra passenger

当我的应用尝试写入我的sqlite3数据库时,我收到“500 Internal Server Error”消息。

当我使用WEBbrick时,一切正常,但是当我使用Apache和Passenger时,我得到了上述错误。我的应用程序加载第一页但在尝试POST时失败。

以下是我如何设置所有内容:

awesome.rb文件:

require 'sinatra'
require 'data_mapper'
require 'dm-core'
require 'dm-migrations'
require 'slim'

APP_ROOT = File.expand_path(File.dirname(__FILE__))
DataMapper::setup(:default, "sqlite3://#{APP_ROOT}/emails.db")

class Email
    include DataMapper::Resource
    property :id, Serial
    property :email, String, :required => true
end
DataMapper.finalize

get '/' do
    slim :index
end

post '/add' do
    Email.create params[:email]
    redirect '/'
end

config.ru文件:

require '/var/www/awesome'

root_dir = File.dirname(__FILE__)

set :environment, ENV['RACK_ENV'].to_sym
set :root, root_dir
set :app_file, File.join(root_dir, 'awesome.rb')
disable :run

run Sinatra::Application

httpd.conf文件:

<VirtualHost *:80>
  ServerName foo.com
  DocumentRoot /var/www/public
  <Directory /var/www/public>
    AllowOverride None
    Options FollowSymLinks
    Options -MultiViews
    Order Allow,Deny
    Allow from all
  </Directory>
</VirtualHost>

这是我apache2.conf文件的最底层:

LoadModule passenger_module /usr/local/rvm/gems/ruby-1.9.3-p327/gems/passenger-3.0.18/ext/apache2/mod_passenger.so
PassengerRoot /usr/local/rvm/gems/ruby-1.9.3-p327/gems/passenger-3.0.18
PassengerRuby /usr/local/rvm/wrappers/ruby-1.9.3-p327/ruby      

我还给了/ var / www

组www-data写访问权

- UPDATE -

以下是“ps axu | grep Pass”命令的输出:

root     28373  0.0  0.7 220936  1884 ?        Ssl  13:15   0:00 PassengerWatchdog
root     28377  0.1  1.0 2067100 2528 ?        Sl   13:15   0:10 PassengerHelperAgent
root     28379  0.0  3.8 111856  9508 ?        Sl   13:15   0:00 Passenger spawn server                                                                                                                                            
nobody   28382  0.0  1.8 169332  4632 ?        Sl   13:15   0:00 PassengerLoggingAgent 

我以root用户身份运行所有内容。这只是一个测试服务器,我想让一切都先工作。我之前在安装ruby系统时遇到了麻烦,所以我开始使用干净的服务器并且我没有添加任何其他用户。

- 更新2 -

已经为所有人设置了emails.db,用chmod 777读取它,但我只是将其更改为chmod 666.这是我的ls -l输出:

-rw-rw-r-- 1 root     www-data   442 Dec 23 13:15 awesome.rb
-rw-rw-r-- 1 root     www-data   215 Dec 23 12:41 config.ru
-rw-rw-rw- 1 www-data www-data 12288 Dec 23 12:56 emails.db
-rw-rw-r-- 1 root     www-data    54 Dec 23 10:55 hello.rb
drwxrwxr-x 2 root     www-data  4096 Dec 22 14:50 log
drwxrwxr-x 2 root     www-data  4096 Dec 22 15:34 public
drwxrwxr-x 2 root     www-data  4096 Dec 23 12:03 tmp
drwxrwxr-x 2 root     www-data  4096 Dec 22 17:16 views

然后我用“/etc/init.d/apache2 restart”重新启动了apache。我知道从chmod 777到chmod 666不会解决我的问题,但它可能更安全一点。我重新运行我的应用程序,我仍然得到相同的“HTTP错误500(内部服务器错误):服务器尝试完成请求时遇到意外情况。”我很确定它仍然与apache和sqlite3有关,因为当我注释掉“Email.create params [:email]”行时,我没有收到错误。

- 更新3 -

这是“tail -f /var/log/apache2/error.log”的输出:

96.18.233.137 - - [24/Dec/2012 20:46:54] "GET / " 200 706 0.0274
96.18.233.137 - - [24/Dec/2012 20:46:54] "GET /favicon.ico " 404 18 0.0013
96.18.233.137 - - [24/Dec/2012 20:47:01] "POST /add " 14 - 0.0046

这就是它所显示的一切。 Chrome显示:

Request Method:POST
Status Code:500 Internal Server Error

0 个答案:

没有答案