Home Backend Development PHP Tutorial Monitor and track PHP applications through Docker Compose, Nginx and MariaDB

Monitor and track PHP applications through Docker Compose, Nginx and MariaDB

Oct 12, 2023 pm 02:25 PM
nginx monitor docker compose

通过Docker Compose、Nginx和MariaDB实现PHP应用程序的监控与追踪

Monitoring and tracking of PHP applications through Docker Compose, Nginx and MariaDB

With the development of cloud computing and container technology, more and more applications Start deploying in a Docker container. In this case, how to monitor and track applications becomes an important issue. This article will introduce how to monitor and track PHP applications through Docker Compose, Nginx and MariaDB, and give specific code examples.

1. Preparation

Before starting, you need to prepare the following environment:

  1. Docker: Make sure Docker has been installed and can run normally.
  2. Docker Compose: Make sure Docker Compose is installed and running properly.
  3. Nginx: used for proxying and load balancing requests.
  4. MariaDB: used to store application data.

2. Create a Docker Compose file

Create a file named docker-compose.yml in any directory. The content of the file is as follows:

version: '3'
services:
  web:
    build: .
    ports:
    - "80:80"
  db:
    image: mariadb
    environment:
    - MYSQL_ROOT_PASSWORD=root
    - MYSQL_DATABASE=test_db
    volumes:
    - ./data:/var/lib/mysql
Copy after login

In the above In the file, we created two services, one is the web service and the other is the db service. The web service will build an image of the application and map port 80 to the host. The db service uses the mariadb image, specifies the root password and database name, and stores the data in the ./data directory of the host.

3. Create Nginx configuration file

Create a file named nginx.conf in the same directory as docker-compose.yml. The content of the file is as follows:

worker_processes  1;

events {
    worker_connections  1024;
}

http {
    server {
        listen 80;
        server_name localhost;

        location / {
            proxy_pass http://web;
        }
    }
}
Copy after login

In In the above file, we configured Nginx to listen on port 80 and forward the request to the Docker service named web.

4. Create PHP application code

Create a file named index.php in the same directory as docker-compose.yml. The content of the file is as follows:

<?php
$dbhost = 'db';
$dbuser = 'root';
$dbpass = 'root';
$dbname = 'test_db';

$conn = new mysqli($dbhost, $dbuser, $dbpass, $dbname);

if($conn->connect_error) {
    die("连接失败:" . $conn->connect_error);
}

echo "连接成功";
$conn->close();
?>
Copy after login

In the above file, we connect to the MariaDB database through the mysqli extension and print out a successful connection message.

5. Build and run

Go to the same directory as docker-compose.yml in the terminal and execute the following command to build and run the container:

$ docker-compose build
$ docker-compose up -d
Copy after login
Copy after login

Browse Open http://localhost in the server and you should see a successful connection message.

6. Monitoring and Tracking

In order to implement monitoring and tracking of PHP applications, we can use some common tools, such as:

  1. Prometheus: used Collect and store monitoring metric data.
  2. Grafana: used to visualize monitoring indicator data.
  3. Zipkin: Used to track requests in applications.

The specific configuration steps are beyond the scope of this article, but we can refer to the following sample code for configuration.

Add the following services in docker-compose.yml:

  prometheus:
    image: prom/prometheus
    volumes:
    - ./prometheus.yml:/etc/prometheus/prometheus.yml
    ports:
    - "9090:9090"

  grafana:
    image: grafana/grafana
    volumes:
    - ./grafana-data:/var/lib/grafana
    ports:
    - "3000:3000"
Copy after login

Create a file named prometheus.yml in the same directory as docker-compose.yml with the following content:

global:
  scrape_interval: 15s

scrape_configs:
  - job_name: 'php-app'
    static_configs:
    - targets: ['web:80']
Copy after login

In the above file, we configured Prometheus to regularly collect indicator data on the web service.

Rebuild and run the container by executing the following commands to start Prometheus and Grafana:

