search
HomeOperation and MaintenanceLinux Operation and MaintenanceLog management and monitoring skills for building a web server on CentOS

Log management and monitoring skills for building web servers on CentOS

Web servers are an important part of modern Internet applications, and server log management and monitoring are the key to ensuring stable server operation and troubleshooting. This article will introduce how to build a web server on the CentOS operating system, and provide some log management and monitoring techniques.

1. Build a Web server

  1. Install Apache

Apache is a popular open source Web server software. Installing Apache on CentOS is very simple, just enter the following command in the terminal:

sudo yum install httpd
  1. Configuring Apache

After installing Apache, you need to do some basic things on it configuration. The configuration file is located at /etc/httpd/conf/httpd.conf. You can open the file using an editor such as vi or nano.

For example, you can change the root directory of the default website:

DocumentRoot "/var/www/html"
  1. Start Apache

After completing the configuration, you can start Apache. Enter the following command:

sudo systemctl start httpd

2. Log management

  1. Log file location

Apache generates various types of files in the /var/log/httpd/ directory Log files. The following are some common log files:

  • access_log: records information about all HTTP requests;
  • error_log: records information about server errors;
  • ssl_access_log: records Information on all HTTPS requests;
  • ssl_error_log: records error information on HTTPS requests.
  1. Log file cutting

Since the log files generated by Apache can easily grow to very large sizes, you may need to periodically cut the log files for easier management. Linux provides a tool called logrotate that can easily cut and compress log files.

First, install logrotate:

sudo yum install logrotate

Then, create a log cutting configuration file named httpd:

sudo nano /etc/logrotate.d/httpd

In this file, you can specify the log file cutting rule. Here is an example configuration:

/var/log/httpd/access_log {
    rotate 7
    daily
    missingok
    compress
    delaycompress
    notifempty
    create 640 root root
    sharedscripts
    postrotate
        /sbin/service httpd reload > /dev/null 2>/dev/null || true
    endscript
}

In this configuration, the log files will be rotated daily and backups of the last 7 days will be retained. The cut files will be compressed and archived.

  1. Analysis log

The log file contains rich information and is very helpful for server analysis and monitoring. You can use some tools to analyze logs, such as Awstats, Webalizer, and ELK Stack.

Awstats and Webalizer are two tools for generating detailed website statistics reports. You can install them using the yum command:

sudo yum install awstats webalizer

After the installation is complete, you need to configure them to analyze Apache's log files. Please refer to the respective official documentation for specific configuration methods.

ELK Stack is a powerful log management and analysis platform, which consists of three open source tools: Elasticsearch, Logstash and Kibana. You can use ELK Stack to centrally store, analyze, and visualize Apache log data.

3. Monitoring skills

  1. Use monitoring tools

In order to discover and solve server faults and problems in a timely manner, you can use some monitoring tools, such as Nagios, Zabbix and Prometheus, etc.

Nagios is a widely used infrastructure monitoring tool that can monitor various services and applications and provide alerting and reporting functions. You can install Nagios on CentOS and configure it to monitor the running status of Apache.

Zabbix is ​​a powerful network monitoring tool that supports real-time monitoring of server performance and resources. You can use Zabbix to monitor key metrics of Apache, such as CPU usage, memory usage, and network traffic.

Prometheus is a recently popular monitoring system that provides rich built-in indicators and flexible query language. You can use Prometheus to monitor Apache performance metrics and visualize them using tools such as Grafana.

  1. Custom monitoring script

In addition to using existing monitoring tools, you can also write your own monitoring scripts to monitor Apache.

For example, you can write a simple Bash script to regularly check the running status of Apache and send alert emails to the administrator:

#!/bin/bash

# 检查Apache是否运行
if ! pgrep -x "httpd" > /dev/null
then
    # 发送警报邮件
    echo "Apache is not running" | mail -s "Apache Alert" admin@example.com
fi

Save the above script as check_apache.sh and use The cron scheduled task executes it:

*/5 * * * * /path/to/check_apache.sh

This script will run every 5 minutes and check whether Apache is running. If Apache is not running, the script will send an alert email to the administrator.

Summary:

