Advanced Search
Search Results
62 total results found
Kafka
GRPC
Proxy Server
infisical
keycloak
Cloud Build
Kafka Kraft Install
Msql-2022 install
Msql-2022 install
Debezium MySQL CDC with Kafka (KRaft)
Oracle 19c Docker Compose Setup Guide
MySQL 8 Installation & Debezium/Kafka Connect User Setup on CentOS 8
Install ClickHouse on Centos 8
Installation Process Apache Flink 2.1.1
Debezium MSSQL CDC with Kafka (KRaft)
Oracle CDC
MongoDB 8 Installation Guide for CentOS 8
Install PostgreSQL 16.9 on CentOS 8
PostgreSQL 16 + Debezium CDC Setup Guide
CDC streaming pipeline from PostgreSQL → Kafka → Flink → ClickHouse.
GRPC TEST
3Proxy-Server Install
clickhouse-cluster
Kubernetes service account to authenticate with Infisical
We have already created the reviewer service account in step 1.1. Now, create a new Kubernetes service account that will be used to authenticate with Infisical
Installation methods-Kubernetes via Helm Chart
Prerequisites You have extensive understanding of Kubernetes Installed Helm package manager version v3.11.3 or greater You have kubectl installed and connected to your kubernetes cluster and must have storageclas installed. Install Infisical Helm repos...
Create the reviewer service account
First of we need to create service acounts and rolebinding so that infisical can sync and update into our k8s. Obtaining the token reviewer JWT for Infisical (infisical-reviewer-service-account.yaml) apiVersion: v1 kind: ServiceAccount metadata: n...
Creating an project and identity in web ui.
Go the the dashboard and create a project and add some testing secret. The project should be on secret management. Then follow the steps Creating an identity To create an identity, head to your Organization Settings > Access Control > Identities and pre...
Kubernetes service account that will be used to authenticate with Infisical
kind: ServiceAccount apiVersion: v1 metadata: name: infisical-service-account --- apiVersion: v1 kind: Secret type: kubernetes.io/service-account-token metadata: name: infisical-service-account-token annotations: kubernetes.io/service-acco...
Create Operator Managed Secrets
Now finally we need to create the manage secret. apiVersion: secrets.infisical.com/v1alpha1 kind: InfisicalSecret metadata: name: infisicalsecret-sample namespace: default labels: label-to-be-passed-to-managed-secret: sample-value annotati...
Install Kubernetes Operator
The Infisical Operator is a collection of Kubernetes controllers that streamline how secrets are managed between Infisical and your Kubernetes cluster. It provides multiple Custom Resource Definitions (CRDs) which enable you to: Sync secrets from Infisical ...
Deploying a Persistent and Secure Keycloak Cluster with Docker Compose + Nginx + SSL
# 🚀 Deploying a Persistent and Secure Keycloak Cluster with Docker Compose + Nginx + SSL Keycloak is a powerful open-source identity and access management solution. In this guide, we’ll set up a **persistent**, **SSL-secured**, and **Nginx-proxied** Keycloa...
Demo application with auto reload
apiVersion: apps/v1 kind: Deployment metadata: name: demo-python annotations: secrets.infisical.com/auto-reload: "true" spec: replicas: 1 selector: matchLabels: app: demo-python template: metadata: labels: ...
Infisical access control
let’s go step by step through Infisical access control — how it works, how you can use it to protect secrets per environment, team, and microservice. 🔐 1. Access Control Model Overview Infisical has a role-based access control (RBAC) system that operates at ...
Connect to Compute Engine using SSH keys and Cloud Build
Goal:Allow Cloud Build to SSH into a Compute Engine VM (e.g. abc-dev) using a fixed SSH key stored in Secret Manager, instead of generating a new key on every build. We’ll use this flow: Cloud Build ➝ Service Account ➝ Secret Manager (SSH key) ➝ SSH to VM 1...
Apache Kafka 4.1.1 – Single Node KRaft Mode on CentOS 8 (No ZooKeeper)
Apache Kafka 4.1.1 – Single Node KRaft Mode on CentOS 8 (No ZooKeeper) This guide shows how to install and run Apache Kafka 4.1.1 in KRaft mode (no ZooKeeper) on CentOS 8, using a single-node broker + controller setup. 1. Install Java 17 (Required for Kafka 4...
mssql install
sudo docker run -e "ACCEPT_EULA=Y" -e "MSSQL_SA_PASSWORD=QAZWSX@786#Dhaka" -p 1433:1433 --name sqlserver2022 --memory="6g" -d mcr.microsoft.com/mssql/server:2022-latest
Debezium MySQL CDC with Kafka (KRaft) – Full Setup Guide
Debezium MySQL CDC with Kafka (KRaft) – Full Setup Guide Overview This guide explains how to configure Debezium MySQL Change Data Capture (CDC) using: Apache Kafka 4.x (KRaft mode) Kafka Connect Debezium MySQL connector MySQL database at 192.168.1.226 Databas...
Oracle 19c Docker Compose Setup Guide
Oracle 19c Docker Compose Setup Guide Prerequisites Docker CE (latest) Docker Compose plugin CentOS 8 / RHEL 8 / Fedora / Ubuntu Oracle 19c installer file: LINUX.X64_193000_db_home.zip 1. Prepare Directory Structure mkdir -p /home/kcon/oracle-docker-compose ...
MySQL 8 Installation & Debezium/Kafka Connect User Setup on CentOS 8
📘 MySQL 8 Installation & Debezium/Kafka Connect User Setup on CentOS 8 This guide explains how to: Install MySQL 8 on CentOS 8 Secure the MySQL installation Enable remote access Create a user for Debezium/Kafka Connect Configure the user to use mysql_native_p...
Install ClickHouse on Centos 8
add repo sudo dnf install -y yum-utils sudo yum-config-manager --add-repo https://packages.clickhouse.com/rpm/clickhouse.repo install sudo dnf install -y clickhouse-server clickhouse-client start & enable sudo systemctl enable --now clickhouse-server open fire...
Installation Process Apache Flink 2.1.1
Step 1 — Install Java 17 (Required for Flink 2.x) sudo dnf install -y java-17-openjdk java-17-openjdk-devel Download Apache Flink 2.1.1 (Correct link) cd /opt sudo wget https://dlcdn.apache.org/flink/flink-2.1.1/flink-2.1.1-bin-scala_2.12.tgz Extract Flink a...
Debezium MySQL CDC with Kafka (KRaft)
1. Download Correct Debezium SQL Server Plugin (v3.3) wget https://repo1.maven.org/maven2/io/debezium/debezium-connector-sqlserver/3.3.0.Final/debezium-connector-sqlserver-3.3.0.Final-plugin.tar.gz Extract plugin And Move to /opt/kafka/connectors tar -xzf deb...
Create User and permissions
✅ SQL Server Debezium Test — Without GO 1. Create Database CREATE DATABASE DebeziumTest; Switch Database USE DebeziumTest; ✅ 2. Enable CDC on the Database (Works without GO) EXEC sys.sp_cdc_enable_db; ...
Create Oracle User and Grant Required Permissions
Oracle 19c + Debezium LogMiner Setup Guide 1. Enable Required Database Settings (CDB$ROOT) sqlplus / as sysdba Switch to CDB root ALTER SESSION SET CONTAINER = CDB$ROOT; Confirm: SHOW CON_NAME; Should show: CDB$ROOT ⚠ Now you can run MOUNT / ARCHIVELOG comma...