Automated Deployment with Shell Scripts and Frameworks
Application Management and Deployment Procedures
When deploying applications, it's essential to follow a systematic shutdown and startup sequence. The general principle is to close applications in the reverse order they were opened.
Shutdown sequence: A → B
Startup sequence: B → A
After deployment, verify functionality by checking the appplicat ...
Posted on Tue, 22 Sep 2026 16:53:34 +0000 by apollo
Implementing Load Balancing with Nginx and Spring Boot
Load balancing distributes incoming network traffic across multiple servers to ensure no single server becomes overwhelmed. This technique enhances application availability, scalability, and reliability. Nginx, a high-performance web server, can also function as an effective software load balancer for applications like those built with Spring B ...
Posted on Mon, 21 Sep 2026 16:45:38 +0000 by Elliott
Deploying and Configuring ingress-nginx for Kubernetes Ingress Management
Traditional NodePort services in Kubernetes face critical limitations: each service requires a dedicated port, leading to port exhaustion, and they operate only at Layer 4 (TCP/UDP), lacking HTTP-aware routing capabilities. Ingress addresses these gaps by providing a Layer 7 HTTP(S) routing layer that abstracts external access through domain-ba ...
Posted on Mon, 21 Sep 2026 16:17:37 +0000 by Nimbuz
Resolving Nginx 403 Errors Without Running as Root
Resolving Nginx 403 Errors Without Running as Root
Nginx's worker process runs under a configured user account, which is defined in the nginx configuration file located at /usr/local/nginx/conf/nginx.conf.
A common workaround is to set the worker user to root to match the master process user, thereby resolving permission issues. However, this a ...
Posted on Wed, 16 Sep 2026 16:46:16 +0000 by cgrenda
Configuring and Using Essential Nginx Modules: Stub Status, Random Index, and Sub Filter
Nginx modules are categorized into official and third-party modules.
To list the modules loaded via an RPM-based Nginx installation, you can use the command nginx -V. Typical default modules include:
--with-compat
--with-file-aio
--with-threads
--with-http_addition_module
--with-http_auth_request_module
--with-http_dav_module
--with-h ...
Posted on Wed, 16 Sep 2026 16:44:45 +0000 by aircooled57
Essential CentOS Server Configuration
Installing Java 8 =========
Checking available Java versions
yum search java | grep jdk
Select Java 8 from the available options.
Installing Java 8
yum install java-1.8.0-openjdk java-1.8.0-openjdk-devel
After installation, note the complete Java 8 version name displayed in the output, as it will be needed for environment variable configu ...
Posted on Sun, 13 Sep 2026 16:39:22 +0000 by emdee
Essential Nginx Command Line and Location Routing Logic
Process Control and CLI Operations
Managing the Nginx web server involves interacting with the binary directly via the command line interface. On Windows systems, the service can be initiated simply by executing the binary.
start nginx
To Unix-like environments or when controlling an existing instance, various signals and flags are available t ...
Posted on Sun, 13 Sep 2026 16:08:38 +0000 by vij
Apache Tomcat Installation, Configuration, and Deployment Guide
Environment Setup and Installation
1. Deploying Java Environment
Install the OpenJDK runtime environment using the system package manager.
yum install java-1.8.0-openjdk -y
java -version
2. Installing Tomcat
Download the binary distribution from the Apache mirror, extract it, and configure the environment variables.
mkdir -p /data/software
cd ...
Posted on Fri, 11 Sep 2026 16:12:20 +0000 by piyushsharmajec
Nginx Load Balancer Configuration and Implementation Guide
Nginx serves dual purposes in modern infrastructure: it functions as both a web server and a load balancing solution through reverse proxy capabilities. This article explores how to implemant load balancing effectively using Nginx.
Core Functions of Load Balancers
A load balancer acts as an intermediary layer between clients and backend servers ...
Posted on Thu, 10 Sep 2026 16:22:32 +0000 by ash4u
Configuring HTTPS Certificates for Nginx
Principles and Benefits of HTTPS
Reasons for Using HTTPS
HTTP lacks security measures:
Data can be intercepted and read by third parties
Content may be altered or hijacked during transmission
How HTTPS Works
HTTPS secures data through encryption and authentication:
Symmetric encrypsion uses identical keys for encryption and decryption
Asymme ...
Posted on Wed, 09 Sep 2026 16:39:30 +0000 by chrisleon