gpt4 book ai didi

ruby-on-rails - Rails : Deploying to Heroku, 很多问题

转载 作者:行者123 更新时间:2023-11-29 12:33:54 26 4
gpt4 key购买 nike

第一次尝试将我的 Rails 应用程序部署到 Heroku 时,我遇到了很多问题。该应用程序崩溃了,您可以查看图像中的日志:http://i.stack.imgur.com/bsx1b.png

更糟糕的是,当我试图在本地查看我的应用程序时,它无法在 postgreSQL 环境中运行。当我返回使用 database.yml 中的 sqLite3 时它运行良好。我认为问题可能是我实际上必须安装 postgreSQL,除了添加 pg gem 和运行 bundle install。

我继续使用一键式安装程序(Windows 7 64 位)安装 PostgreSQL。重启后,一个简单的 rails server 或 bundle install 命令开始失败,所以我重新安装了整个 ruby​​ 和 rails。

现在 rails server 命令工作正常,当我尝试在本地环境中查看我的应用程序时它会提示不同的错误。所以现在我有 pgAdmin III 和 Rails

PG::Error

fe_sendauth: no password supplied

我试着关注 this ,但我找不到“pg_hba.conf”。我想答案是基于不同的操作系统。

现在又一次, bundler 不工作,给我错误...

问题:1) 使用一键式安装程序安装 postgreSQL 是否正确?因为这导致我的 ROR 以某种方式“崩溃”,我不得不完全重新安装 rails。 2) 我想我要删除所有与 postgreSQL 相关的东西,重新安装 Rails,然后一切从头开始。我必须采取哪些步骤?我看过的所有引用资料似乎都不适合 Windows 环境。

在我的 gemfile 中,我有

gem 'pg'
gem 'thin'

在我的数据库中,我有

# SQLite version 3.x
# gem install sqlite3
#
# Ensure the SQLite 3 gem is defined in your Gemfile
# gem 'sqlite3'
development:
adapter: postgresql
encoding: utf8
database: mangfeel_development
pool: 5
timeout: 5000

# Warning: The database defined as "test" will be erased and
# re-generated from your development database when you run "rake".
# Do not set this db to the same as development or production.
test:
adapter: postgresql
encoding: utf8
database: mangfeel_test
pool: 5
timeout: 5000

production:
adapter: postgresql
encoding: utf8
database: mangfeel_production
pool: 5
timeout: 5000

我在安装 PostgreSQL 后遇到的错误:

c:\ruby\myapp>rails server
C:/Program Files (x86)/ruby-1.9.2/lib/ruby/site_ruby/1.9.1/rubygems.rb:926:in `report_activate_error': Could not find RubyGem railties (>= 0) (Gem::LoadError)
from C:/Program Files (x86)/ruby-1.9.2/lib/ruby/site_ruby/1.9.1/rubygems.rb:244:in `activate_dep'
from C:/Program Files (x86)/ruby-1.9.2/lib/ruby/site_ruby/1.9.1/rubygems.rb:236:in `activate'
from C:/Program Files (x86)/ruby-1.9.2/lib/ruby/site_ruby/1.9.1/rubygems.rb:1307:in `gem'
from C:/RailsInstaller/Ruby1.9.3/bin/rails:18:in `<main>'

当我运行 bundle install 时:

Gem::InstallError: The 'json' native gem requires installed build tools

Please update your PATH to include build tools or download the DevKit
from 'http://rubyinstaller.org/downloads' and follow the instructions
at 'http://github.com/oneclick/rubyinstaller/wiki/Development-Kit'
An error occurred while installing json (1.7.5), and Bundler cannot continue.
Make sure that `gem install json -v '1.7.5'` succeeds before bundling.

所以我将完全删除 pgAdminIII、PostgreSQL、Ruby on Rails,然后从头开始。

我原以为部署不会这么难,但是从 SQLite3 迁移到 PostgreSQL 比我想象的要花费更多的时间和精力。我真的很感激在这个问题上的一些帮助。

-------------------------------------------- ---------------------------------------------- --------------------------

更新:重新安装所有内容后,我将从头开始重新设置。

我检查过我的 SQLite3 版本应用程序运行良好。所以我开始设置 postgreSQL。第一次设置 postgreSQL 时出现以下错误。通过设置,我的意思是编辑 config/database.yml 并安装 gem“pg”并删除 gem“sqlite3”。当我尝试连接到 localhost:3000 时,出现以下错误:

ActiveRecord::ConnectionNotEstablished

经过一些研究,我发现设置数据库的步骤可能更多。所以我运行了 bundle 命令,

bundle exec rake db:setup

但是在控制台中,当我运行 bundle exec rake db:setup 时出现以下错误。

Couldn't create database for {"adapter"=>"postgresql", "host"=>"localhost", "encoding"=>"utf8", "database"=>"db/myapp_test", "pool"=>5, "timeout"=>5000}
rake aborted!
could not connect to server: Connection refused (0x0000274D/10061)
Is the server running on host "localhost" (::1) and accepting
TCP/IP connections on port 5432?
could not connect to server: Connection refused (0x0000274D/10061)
Is the server running on host "localhost" (127.0.0.1) and accepting
TCP/IP connections on port 5432?
c:/ruby/myapp/config/environment.rb:5:in `<top (required)>'
Tasks: TOP => db:schema:load => environment

当我尝试连接到 localhost:3000 时,我再次遇到上述错误,而不是 ActiveRecord::ConnectionNotEstablished

问题:我做错了什么,我该如何解决这个问题?

最佳答案

如果有错误:

PG::Error

fe_sendauth: no password supplied

好消息,您的应用现在可以使用 PostgreSQL 数据库了。 (但是你需要配置一些东西)

安装 PostgreSQL 后,您可以通过命令使用 PostgreSQL 创建新的 Rails 应用程序:

rails new my_app -d postgresql

这是 database.yml 将被创建:

development:
adapter: postgresql
encoding: unicode
database: my_app_development
pool: 5
username: my_app
password:

test:
adapter: postgresql
encoding: unicode
database: my_app_test
pool: 5
username: my_app
password:

production:
adapter: postgresql
encoding: unicode
database: my_app_production
pool: 5
username: my_app
password:

你看,三个数据库都有usernamepassword字段,这是Postgresql中的account用户,三个数据库在database.yaml文件中将由该用户创建。所以你需要为它提供用户名密码。默认安装 Postgresql 后,它创建了一个用户名为 postgresql 密码为 postgresql 的用户。你可以使用它。

如果您想使用其他用户,只需打开 pgAdmin III 并通过右键单击 Login Roles 并选择 New login role 创建新用户> 使用密码创建新用户。然后将该用户名和密码放入 database.yaml 文件。

在那之后,您现在所需要做的就是找到并打开 pg_hba.conf 文件,为应用程序进行一些配置,使其可以与 PostgreSQL 一起工作。我很长时间没有使用 Windows,所以我不确定它在哪里,但是你可以在安装 PostgreSQL 的文件夹中找到它。例如,如果您安装在 E:\ 分区,也许您可​​以在以下位置找到它:

E:\PostgreSQL\version\data

找到后打开,找到一行:

# "local" is for Unix domain socket connections only
local all all ident sameuser

将其更改为:

# "local" is for Unix domain socket connections only
local all all md5

然后重新启动您的 Postgresql 数据库。要为应用程序创建数据库,请运行 rake db:createrake db:create:all。现在您的应用程序可以使用 PostgreSQL 数据库了,太高兴了:)。

关于ruby-on-rails - Rails : Deploying to Heroku, 很多问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13439276/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com