#SMB Breaking News: #HPE #MicroServer Gen10

By | June 12, 2017

Finally a new release of the HPE MicroServer updated at the new generation Gen10. HPE ProLiant MicroServer Gen10 It seems that the Gen8 release of the MicroServer was so successful (I am the proud owner of 3 HP MicroServer Gen8) that HPE never released a Gen9 model. What are the main updates after a quick… Read More »

Get over it: The #Cloud is always someone-else computer.

By | June 1, 2017

I read another article on a popular geek site on how the Cloud is the new normal and how odd you are if you have something against it. My take on it is that an intelligent IT professional is not to take this things lightly. There are several topics one has to consider when deciding… Read More »

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 »