Hide Forgot
1. This one works: rhc-ctl-app -a server --rhlogin sitapati --command status 2. This one does not: rhc-ctl-app -a server --rhlogin sitapati --password --command status The second command returns: Command or embed is required Usage: /usr/bin/rhc-ctl-app ...... From my reading of the usage instructions and the man page, the --password one should work. rhc-0.84.15-1.el6_2.noarch on Fedora 16
when using the --password flag, it is expected that the following argument is your password. Therefore in example 2, you are essentially setting your password to "--command", and the rhc-ctl-app executable does not think you have passed a --command flag. Try something like this: rhc-ctl-app -a server --rhlogin sitapati --password mypass --command status