1

我 在云 9上使用ruby​​ 2.3.0p0Rails 4.2.4,我想将我的数据库从 SQLite3 更改为 PostgreSQL。

我有一些关于 sqlite3 的数据。

# config/database.yml
default: &default
  adapter: sqlite3
  pool: 5
  timeout: 5000

development:
  <<: *default
  database: db/development.sqlite3
test:
  <<: *default
  database: db/test.sqlite3
production:
  <<: *default
  database: db/production.sqlite3

我尝试了taps gem,它要求输入用户名和密码,但我不知道在哪里可以找到这些凭据。

这个问题还有其他解决方案吗?

4

2 回答 2

2

首先你必须检查 postgresql 是否正在运行,如果你必须启动它然后运行:

$ sudo service postgresql start

进入交互式 postgresql 终端 psql:

$ sudo sudo -u postgres psql

创建一个用户并提供其密码,然后退出 psql:

postgres=# CREATE USER username SUPERUSER PASSWORD 'password';
postgres=# \q

创建环境变量以将它们放置在 config.yml 文件中,并将它们导出到 ~/.profile 文件中:

$ echo "export USERNAME=username" >> ~/.profile
$ echo "export PASSWORD=password" >> ~/.profile

然后从 postgresql 更新 template1:

$ sudo sudo -u postgres psql
postgres# UPDATE pg_database SET datistemplate = FALSE WHERE datname = 'template1';
postgres# DROP DATABASE template1;
postgres# CREATE DATABASE template1 WITH TEMPLATE = template0 ENCODING = 'UNICODE';
postgres# UPDATE pg_database SET datistemplate = TRUE WHERE datname = 'template1';
postgres# \c template1

收集垃圾并分析正在运行的数据库VACUUM

postgres# VACUUM FREEZE;
postgres# \q

现在更新您的配置文件,以使其内容与您之前所做的一致:

default: &default
  adapter: postgresql
  encoding: unicode
  pool: 5
  username: <%= ENV['USERNAME'] %>
  password: <%= ENV['PASSWORD'] %>
  host:     <%= ENV['IP'] %>

development:
  <<: *default
  database: app_development

test:
  <<: *default
  database: app_test

production:
  <<: *default
  database: app_production

检查您是否安装了 pg gem,如果没有,则运行,然后将其添加到您的 Gemfile 中,然后捆绑它:

gem install pg
bundle install

如果您的数据库仍未创建和/或您收到以下消息:

ActiveRecord::NoDatabaseError: FATAL:  database "<project_name>_development" does not exist

然后运行适当的命令来创建它:

rake db:create

要测试是否一切正常,请尝试生成一个简单的脚手架:

rails g scaffold Post title content:text

要将此迁移及其内容持久保存到数据库,请运行 migrate 命令:

rake db:migrate

现在,如果您已经成功,一切都应该没有问题,您可以运行:

rails console

在数据库中创建一条新记录:

Post.create title: 'Number one', content: 'Lorem Ipsum' 

并继续编码并享受乐趣。

注意:如果您尝试了一些错误,例如:

PG::ConnectionBad: fe_sendauth: no password supplied

然后检查您的环境变量是否正常,如果错误仍然存​​在,您可以将名称和密码“硬编码”到 config.yml 文件中,尽管不建议这样做,所以最好尽量避免这种“解决方案”最坏的情况。

于 2016-07-16T18:09:32.510 回答
0

您的database.yml文件应该类似于 postgres:

default: &default
  adapter: postgresql
  user: username
  password: *****
  pool: 5
  timeout: 5000

development:
  <<: *default
  database: myrubyblogdev

test:
  <<: *default
  database: myrubyblogtest

此外,在 gemfile 添加gem 'pg'

对于 sqlite 数据库中包含的数据,您可以创建一个rake任务来将数据传输到新创建的 postgres 数据库。

于 2016-07-16T08:37:57.623 回答