Centralized Configuration and Message Bus in Spring Cloud Microservices
Challenges with Manual Configuration Refresh
In a micorservice architecture using Spring Cloud Config, refreshing configuration changes on each client typically requires sending a POST request to the /actuator/refresh endpoint. While this works for a small number of clients, it becomes inefficient and cumbersome as the number of microservices g ...
Posted on Sat, 19 Sep 2026 16:47:04 +0000 by kingpin393
Integrating Nacos for Service Discovery and Configuration in Spring Boot
Introduction
In the landscape of distributed systems, service discovery and centralized configuration management are critical components. Nacos, Alibaba's open-source platform, provides a robust solution for dynamic service discovery and configuration management. This guide demonstrates how to integrate Nacos with a Spring Boot applicasion to m ...
Posted on Sat, 05 Sep 2026 16:29:27 +0000 by gl_itch
Nacos Client Configuration Loading Mechanism
Nacos Client Configuration Loading Mechanism
The externalized configuration implementation in Nacos is primarily handled by the NacosPropertySourceLocator. This component is responsible for loading configuraton data from Nacos and making it available to the Spring application context.
The configuration loading process involves several key steps ...
Posted on Sat, 22 Aug 2026 16:14:47 +0000 by aussie_clint
Ansible Common Modules for Linux System Administration
Introduction to Ansible Batch Management Service
Significance of Ansible Batch Management
Improves work efficiency.
Enhances accuracy of operations.
Reduces maintenance costs.
Minimizes repetitive tasks.
Key Functionalities
Perform batch system configuration and operations.
Deploy software and services in bulk.
Distribute files and data acro ...
Posted on Wed, 12 Aug 2026 16:58:47 +0000 by jonki
Configuration Management in Spring Boot
Configuration Files
Spring Boot supports multiple configuration formats such as .properties and YAML, enabling developers to manage application settings effectively. The @ConfigurationProperties annotation allows binding of configuration values to Java objects using a specified prefix.
package tech.example.config;
import org.springframework.bo ...
Posted on Tue, 21 Jul 2026 17:01:08 +0000 by ronthu
Managing Configurations in Spring Cloud with Nacos
Nacos offers a centralized configuration service, allowing external management of application properties across all environments while supporting real-time updates without service restarts.
Adding Configuration Files in Nacos
Begin by creating a configuration entry in the Nacos console. For example, define a file named inventory-service-prod.ya ...
Posted on Sat, 04 Jul 2026 17:29:15 +0000 by maxudaskin
Introduction to Puppet: A Configuration Management System
Introduction to Puppet
Overview
Puppet is a centralized configuration management system designed for Linux and Unix platforms, utilizing a client-server architecture. It employs its own declarative language to manage system resources such as configuration files, users, cron jobs, packages, and services. The primary design goal of Puppet is to s ...
Posted on Sat, 27 Jun 2026 17:58:04 +0000 by gofeddy
Automated Pod Restarts Triggered by Kubernetes Configuration Changes
Cloud-native architectures rely heavily on ConfigMaps and Secrets for externalizing application settings. However, modifying these resources does not inherently propagate changes to running containers. Environment variables injected via env remain static until a pod restart. File-based mounts eventually reflect updates but often introduce sligh ...
Posted on Fri, 29 May 2026 19:34:28 +0000 by daimoore
Comprehensive SaltStack Guide: Commands, Configuration, and Advanced Features
Core Commands
salt - Primary command for executing modules on minions from the master:
salt [options] '<target>' <function> [arguments]
Example: salt '*' test.ping
salt-run - Execute runnner modules on the master:
salt-run manage.status # View all minion statuses
salt-run manage.down # Show offline minions
salt-run manage.u ...
Posted on Mon, 25 May 2026 19:51:23 +0000 by lalloo
Getting Started with Nacos: Setup and Dynamic Configuration
Installation and Startup
Download the Nacos binary from the official GitHub releases page and extract it to a convenient location. Inside the extracted directory, conf/application.properties holds default settings, such as the web port (default 8848) wich typically does not need to be changed.
Navigate to the bin folder, open a terminal, and ru ...
Posted on Sat, 16 May 2026 23:27:56 +0000 by 2705ap