Docker Go-Kafka implementation

Prerequisites Before diving into Go and Kafka integration, ensure you have the following tools installed on your system: Go Docker Docker Compose Setting Up Kafka with Docker Compose To get started with Kafka, we’ll use Docker Compose to create a local Kafka environment. Below is a docker-compose.yml file that sets up Kafka with Zookeeper and Kafdrop for monitoring: yaml `version: '3' services: zookeeper: image: confluentinc/cp-zookeeper:7.3.2 container_name: zookeeper environment: ZOOKEEPER_CLIENT_PORT: 2181 ZOOKEEPER_TICK_TIME: 2000 broker: image: confluentinc/cp-kafka:7....

<span title='2023-10-09 16:52:34 -0600 -0600'>October 9, 2023</span>&nbsp;·&nbsp;4 min&nbsp;·&nbsp;Ancordss

DevOps CI/CD Project 02

Simple DevOps Project -02 Prerequisites: Ansible server Jenkins Server Tocmat Server Part-01 Integration Setps Install “publish Over SSH” Manage Jenkins > Manage Plugins > Available > Publish over SSH Enable connection between Ansible and Jenkins Manage Jenkins > Configure System > Publish Over SSH > SSH Servers SSH Servers: Hostname:<ServerIP> username: ansadmin password: ******* Test the connection “Test Connection” Part-02 - Execute job to connect create a copywarfile.yml on Ansible under /opt/playbooks...

<span title='2022-08-09 22:18:56 +0000 UTC'>August 9, 2022</span>&nbsp;·&nbsp;1 min&nbsp;·&nbsp;Ancordss

DevOps CI/CD 1

Simple DevOps Project -01 We know how to use work with each and Git, Jenkins independently. What if you want to collaborate these two? that is where Simple DevOps project helps you. Follow below steps if you are a new guy to DevOps. You love it. Prerequisites Azure vm with tomcat installation Jenkins server Part-01 : Adding steps for Integration Steps to create Jenkin job Login to Jenkins console Create Jenkins job, Fill the following details, Source Code Management: Repository: https://github....

<span title='2022-08-07 19:43:44 +0000 UTC'>August 7, 2022</span>&nbsp;·&nbsp;2 min&nbsp;·&nbsp;Ancordss

Creating Hugo Website on Archlinux

this is the second page i make with hugo this is my blog and my website in this short post i will show you how to create a page with hugo in linux so let’s start Step 1 install Hugo - Pacman -Sy hugo Step 2 create a new site - hugo new site quickstart Step 3 Add a theme (you can go to themes.gohugo.io/ and search for one) cd quickstart git init git submodule add https://github....

<span title='2022-04-30 16:49:30 +0000 UTC'>April 30, 2022</span>&nbsp;·&nbsp;1 min&nbsp;·&nbsp;Ancordss