Questions tagged [vmc]

vmc is Cloud Foundry's command-line interface.

67 questions
1
vote
1 answer

How can I push just a local folder to my remote Cloud Foundry instance?

I just want to create a folder outside my war structure. I need to replicate my local architecture using vmc or via manifest.yml I want to create directories into the root of the remote system. For example, in Amazon Elastic Beanstalk you can do…
Azimuts
  • 1,212
  • 4
  • 16
  • 35
1
vote
2 answers

vmc not recognised as an internal or external command

I installed Ruby 1.9.3 and also installed vmc successfully as per instructions at http://docs.cloudfoundry.com/tools/vmc/installing-vmc.html But when I try to run vmc with "Start Command Prompt with Ruby" cmd, I get 'vmc' not recognised error, I…
1
vote
2 answers

vmc instances appname 3 gives error: Unknown app '3'

I have installed Ruby and Gems and also installed VMC following the documentation on the cloudfoundry website. I could deploy a simple hello world application successfully. Several commands seem to work fine. However, few commands just fail and I…
user1892775
  • 2,001
  • 6
  • 37
  • 58
1
vote
1 answer

Getting "undefined method 'changed?'" error on vmc push after latest upgrade

After upgrading to vmc 0.4.4 I can't do push on my Sinatra app anymore Any known fixes? Time of crash: 2012-12-06 13:14:20 -0800 NoMethodError: undefined method `changed?' for # vmc-0.4.4/lib/vmc/cli/app/push/sync.rb:13:in…
Alex F
  • 273
  • 4
  • 13
1
vote
2 answers

Memory limit of 512M exceeded

I am trying to run a Grails app at cloudfoundry.com, but it is returning a 502 Bad Gateway and then a 404 Not Found. I located logs/err.log, and it says: # Logfile created on 2012-11-22 17:39:55 +0000 by logger.rb/25413 F,…
greymatter
  • 840
  • 1
  • 10
  • 25
1
vote
1 answer

How can I install beta versions of vmc?

I am trying to install the 0.4.0.beta version of vmc, but after installation I still have old version. > gem install vmc --pre [...] Installing RDoc documentation for vmc-0.4.0.beta.90... > ~ $ vmc --version vmc 0.3.23 What am I doing wrong? I…
Edi
  • 621
  • 6
  • 17
1
vote
3 answers

Cloud Foundry Uaa Error

I've configured uaa for my vcap , I also successfully to register a new user into it, azureuser@vcap:~/cloudfoundry/vcap/dev_setup/bin$ sudo vmc login Attempting login to [http://paas.azure4j.us] Email: test@meruvian.org Password: ** Successfully…
1
vote
1 answer

Unable to 'vmc login' to api.cloudfoundry.com due to "undefined method `get' for CFoundry::Client

Please see gemlist and vmc error below. $gem list *** LOCAL GEMS addressable (2.2.8) cfoundry (0.3.43) interact (0.4.8) json_pure (1.6.7) mime-types (1.19) multi_json (1.3.6) rb-readline (0.4.2) rest-client (1.6.7) rubygems-update (1.8.24) rubyzip…
Incarnate1970th
  • 202
  • 2
  • 7
1
vote
3 answers

cloudfoundry - vmc register error with external uri

I installed cloudfoundry with the -D option to change the default domain. Cloudfoundry installs fine and starts but when I try to vmc in I get an error: swampfox@swampcf:~$ vmc target api.mydomain.com Successfully targeted to…
swampfox07
  • 51
  • 1
  • 5
1
vote
4 answers

error installing caldecott

recently i made web application and want to atatch my database with it ..though i followed steps of doing it but still i am getting error ..i dont know where's problem i did in steps .. please let me know where i am wrong please help me where i…
Vishal Sharma
  • 112
  • 2
  • 9
1
vote
3 answers

How can I read VCAP_SERVICES using VMC in cloudfoundry client?

Can I read credentials using VMC, When I create a new service in Cloud Foundry?
1
vote
2 answers

how to read vmc push log

when i use vmc push project to micro cloudfoundry,start application error, smart tips is below. but i can't find log is my project path. Uploading Application: Checking for available resources: OK Processing resources: OK Packing application:…
sjbwylbs
  • 151
  • 14
0
votes
1 answer

How to set a controller file from a subfolder within a route file?

I'm working on a ionic project. I have the following app structure... app |__dashboard |__dashboard.html |__dashboard.module.js |__controller.js |__app.js |__config.js index.html I have a controller defined inside the…
Pablo Darde
  • 5,844
  • 10
  • 37
  • 55
0
votes
1 answer

PropertyChangeListener on objects inside a List

My problem is that when I change the value from a property of my model the PropertyChangeSupport fires but the PropertyChangeListener in the view is never reached. So I guess I am making something wrong by adding the listener. Any kind of input is…