Tag

Apache

0 views collected around this technical thread.

Raymond Ops
Raymond Ops
Jun 14, 2025 · Operations

Decoding Tomcat and Apache Logs: Formats, Parameters, and Browser Differences

This article explains the default and recommended log patterns for Tomcat and Apache HTTPD, provides detailed descriptions of each log parameter, shows sample log entries, and compares how different browsers appear in the server logs.

ApacheTomcatbackend
0 likes · 9 min read
Decoding Tomcat and Apache Logs: Formats, Parameters, and Browser Differences
Raymond Ops
Raymond Ops
Apr 19, 2025 · Operations

Essential Apache & Nginx Log Analysis Commands for Linux Ops

This guide compiles practical Linux shell commands for analyzing Apache and Nginx access logs, covering IP frequency, page request counts, status code distribution, traffic volume, crawler detection, subnet aggregation, and time‑based request rates to help administrators monitor web service health efficiently.

ApacheNginxlinux
0 likes · 15 min read
Essential Apache & Nginx Log Analysis Commands for Linux Ops
Raymond Ops
Raymond Ops
Feb 13, 2025 · Operations

Automate Apache Deployment with Ansible: Step‑by‑Step Guide

Learn how to automate the installation, configuration, and management of Apache HTTP Server using Ansible, covering installation of Ansible, inventory setup, role creation, task and template writing, playbook execution, verification, and clean removal, with full command examples for Debian and RPM systems.

ApacheConfiguration ManagementDevOps
0 likes · 8 min read
Automate Apache Deployment with Ansible: Step‑by‑Step Guide
Java Tech Enthusiast
Java Tech Enthusiast
Jun 2, 2024 · Operations

Why Most Servers Use Linux: Historical and Technical Reasons

Linux dominates modern server environments because its free, lightweight distributions and robust open‑source ecosystem outperform the costly, configuration‑heavy Windows/IIS stack, offering superior performance, native container support, and community‑driven innovation that overcame early Microsoft resistance and drove industry-wide adoption.

ApacheDevOpsIIS
0 likes · 9 min read
Why Most Servers Use Linux: Historical and Technical Reasons
Efficient Ops
Efficient Ops
Apr 23, 2024 · Operations

Why Do Most Servers Run Linux? Uncover the Technical and Historical Reasons

This article compiles multiple expert insights explaining why Linux dominates server environments, covering early Windows hosting limitations, ecosystem advantages, performance differences, cost factors, container support, and the evolution of Microsoft’s stance toward open source.

ApacheIISServer OS
0 likes · 10 min read
Why Do Most Servers Run Linux? Uncover the Technical and Historical Reasons
Mike Chen's Internet Architecture
Mike Chen's Internet Architecture
Feb 5, 2024 · Backend Development

Comprehensive Overview of RocketMQ: Architecture, Features, and Application Scenarios

This article provides an in‑depth introduction to RocketMQ, covering its evolution, core components, message domain model, key characteristics such as ordered delivery and deduplication, and typical use cases like traffic shaping, asynchronous decoupling, and distributed transaction messaging.

ApacheBackend DevelopmentDistributed Systems
0 likes · 8 min read
Comprehensive Overview of RocketMQ: Architecture, Features, and Application Scenarios
DevOps Engineer
DevOps Engineer
Feb 1, 2024 · Operations

Overview of Apache Software Foundation Infra Services and Tools

This article provides a comprehensive overview of the Apache Software Foundation's infrastructure services and tools—including website hosting, email, self‑service platforms, version‑control repositories, issue‑tracking systems, CI/CD pipelines, code quality, publishing, virtual machines, and miscellaneous utilities—helping DevOps and SRE engineers understand and leverage Apache's operational ecosystem.

ApacheCI/CDDevOps
0 likes · 14 min read
Overview of Apache Software Foundation Infra Services and Tools
AntTech
AntTech
Jan 19, 2024 · Backend Development

Fury: A High‑Performance Multi‑Language Serialization Framework and Its Path to the Apache Incubator

Fury is a JIT‑compiled, zero‑copy, multi‑language serialization framework that delivers up to 170× speed improvements over traditional serializers, supports Java, Python, C++, Go, JavaScript, Scala and Rust, and has recently been donated to the Apache Software Foundation after a successful open‑source journey.

ApacheFuryJava
0 likes · 17 min read
Fury: A High‑Performance Multi‑Language Serialization Framework and Its Path to the Apache Incubator
Practical DevOps Architecture
Practical DevOps Architecture
Jan 18, 2024 · Operations

Migrating Zabbix Web Frontend from Apache to Nginx

This guide explains why and how to replace the single‑threaded Apache httpd service with Nginx for Zabbix, covering installation of Nginx and PHP‑FPM, configuration adjustments, service restarts, and timezone fixes to ensure the Zabbix web interface works correctly.

ApacheNginxPHP-FPM
0 likes · 5 min read
Migrating Zabbix Web Frontend from Apache to Nginx
php中文网 Courses
php中文网 Courses
Dec 11, 2023 · Information Security

How to Build a Simple Web-Based Keylogger with Apache, JavaScript, and PHP

This tutorial explains how to install Apache, create a simple HTML page, and develop JavaScript and PHP components to build a basic web‑based keylogger, while emphasizing legal and ethical considerations for its use.

