Loading...

Blog

A Journey of a Thousand Miles Begins with a Single Step

Remove all exited docker images

Playing around with docker may leave a lot of exited images. A one-line command to cleanup your working environment. :-) Just use sudo docker ps -a | grep Exit | cut -d ' ' -f 1 | xargs sudo docker rm. Remove the sudo if you are root.

Read more

A Glance at Service Discovery

Service discovery is a key component of most distributed systems and service oriented architectures. Microservices have a demand for a service discovery that keeps track and communicate the provided instances to service consumers. On the Javaland conference, I could fetch some information regarding products, those offers service discovery.

Read more

Remove docker containers from a dedicated image

Show all containers

Read more

Debug Active Directory security within Elasticsearch Shield

Shield offers the capability to allow authentication with LDAP or the Windows Active Directory. This post explains a simple method to analyse the authentication process.

Read more

Remove password from private ssl key

In the kibana.yml configuration, I setup the mandatory configuration for SSL.

Read more

Convert private SSL key from JKS to PEM format

I faced the situation, that I have to create a CSR.

Read more

Key Authentication with sftp for FileZilla

FileZilla is capable of using ssh keys for using sftp. Sadly there is no native support and you need to convert the private key to PuTTY’s PPK format. Although FileZilla can do that for you. Go to Edit → Preferences and in section SFTP add the private key file. FileZilla will convert that into the PPK format and your are ready to use sftp.

Read more

Check active hosts within ip range

I forgot the IP address of my Raspberry Pi, so I had to check which one is currently assigned to my Pi. nmap comes for that in handy.

Read more

Every Time Zone

By accident I just read some FAQ, that directed me to this awesome website Every Time Zone. It displays several time zones in comparison and you can alter the target time. Overall it is a great visual presentation.

Read more