Rake DB:迁移错误.要求Tzinfo-1.2.1



我是Rails的新手,因此请随时建议任何可能有帮助的东西

gemfile如下

source 'https://rubygems.org'
git_source(:github) do |repo_name|
  repo_name = "#{repo_name}/#{repo_name}" unless repo_name.include("/")
  "https://github.com/#{repo_name}.git"
end
gem 'rails', '~> 5.1.4'
gem 'mysql2', '0.4.9'
gem 'puma', '~> 3.7'
gem 'sass-rails', '~> 5.0'
gem 'uglifier', '>= 1.3.0'
gem 'bootstrap-sass'
gem 'devise'
gem 'coffee-rails', '~> 4.2'
gem 'turbolinks', '~> 5'
gem 'jbuilder', '~> 2.5'
gem 'bcrypt', '~> 3.1.7'
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw]
gem 'tzinfo',       '1.2.1'

group :development, :test do
  gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
end
group :development do
  gem 'web-console', '>= 3.3.0'
  gem 'listen', '>= 3.0.5', '< 3.2'
  gem 'spring'
  gem 'spring-watcher-listen', '~> 2.0.0'
end

当我在终端上运行sudo rake db:migrate(由于某种原因,每次运行rake命令时我都需要sudo],我会得到

在任何来源运行 bundle install中找不到tzinfo-1.2.1 安装缺失的宝石。

我尝试删除gemfile.lock和andun bundle install,但这无济于事。我四处搜索,没有找到帮助。

当我运行bundle info tzinfo时,它确实给了我一个位置

* tzinfo (1.2.1)
    Summary: Daylight savings aware timezone library
    Homepage: http://tzinfo.github.io
    Path: /home/t430/.rbenv/versions/2.4.1/lib/ruby/gems/2.4.0/gems/tzinfo-1.2.1

我尝试了所有建议的事情,但它没有帮助

ubuntu 16.04

不要使用sudo ...

检查您的config/database.yml设置。这就是您可以访问MySQL的方式。确保信息正确。示例....

development:
  adapter: mysql2
  encoding: utf8
  database: my_db_name
  username: root
  password: my_password
  host: 127.0.0.1
  port: 3306

来源:https://stackoverflow.com/a/5872284

最新更新