Tuesday, March 21, 2023
Installing .pak Files on WebSphere Application Server 8.5.x
Thursday, March 16, 2023
Installing additional software on the Rancher docker container
If you read one of my previous posts to install Rancher on a single docker container, you may have found that it doesn't include several commands like ping, netstat, ss, and even apt. And if you run 'uname -a', you might think that the image you're in is Ubuntu, but it's not. It's SUSE Linux (the same people who maintain Rancher), and the package manager there is accessed via the command 'zypper'. So to install several of the tools you know and love, run the following
zypper install net-tools iproute2 bind fping lsof
That's it. Now you have a few more tools for debugging.
Wednesday, March 15, 2023
Installing Rancher in a Single Docker Container on Ubuntu 20.04
This is MUCH easier than my last couple of posts because this just takes one step after you configure your OS. Rancher is a cloud native (runs on its own K8s/K3s cluster) K8s manager and container orchestration platform. It is a competitor to Red Hat OpenShift and VMWare Tanzu.
This solution is for a DEV/practice environment.
Tuesday, March 14, 2023
Installing the ELK stack and Fluent-Bit on Minikube on Ubuntu 20.04
Background
Solution
Monday, March 13, 2023
Installing Minikube and Prometheus on Ubuntu 20.04 as of 3/11/2023
Background
Solution
Monday, February 13, 2023
Recent versions of the Netcool Message Bus Probe support Kafka
We are working with a client who needed to send events from their cloud-native application to their legacy on-prem netcool Operations Insight implementation. After researching a bit, we found that their application was already writing the events of interest to a Kafka topic. The only issue was that they had an old version of the Message Bus Probe. So we installed version 21 of the probe and used the included Nokia NFMP files as a starting point to configure the probe to pull the events from this topic so that they could be processed by Netcool.
Reach out to us if you're using Netcool/Watson AIOps and need some help working through some obstacles.
Friday, February 10, 2023
The Fluent Bit rewrite_tag filter doesn't fully work until version 1.8.12
I'm working with a client who has a packaged Kubernetes distribution installed that includes Fluent Bit 1.8.3. I tried the config from my last blog post on their system, and it just does NOT work as expected. In their system, it creates a new message with the new tag, but then none of the subsequent filters are applied. I had been working in the latest version (2.0.9), and everything worked like a champ. So I downloaded 1.8.3 and found that the same configuration didn't work. It seemed to partially call the rewrite_tag filter (if I set KEEP to false, it would delete the message, but if I set KEEP to true, it did nothing). The test configuration they suggest, using an input of type Dummy actually works exactly as expected. But the problem seems to be when you have an Input of type tail. And there is no workaround other than upgrading to a newer version. I actually downloaded and tested 1.8.4 through 1.8.12 before it worked correctly. So my client is now working on upgrading to a newer version.