How to evaluate your website from security/performance/value PoV

By | June 11, 2018

The issue of making a correct evaluation of a web site is one that should be addressed by any site owner at some point. The most important metrics of a web site that are a must will be discussed bellow. SECURITY I do not know how to stress the importance of this metric. This is… Read More »

Linux: Save a pdf presentation to individual image slides

By | May 26, 2017

There is a very simple way to save a pdf presentation to individual jpeg images of the slides using convert. convert -density 300 presentation.pdf presentation_page_%04d.jpg where: – density 300 specifies the DPI used to read the pdf. – presentation_page_%04d.jpg is a name pattern for the saved images As a result if presentation has 20 slides… Read More »

#Docker #Jboss dies with java.lang.OutOfMemoryError: Metaspace after several redeploys

By | May 26, 2017

There is an annoying issue with a Jboss EAP 7 Docker container I am using. After 3 deploys of my ear package I hit the “java.lang.OutOfMemoryError: Metaspace” issue. According to RedHat Solution 2038983 this is a known issue caused by: Root Cause The Metaspace is being exhausted. Either it is undersized, or there is a… Read More »

#DevOps the new hype at #DevTalks Cluj

By | May 20, 2017

It seems that now I have a name for what I have doing for the last 15 years 🙂 I attended a a DevTalks conference and the hype of the day was the DevOps idea. According to the wiki definition: DevOps (a clipped compound of “software DEVelopment” and “information technology OPerationS”) is a term used… Read More »

Blog Links: #Java SE support for #Docker CPU and memory limits

By | May 26, 2017

A very important release announced in a post on the Oracle blog. Java SE support for Docker CPU and memory limits In short: “As of Java SE 8u131, and in JDK 9, the JVM is Docker-aware with respect to Docker CPU limits transparently.” SET 1: If -XX:ParalllelGCThreads, or -XX:CICompilerCount are not specified as command line… Read More »

Blog Links: Best #Docker related posts of the month

By | May 4, 2017

The number of uses and posts related to Docker is huge. The problem is the clutter is also big so finding the relevant posts is hard. Bellow is a selection of posts that got my attention. First I have to mention the official Docker blog where the curated list of posts about docker are posted… Read More »

Linux Cluster with #DRBD replication: solving “HA LVM requires Only one logical volume per volume group” issue

By | April 24, 2017

I have a RHEL 6 Linux cluster setup where the main database storage is replicated on a remote site using DRBD. In case of a failure of the primary site the decision is taken to move operations on the remote site. When the production site is back online sometimes the administrator is too eager to… Read More »

Solving “HA LVM: Improper setup detected * initrd image needs to be newer than lvm.conf”

By | April 24, 2017

In a Linux HA cluster setup on RHEL 6 that involves replication between sites using DRBD suddenly after reboot of one of the nodes it was imposible to start any cluster service from that node. Surprinsingly there was no issue to do so from the other node. While looking in the /var/log/messages on the affected… Read More »

#Docker: Network monitoring with Docker-compose #LibreNMS environment stack

By | May 28, 2017

I started from a great post Monitoring your Ubiquiti home-network with a Docker LibreNMS and SNMP, to make my own network monitor where to gather all the network devices SNMP messages. Because I like docker compose files to start up all my components and I want to use a separate docker mysql I made the… Read More »

#Docker: Custom #JBoss EAP docker image with CLI applied patches and CLI configurations

By | May 28, 2017

In the following I am trying to create a Jboss EAP docker image with up-to-date patches and configurations applied using JBoss CLI. With this template I can then very easy setup any complex JBoss based application environment with ready defined data sources, connectors , resource adapters etc. In the following I will describe the steps… Read More »