Tuesday, April 28, 2026
Stop and remove auto start dockers
Stop all the containers
docker stop $(docker ps -a -q)
Remove all the containers
docker rm $(docker ps -a -q)
Tuesday, March 3, 2026
Install helm on rhel8
See this link via snapd:
https://snapcraft.io/install/helm/rhel the above does not work - i used binaries from here manually: https://helm.sh/docs/intro/install/
https://snapcraft.io/install/helm/rhel the above does not work - i used binaries from here manually: https://helm.sh/docs/intro/install/
Sunday, March 1, 2026
oc command fails due to missing glibc library
oc version
oc: /lib64/libc.so.6: version `GLIBC_2.33' not found (required by oc)
oc: /lib64/libc.so.6: version `GLIBC_2.34' not found (required by oc)
oc: /lib64/libc.so.6: version `GLIBC_2.32' not found (required by oc)
The solution: Download the CLI version compiled for RHEL 8. Link here for amd64
https://mirror.openshift.com/pub/openshift-v4/x86_64/clients/ocp/stable/openshift-client-linux-amd64-rhel8.tar.gz
Wednesday, November 12, 2025
Install openssh with multiple versions on different directory
See this link: https://medium.com/@asyarif/install-different-version-of-openssl-55585be844f1
wget https://github.com/openssl/openssl/releases/download/openssl-3.6.0/openssl-3.6.0.tar.gz
sudo yum install perl-IPC-Cmd
sudo yum install perl-Time-Piece
sudo yum install perl-Pod-Html
./Configure --prefix=/opt/openssl3 --openssldir=/opt/openssl3 --libdir=lib -Wl,-rpath,/opt/openssl3/lib
make
sudo make insta
Wednesday, June 25, 2025
Apache superset
I used this to setup superset:
https://medium.com/yavar/apache-superset-docker-installation-9e4cc58224fd Good videos to watch: https://www.youtube.com/watch?v=1RZG7rM6R1k&ab_channel=Preset https://www.youtube.com/watch?v=Mhai7sVU244&ab_channel=ApacheAirflow
https://medium.com/yavar/apache-superset-docker-installation-9e4cc58224fd Good videos to watch: https://www.youtube.com/watch?v=1RZG7rM6R1k&ab_channel=Preset https://www.youtube.com/watch?v=Mhai7sVU244&ab_channel=ApacheAirflow
Monday, May 19, 2025
Sunday, May 18, 2025
Install docker on debian
https://reintech.io/blog/setting-up-docker-docker-compose-debian-12#google_vignette
This is the command for docker-compose:
sudo curl -L "https://github.com/docker/compose/releases/download/v2.36.0/docker-compose-linux-x86_64" -o /usr/local/bin/docker-compose
sudo curl -L "https://github.com/docker/compose/releases/download/v2.36.0/docker-compose-linux-x86_64" -o /usr/local/bin/docker-compose
Subscribe to:
Posts (Atom)