heidloff.net - Building is my Passion
Post
Cancel

Configuration of the ibmliberty Image on Bluemix to display Logs

IBM Bluemix provides a set of Docker images in the catalog to help developers to get started. Below is a short description how to configure the ibmliberty image to see the logs in the Bluemix dashboards and the CLIs.

The ibmliberty image is an extension of the websphere-liberty image on DockerHub. The ibmliberty image adds an SSH server to support remote access and it enforces compliance with the IBM Vulnerability Advisor. In contrast to the base image Liberty is run via supervisor.

As a result of this the logs from Liberty don’t show up by default (at this time) but only the logs of the supervisor. To fix this you can simply set an environment variable to point to additional log files. Read the documentation for details.

Via CLI:

cf ic run –env LOG_LOCATIONS=/opt/ibm/wlp/usr/servers/defaultServer/logs/messages.log –name ads-liberty -P registry.ng.bluemix.net/ibmliberty

Via UI:

image

After this the logs of my Java code …

image

… show up in the dashboard:

image

As I’ve been told another solution is to create a new Dockerfile to update the supervisord configuration to redirect logs but I haven’t it yet.

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