For example, I want to create a new iLO user with all privileges on a old HP Blade server (name: my-old-box/ bay: 8). But I don't know have the access to the box itself. The workaround is to do it via the enclosure (HPENC01) if you have the access. ssh HPENC01 HPENC01> connect server 8 … Continue reading Create HP blade iLO user via enclosure
Understanding Kubernetes
Continue with my previous post 'Docker Infrastructure V1.1', I want to share some my understanding of how Kubernetes works. Logically, there are 3 basic components in Kubernetes. Pod, Relication-controller and Service: Pod: it is the smallest unit in Kubernetes. It contains one or more containers. Replication-controller: It controls and also guarantees the instance numbers of … Continue reading Understanding Kubernetes
SELinux block timedatectl changes
Just found out this morning that if SELinux is in enforcing mode, it may block the timedatectl command to run in RHEL7. Once changing SELinux to permissive, the problem is gone. Here is the error that I got when executing 'timedatectl set-timezone Australia/Sydney' in a bash script: Failed to issue method call: Did not receive … Continue reading SELinux block timedatectl changes
Docker infrastructure V1.1
I spent a couple days looking into Kubernetes which is a docker orchestration tool. It was initially developed by Google and used for managing the containers in Google cloud. I have set it up in my POC environment, and found out it is really cool. So I updated my docker infrastructure design to add kubernetes … Continue reading Docker infrastructure V1.1
Akamai Pragma Header
Adding the Pragma header in http request is very helpful when troubleshooting Akamai caching. The Pragma header can be:"akamai-x-cache-on, akamai-x-cache-remote-on, akamai-x-check-cacheable, akamai-x-get-cache-key, akamai-x-get-extracted-values, akamai-x-get-nonces, akamai-x-get-ssl-client-session-id, akamai-x-get-true-cache-key, akamai-x-serial-no" In the http response, the following value can tell us whether the URL is cached by Akamai, and how long it is cached. X-Check-Cacheable: It shows whether the … Continue reading Akamai Pragma Header