I have 2 applications hosted on Cloudfoundry. when i created the first application. i used vmc rails-console app1
to manage it and it worked perfectly. then i added the second application and try to connect to rails-console by vmc rails-console app2
and this time it shows Error: Login attempt timed out.
or
Error: Console port not provided for [app2]. Try restarting the app.
but i can still connect to rails-console of my first application
following is the result from vmc apps
| caldecott | 1 | RUNNING | caldecott-57ecb.cloudfoundry.com | mysql-616d4 |
| app1 | 2 | RUNNING | app1.cloudfoundry.com | mysql-616d4 |
| app2 | 1 | RUNNING | app2.cloudfoundry.com | mysql-616d4 |
is there any limitations on Cloudfoundry side or what i have missed to solve this issue?
thanks.
plus Gemfile of the second application
source 'https://rubygems.org'
gem 'rails', '3.2.6'
gem 'bootstrap-sass', "~> 2.0.4.0"
gem 'thin'
gem 'mysql2'
group :development do
gem 'sqlite3'
gem 'rspec-rails'
gem 'annotate', '~> 2.4.1.beta'
end
group :assets do
gem 'sass-rails', '~> 3.2.3'
gem 'coffee-rails', '~> 3.2.1'
gem 'uglifier', '>= 1.0.3'
end
gem 'jquery-rails'
gem 'high_voltage'