$ docker-compose build
$ docker-compose up -d
Copy after login
Copy after login

Open http://localhost:3000 in the browser, use the default username and password ( admin/admin) to log in to Grafana, then configure the Prometheus data source and create a dashboard to visualize monitoring metric data.

As for the configuration of Zipkin, you can refer to the official documentation and related sample codes to complete it.

Summary

Through Docker Compose, Nginx and MariaDB, we can easily build a monitoring and tracking environment for PHP applications. By configuring Prometheus and Grafana, you can collect and visualize application monitoring indicator data. By configuring Zipkin, you can track requests in your application. The above is a simple example, you can customize and adjust it according to actual needs and environment. Hope this article helps you!

The above is the detailed content of Monitor and track PHP applications through Docker Compose, Nginx and MariaDB. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
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

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

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to check whether nginx is started How to check whether nginx is started Apr 14, 2025 pm 01:03 PM

How to confirm whether Nginx is started: 1. Use the command line: systemctl status nginx (Linux/Unix), netstat -ano | findstr 80 (Windows); 2. Check whether port 80 is open; 3. Check the Nginx startup message in the system log; 4. Use third-party tools, such as Nagios, Zabbix, and Icinga.

How to configure cloud server domain name in nginx How to configure cloud server domain name in nginx Apr 14, 2025 pm 12:18 PM

How to configure an Nginx domain name on a cloud server: Create an A record pointing to the public IP address of the cloud server. Add virtual host blocks in the Nginx configuration file, specifying the listening port, domain name, and website root directory. Restart Nginx to apply the changes. Access the domain name test configuration. Other notes: Install the SSL certificate to enable HTTPS, ensure that the firewall allows port 80 traffic, and wait for DNS resolution to take effect.

How to start nginx server How to start nginx server Apr 14, 2025 pm 12:27 PM

Starting an Nginx server requires different steps according to different operating systems: Linux/Unix system: Install the Nginx package (for example, using apt-get or yum). Use systemctl to start an Nginx service (for example, sudo systemctl start nginx). Windows system: Download and install Windows binary files. Start Nginx using the nginx.exe executable (for example, nginx.exe -c conf\nginx.conf). No matter which operating system you use, you can access the server IP

How to start nginx in Linux How to start nginx in Linux Apr 14, 2025 pm 12:51 PM

Steps to start Nginx in Linux: Check whether Nginx is installed. Use systemctl start nginx to start the Nginx service. Use systemctl enable nginx to enable automatic startup of Nginx at system startup. Use systemctl status nginx to verify that the startup is successful. Visit http://localhost in a web browser to view the default welcome page.

How to check whether nginx is started? How to check whether nginx is started? Apr 14, 2025 pm 12:48 PM

In Linux, use the following command to check whether Nginx is started: systemctl status nginx judges based on the command output: If "Active: active (running)" is displayed, Nginx is started. If "Active: inactive (dead)" is displayed, Nginx is stopped.

How to configure nginx in Windows How to configure nginx in Windows Apr 14, 2025 pm 12:57 PM

How to configure Nginx in Windows? Install Nginx and create a virtual host configuration. Modify the main configuration file and include the virtual host configuration. Start or reload Nginx. Test the configuration and view the website. Selectively enable SSL and configure SSL certificates. Selectively set the firewall to allow port 80 and 443 traffic.

How to solve nginx403 How to solve nginx403 Apr 14, 2025 am 10:33 AM

How to fix Nginx 403 Forbidden error? Check file or directory permissions; 2. Check .htaccess file; 3. Check Nginx configuration file; 4. Restart Nginx. Other possible causes include firewall rules, SELinux settings, or application issues.

How to check nginx version How to check nginx version Apr 14, 2025 am 11:57 AM

The methods that can query the Nginx version are: use the nginx -v command; view the version directive in the nginx.conf file; open the Nginx error page and view the page title.

See all articles