This article introduces the steps to build a web server on the CentOS operating system, and provides some log management and monitoring techniques. By properly configuring log files and using monitoring tools, you can better manage and maintain your web server, ensure its stable operation and find and solve problems in a timely manner. By customizing monitoring scripts, you can flexibly monitor the running status of Apache. Hope these tips are helpful to you.

The above is the detailed content of Log management and monitoring skills for building a web server on CentOS. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Linux Operations: Managing Files, Directories, and PermissionsLinux Operations: Managing Files, Directories, and PermissionsApr 23, 2025 am 12:19 AM

In Linux, file and directory management uses ls, cd, mkdir, rm, cp, mv commands, and permission management uses chmod, chown, and chgrp commands. 1. File and directory management commands such as ls-l list detailed information, mkdir-p recursively create directories. 2. Permission management commands such as chmod755file set file permissions, chownuserfile changes file owner, and chgrpgroupfile changes file group. These commands are based on file system structure and user and group systems, and operate and control through system calls and metadata.

What is Maintenance Mode in Linux? ExplainedWhat is Maintenance Mode in Linux? ExplainedApr 22, 2025 am 12:06 AM

MaintenanceModeinLinuxisaspecialbootenvironmentforcriticalsystemmaintenancetasks.Itallowsadministratorstoperformtaskslikeresettingpasswords,repairingfilesystems,andrecoveringfrombootfailuresinaminimalenvironment.ToenterMaintenanceMode,interrupttheboo

Linux: A Deep Dive into Its Fundamental PartsLinux: A Deep Dive into Its Fundamental PartsApr 21, 2025 am 12:03 AM

The core components of Linux include kernel, file system, shell, user and kernel space, device drivers, and performance optimization and best practices. 1) The kernel is the core of the system, managing hardware, memory and processes. 2) The file system organizes data and supports multiple types such as ext4, Btrfs and XFS. 3) Shell is the command center for users to interact with the system and supports scripting. 4) Separate user space from kernel space to ensure system stability. 5) The device driver connects the hardware to the operating system. 6) Performance optimization includes tuning system configuration and following best practices.

Linux Architecture: Unveiling the 5 Basic ComponentsLinux Architecture: Unveiling the 5 Basic ComponentsApr 20, 2025 am 12:04 AM

The five basic components of the Linux system are: 1. Kernel, 2. System library, 3. System utilities, 4. Graphical user interface, 5. Applications. The kernel manages hardware resources, the system library provides precompiled functions, system utilities are used for system management, the GUI provides visual interaction, and applications use these components to implement functions.

Linux Operations: Utilizing the Maintenance ModeLinux Operations: Utilizing the Maintenance ModeApr 19, 2025 am 12:08 AM

Linux maintenance mode can be entered through the GRUB menu. The specific steps are: 1) Select the kernel in the GRUB menu and press 'e' to edit, 2) Add 'single' or '1' at the end of the 'linux' line, 3) Press Ctrl X to start. Maintenance mode provides a secure environment for tasks such as system repair, password reset and system upgrade.

Linux: How to Enter Recovery Mode (and Maintenance)Linux: How to Enter Recovery Mode (and Maintenance)Apr 18, 2025 am 12:05 AM

The steps to enter Linux recovery mode are: 1. Restart the system and press the specific key to enter the GRUB menu; 2. Select the option with (recoverymode); 3. Select the operation in the recovery mode menu, such as fsck or root. Recovery mode allows you to start the system in single-user mode, perform file system checks and repairs, edit configuration files, and other operations to help solve system problems.

Linux's Essential Components: Explained for BeginnersLinux's Essential Components: Explained for BeginnersApr 17, 2025 am 12:08 AM

The core components of Linux include the kernel, file system, shell and common tools. 1. The kernel manages hardware resources and provides basic services. 2. The file system organizes and stores data. 3. Shell is the interface for users to interact with the system. 4. Common tools help complete daily tasks.

Linux: A Look at Its Fundamental StructureLinux: A Look at Its Fundamental StructureApr 16, 2025 am 12:01 AM

The basic structure of Linux includes the kernel, file system, and shell. 1) Kernel management hardware resources and use uname-r to view the version. 2) The EXT4 file system supports large files and logs and is created using mkfs.ext4. 3) Shell provides command line interaction such as Bash, and lists files using ls-l.

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.