heidloff.net - Building is my Passion
Post
Cancel

Access to Bluemix Applications via Command Line

During the development and testing of applications it’s sometimes necessary to get access to the hosts of the running applications via command line, for example if you want to check or set certain environment variables, log files, etc. Dependent on whether you run applications as Cloud Foundry applications or Docker containers IBM Bluemix provides different mechanisms to do this.

Docker

For Docker you can SSH into containers. Read the documentation for details. Essentially you need an SSH key pair and you need to add the public key to the container. This can either be done when building the images via Dockerfile or you can use the Bluemix user interface to do this for single instance containers.

image

After this you can use SSH with your private key by invoking a command like …
ssh -i /Users/nheidloff/.ssh/cloud.key root@134.168.15.124

image

Cloud Foundry

For Cloud Foundry based applications you need to enable the debugging features. Read the blog from my colleague Sai Vennam for details. The feature is rather hidden in the web user interface. You need to set an environment variable either via the cf (Cloud Foundry) command line interface or via the user interface.

BLUEMIX_APP_MGMT_ENABLE
devconsole+shell+inspector+trace+proxy+hc

image

After this you can open the management console by appending “/bluemix-debug/manage” to the URL of your app.

image

From the management console you can open shells and restart applications.

image

Featured Blog Posts
Disclaimer
The postings on this site are my own and don’t necessarily represent IBM’s positions, strategies or opinions.
Trending Tags