Installing Kafka in docker container

[root@kafka ~]# docker --version Docker version 1.12.6, build c4618fb/1.12.6 [root@kafka ~]# docker images REPOSITORY TAG IMAGE ID CREATED SIZE [root@kafka ~]# docker run --rm -p 2181:2181 -p 3030:3030 -p 8081-8083:8081-8083 -p 9581-9585:9581-9585 -p 9092:9092 -e ADV_HOST=127.0.0.1 landoop/fast-data-dev:cp3.2 & Unable to find image 'landoop/fast-data-dev:latest' locally Trying to pull repository docker.io/landoop/fast-data-dev ... latest: Pulling from docker.io/landoop/fast-data-dev 88286f41530e: … Continue reading Installing Kafka in docker container

Yum – Yellowdog Updater Modified Cheat Sheet

yum list <package> yum list kernel* yum list "​ker​nel​*" yum search <> yum provides */ping yum list yum resolv​edep /etc/ ​ redhat-release yum install <package> yum remove <package> yum locali​nst​all <package> yum deplist <package> yum localu​pdate <package> yum update yum --excl​ude​=​<package> update yum --excl​ude​=ker​nel* update yum --disa​ble​rep​o=​<reponame> update yum --enab​ler​epo​ =​<reponame> update yum check-​upd​ate yum … Continue reading Yum – Yellowdog Updater Modified Cheat Sheet

openshift with vagrant

https://app.vagrantup.com/openshift/boxes/origin-all-in-one mohammedrafi@NOC-RAFI:~$ mkdir openshift mohammedrafi@NOC-RAFI:~$ cd openshift/ mohammedrafi@NOC-RAFI:~/openshift$ vagrant init openshift/origin-all-in-one A `Vagrantfile` has been placed in this directory. You are now ready to `vagrant up` your first virtual environment! Please read the comments in the Vagrantfile as well as documentation on `vagrantup.com` for more information on using Vagrant. mohammedrafi@NOC-RAFI:~/openshift$ cat Vagrantfile # -*- mode: … Continue reading openshift with vagrant