ApacheJavaScriptKeylogger
0 likes · 7 min read
How to Build a Simple Web-Based Keylogger with Apache, JavaScript, and PHP
php中文网 Courses
php中文网 Courses
Sep 27, 2023 · Backend Development

Step-by-Step Guide to Building a PHP & MySQL Forum

This comprehensive tutorial walks you through setting up a Linux server, installing Apache, PHP, and MySQL, creating the necessary database schema, implementing user registration, login, thread and post management, and finally deploying the complete PHP‑based discussion forum to a DigitalOcean Droplet.

ApacheBackend DevelopmentDeployment
0 likes · 18 min read
Step-by-Step Guide to Building a PHP & MySQL Forum
Top Architect
Top Architect
May 22, 2023 · Backend Development

Understanding Apache Work Modes and Nginx Advantages for High‑Concurrency Web Servers

The article explains Apache's three MPMs (prefork, worker, event), how Nginx's event‑driven architecture and epoll model improve concurrency handling, and provides performance comparisons showing Nginx handling tens of thousands of connections with far lower memory usage than Apache.

ApacheBackend DevelopmentNginx
0 likes · 10 min read
Understanding Apache Work Modes and Nginx Advantages for High‑Concurrency Web Servers
Laravel Tech Community
Laravel Tech Community
Apr 23, 2023 · Backend Development

Why Nginx Outperforms Apache in High‑Concurrency Scenarios

The article compares Nginx and Apache, showing how Nginx’s event‑driven, single‑threaded architecture and efficient use of memory and I/O allow it to handle tens of thousands of concurrent connections with far lower resource consumption than Apache’s prefork or worker models.

ApacheNginxbackend
0 likes · 10 min read
Why Nginx Outperforms Apache in High‑Concurrency Scenarios
Architecture Digest
Architecture Digest
Mar 16, 2023 · Backend Development

Understanding Apache’s Three MPMs and Why Nginx Excels in High‑Concurrency Scenarios

The article explains Apache’s three processing models (prefork, worker, event), compares their resource usage with Nginx, and demonstrates how Nginx’s event‑driven, single‑threaded architecture achieves far higher concurrent connection capacity and better performance for web services.

ApacheBackend DevelopmentNginx
0 likes · 11 min read
Understanding Apache’s Three MPMs and Why Nginx Excels in High‑Concurrency Scenarios
Code Ape Tech Column
Code Ape Tech Column
Feb 13, 2023 · Backend Development

Performance Comparison and Source Analysis of Java Bean Copy Utilities

This article analyzes the performance and implementation differences of various Java object‑copy utilities—including Apache BeanUtils, PropertyUtils, Spring BeanCopier, and Spring BeanUtils—by examining source code, benchmarking copy operations, and recommending alternatives to avoid the inefficiencies of Apache BeanUtils.

ApacheBeanUtilsJava
0 likes · 11 min read
Performance Comparison and Source Analysis of Java Bean Copy Utilities
DataFunTalk
DataFunTalk
Feb 2, 2023 · Big Data

SeaTunnel: Design Goals, Current Status, Architecture, and Future Roadmap

This article provides a comprehensive overview of Apache SeaTunnel, covering its design objectives, current capabilities such as multi‑engine support and extensive connector ecosystem, detailed architecture including engine‑independent APIs and execution flows, and outlines the upcoming roadmap to expand connectors, launch a visual web UI, and introduce a dedicated SeaTunnel Engine.

ApacheBig DataConnector
0 likes · 12 min read
SeaTunnel: Design Goals, Current Status, Architecture, and Future Roadmap
Big Data Technology Architecture
Big Data Technology Architecture
Oct 25, 2022 · Big Data

Rebuilding Shopee's Data Integration Platform with Apache SeaTunnel

Shopee faced fragmented data‑ingestion pipelines, limited source support, and high maintenance overhead, so it evaluated open‑source tools and adopted Apache SeaTunnel to unify batch and streaming data transfers, simplify ETL workflows, and provide a scalable, extensible solution for its multi‑TB daily data processing needs.

ApacheBig DataSeaTunnel
0 likes · 17 min read
Rebuilding Shopee's Data Integration Platform with Apache SeaTunnel
DataFunSummit
DataFunSummit
Sep 12, 2022 · Big Data

DataFun Summit 2022: Data Integration Platform – SeaTunnel V2 Architecture Evolution and DataOps Practices

The DataFun Summit 2022, held on September 17, gathered leading experts from Baiji Whale Open Source, NetEase, Tapdata, and Alibaba Cloud to share deep technical insights on SeaTunnel V2 architecture, DataOps implementations, and open‑source big‑data studio tools, offering attendees practical guidance for modern data platforms.

ApacheBig DataConference
0 likes · 8 min read
DataFun Summit 2022: Data Integration Platform – SeaTunnel V2 Architecture Evolution and DataOps Practices
php中文网 Courses
php中文网 Courses
Jul 23, 2022 · Backend Development

Step-by-Step Guide to Building and Running a PHP Project with Docker

This tutorial explains how to create a Dockerfile for a PHP‑Apache project, build the image, run the container, verify its status, and use volume mounting and exec commands to manage the application inside the container.

ApacheBackend DevelopmentContainerization
0 likes · 3 min read
Step-by-Step Guide to Building and Running a PHP Project with Docker