无法使用应用名称访问Heroku控制台

时间:2013-07-01 00:41:53

标签: heroku console

我刚开始使用新的应用程序而且我能够将它推送到Heroku,但我看来,我无法访问控制台。

我正在运行的命令是:

heroku run console --app myappname

我得到的是:

Running `console` attached to terminal... up, run.3951 Usage:   rails
new APP_PATH [options]

Options:   -r, [--ruby=PATH]              # Path to the Ruby binary of
your choice
                                 # Default: /app/vendor/ruby-1.9.3/bin/ruby   -b, [--builder=BUILDER]        #
Path to a application builder (can be a filesystem path or URL)   -m,
[--template=TEMPLATE]      # Path to an application template (can be a
filesystem path or URL)
      [--skip-gemfile]           # Don't create a Gemfile
      [--skip-bundle]            # Don't run bundle install   -G, [--skip-git]               # Skip Git ignores and keeps   -O,
[--skip-active-record]     # Skip Active Record files   -S,
[--skip-sprockets]         # Skip Sprockets files   -d,
[--database=DATABASE]      # Preconfigure for selected database
(options:
mysql/oracle/postgresql/sqlite3/frontbase/ibm_db/sqlserver/jdbcmysql/jdbcsqlite3/jdbcpostgresql/jdbc)
                                 # Default: sqlite3   -j, [--javascript=JAVASCRIPT]  # Preconfigure for selected JavaScript
library
                                 # Default: jquery   -J, [--skip-javascript]        # Skip JavaScript files
      [--dev]                    # Setup the application with Gemfile pointing to your Rails checkout
      [--edge]                   # Setup the application with Gemfile pointing to Rails repository   -T, [--skip-test-unit]         # Skip
Test::Unit files
      [--old-style-hash]         # Force using old style hash (:foo =    'bar') on Ruby >= 1.9

Runtime options:   -f, [--force]    # Overwrite files that already
exist   -p, [--pretend]  # Run but do not make any changes   -q,
[--quiet]    # Suppress status output   -s, [--skip]     # Skip files
that already exist

Rails options:   -h, [--help]     # Show this help message and quit  
-v, [--version]  # Show Rails version number and quit

Description:
    The 'rails new' command creates a new Rails application with a default
    directory structure and configuration at the path you specify.

    You can specify extra command-line arguments to be used every time
    'rails new' runs in the .railsrc configuration file in your home directory.

    Note that the arguments specified in the .railsrc file don't affect the
    defaults values shown above in this help message.

Example:
    rails new ~/Code/Ruby/weblog

    This generates a skeletal Rails installation in ~/Code/Ruby/weblog.
    See the README in the newly created application to get going.

我知道,应用程序名称是正确的,因为我只是推送它并加载它。

当我暂时查看Heroku上的日志时,当我试图按下控制台时,我看到以下内容:

2013-07-01T16:21:58.780979+00:00 heroku[api]: Starting process with command `bundle exec rails console` by mzaragoza@myemail.com
2013-07-01T16:22:09.000482+00:00 heroku[run.2993]: Awaiting client
2013-07-01T16:22:09.055474+00:00 heroku[run.2993]: Starting process with command `bundle exec rails console`
2013-07-01T16:22:10.342966+00:00 heroku[run.2993]: State changed from starting to up
2013-07-01T16:22:13.870963+00:00 heroku[run.2993]: Process exited with status 0
2013-07-01T16:22:13.889703+00:00 heroku[run.2993]: State changed from up to complete

4 个答案:

答案 0 :(得分:9)

heroku run rails c怎么样?如果添加rails会不会有什么不同?

PS:我不确定你是想从评论中访问Rails的控制台还是普通的shell。

答案 1 :(得分:2)

正确的形式是=> heroku run "any rails command here"

答案 2 :(得分:1)

升级到Rails时出现此问题> 4.0.0。解决方案是在本地运行以下命令rake rails:update:bin。这将在应用程序的根目录中生成bin目录。 确保它不在.gitignore文件中。提交然后将更改推送到Heroku。

答案 3 :(得分:0)

对于3.2.x应用程序:

当我从我的仓库中移除script/rails并推送到Heroku时,这也发生在我身上。恢复提交并推动更改使事情再次发挥作用。