Implementation of LNMP for separate deployment of Docker containers

Implementation of LNMP for separate deployment of Docker containers

1. Environmental Preparation

The IP address of each container:

  • Nginx: 172.16.10.10
  • Mysql: 172.16.10.20
  • PHP: 172.16.10.30

Things to note when building LNMP:

  • The data of each container is persisted;
  • Assign a fixed IP address to the container to prevent the IP address from changing after the container is rebuilt, which would cause unnecessary trouble.
  • Since the client only needs to access port 80 of Nginx and then call PHP to connect to the database through Nginx, you only need to map port 80 of Nginx to the host machine using the "-p" option. Other containers do not need to be mapped, which is relatively safer.

2. Case Implementation

(1) Create a custom network

[root@docker ~]# docker network create -d bridge --subnet 172.16.10.0/24 --gateway 172.16.10.1 lnmp
//Create a custom network and specify the network segment and gateway. Only when the network segment is defined can this network be used to assign a fixed IP to the container.

(2) Run the nginx container

[root@docker ~]# docker run -itd --name test nginx    
//Run a container at random to generate the configuration files required in nginx[root@docker ~]# mkdir /wwwroot //Home directory for website access[root@docker ~]# mkdir /docker //Configuration file for Nginx//Create a directory for mounting the relevant directories of the nginx container[root@docker ~]# docker cp test:/etc/nginx /docker/
//Copy the nginx home directory in the nginx container to the locally created directory [root@docker ~]# ls /docker/
nginx
[root@docker ~]# docker cp test:/usr/share/nginx/html /wwwroot/
//Copy the web root directory in the nginx container to the locally created directory [root@docker ~]# ls /wwwroot/
html
[root@docker ~]# docker run -itd --name nginx -v /docker/nginx:/etc/nginx -v /wwwroot/html:/usr/share/nginx/html -p 80:80 --network lnmp --ip 172.16.10.10 nginx
//Run the Nginx container based on the nginx network just created and specify its IP address;
// Use the "-v" option to mount the directory to the nginx configuration file and web root directory respectively to achieve data persistence;
// In the process of achieving data persistence, the problem that some basic commands cannot be used in the nginx container is also solved.
// If you need to change the nginx configuration file or network root directory, just perform the corresponding operation in the local /data directory.
//Run the Nginx container and test [root@docker ~]# echo "hello world" > /wwwroot/html/index.html 
[root@docker ~]# curl 127.0.0.1
hello world 


(3) Run the MySQL container

[root@docker ~]# docker run --name mysql -e MYSQL_ROOT_PASSWORD=123.com -d -p 3306:3306 --network lnmp --ip 172.16.10.20 mysql:5.7
//Run the MySQL image based on the lnmp network and specify its IP address;
//MYSQL_ROOT_PASSWORD=123.com" is the root password for the specified MySQL database. //If you need to use a third-party graphical tool to connect to the database, just add the "-p" option to map port 3306 of the container to the host machine.

(4) Run the PHP container

[root@docker ~]# docker run -itd --name phpfpm -p 9000:9000 -v /wwwroot/html:/usr/share/nginx/html --network lnmp --ip 172.16.10.30 php:7.2-fpm
//Run a container named phpfpm, map the port, mount the corresponding directory, and specify the IP address //The mounted directory is the same as the nginx main directory because the configuration file of the nginx container needs to be modified [root@docker ~]# cd /wwwroot/html/
[root@docker html]# vim test.php
<?php
phpinfo();
?>

(5) Modify the nginx configuration file to connect nginx and php

[root@docker ~]# vim /docker/nginx/conf.d/default.conf
  location / {
    root /usr/share/nginx/html;
    index index.html index.htm index.php; //Add this section: index.php
  }

  location ~ \.php$ {
    root /usr/share/nginx/html; //Modify the root directory location of the webpage fastcgi_pass 172.16.10.30:9000; //Change to the IP address of the PHP container fastcgi_index index.php;
    fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; //Add $document_root variable include fastcgi_params;
  }
[root@docker ~]# docker restart nginx //Restart nginx service nginx

At this point, go to the browser to verify the interface of nginx service and php service...


(6) Test the coordination between PHP container and MySQL

This shows that there is no problem with the connection between nginx and php. The next step is the connection between php and mysql.

Here we use a phpMyAdmin database management tool.

[root@docker ~]# wget https://files.phpmyadmin.net/phpMyAdmin/4.9.1/phpMyAdmin-4.9.1-all-languages.zip
//Download phpmyadmin source code package[root@docker ~]# unzip phpMyAdmin-4.9.1-all-languages.zip //Unzip the source code package[root@docker ~]# mv phpMyAdmin-4.9.1-all-languages ​​/wwwroot/html/phpmyadmin //Change the name of the unzipped directory[root@docker ~]# vim /docker/nginx/conf.d/default.conf //Edit the Nginx main configuration filelocation /phpmyadmin {
    root /usr/share/nginx/html;
    index index.html index.htm index.php ;
  }

location ~ /phpmyadmin/(?<after_ali>(.*)\.(php|php5)?$) {
    root /usr/share/nginx/html;
    fastcgi_pass 172.16.10.30:9000;
    fastcgi_index index.php;
    fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
    include fastcgi_params;
  } 


[root@docker ~]# docker restart nginx //Restart the nginx container [root@docker ~]# docker ps | grep nginx Ensure that the nginx container is running normally f8442dc794b9 nginx "/docker-entrypoint.…" About an hour ago Up 24 seconds 0.0.0.0:80->80/tcp nginx

Access the browser test:

OK, if you see an error, it means that everything has been done correctly. Normally, this error will be prompted because when compiling and installing PHP normally, you need to add some related options such as "--with-mysql...". Seeing this page, it is obvious that the PHP container we are running does not add any options about the database. Next, we will solve these problems.

(7) Solve the problem that the PHP container does not support the association with the MySQL database

Log in to the docker official website, search for "PHP" and click to enter, as follows:



I have seen the answer on the Docker official website. Next, I will write a Dockerfile based on the original PHP image to generate a new image to support this function!

[root@docker html]# vim Dockerfile #Write the Dockerfile file. The beginning of the file is the code provided by the official website FROM php:7.2-fpm
RUN apt-get update && apt-get install -y \
    libfreetype6-dev \
    libjpeg62-turbo-dev \
    libpng-dev \
  && docker-php-ext-install -j$(nproc) iconv \
  && docker-php-ext-configure gd --with-freetype-dir=/usr/include/ --with-jpeg-dir=/usr/include/ \
  && docker-php-ext-install -j$(nproc) gd \ //Add slash&& docker-php-ext-install mysqli pdo pdo_mysql //Add this line to support the mysql connection function//After writing, save and exit [root@docker html]# docker build -t phpmyadmin . //Generate a new image. Do not leave out the "." at the end of the command.
[root@docker html]# docker rm -f phpfpm //The original PHP container can be deleted [root@docker html]# docker run -itd --name phpfpm -p 9000:9000 -v /wwwroot/html:/usr/share/nginx/html --network lnmp --ip 172.16.10.30 phpmysql
//Run a new PHP container based on the newly created PHP image [root@docker ~]# cd /wwwroot/html/phpmyadmin/
[root@docker phpmyadmin]# mv config.sample.inc.php config.inc.php 
[root@docker phpmyadmin]# vim config.inc.php //Write php configuration file $cfg['Servers'][$i]['host'] = '172.16.10.20'; Change it to the IP address of the mysql container 

[root@docker phpmyadmin]# docker restart phpfpm //Restart php
phpfpm
[root@docker phpmyadmin]# docker ps | grep phpfpm // Make sure the PHP container is running normally c9feb2df0603 phpmysql "docker-php-entrypoi…" 11 minutes ago Up About a minute 0.0.0.0:9000->9000/tcp phpfpm 


This is the end of this article about the implementation of Docker container separation deployment LNMP. For more relevant Docker separation deployment LNMP content, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • How to deploy LNMP & phpMyAdmin in docker
  • How to build lnmp environment in docker
  • Use Docker to create an integrated service lnmp environment
  • Detailed explanation of using Docker to build LNMP environment
  • Ubuntu builds a LNMP+Redis development environment based on Docker (picture and text)

<<:  How to solve the problem of not finding the password after decompressing the MySQL free installation version

>>:  Vue3 navigation bar component encapsulation implementation method

Recommend

How to explain TypeScript generics in a simple way

Table of contents Overview What are Generics Buil...

JavaScript adds prototype method implementation for built-in objects

The order in which objects call methods: If the m...

SQL implementation of LeetCode (182. Duplicate mailboxes)

[LeetCode] 182.Duplicate Emails Write a SQL query...

Nginx configures the same domain name to support both http and https access

Nginx is configured with the same domain name, wh...

Interpretation of syslogd and syslog.conf files under Linux

1: Introduction to syslog.conf For different type...

Semantics: Is Html/Xhtml really standards-compliant?

<br />Original text: http://jorux.com/archiv...

How to understand Vue front-end and back-end data interaction and display

Table of contents 1. Technical Overview 2. Techni...

Solve the splicing problem of deleting conditions in myBatis

I just learned mybatis today and did some simple ...

MySQL calculates the number of days, months, and years between two dates

The MySQL built-in date function TIMESTAMPDIFF ca...

How to connect Django 2.2 to MySQL database

1. The error information reported when running th...

How to replace all tags in html text

(?i) means do not match case. Replace all uppercas...

Problems and solutions when installing MySQL8.0.13 on Win10 system

Operating system: Window10 MySQL version: 8.0.13-...

Introduction to using the MySQL mysqladmin client

Table of contents 1. Check the status of the serv...

How to enable the slow query log function in MySQL

The MySQL slow query log is very useful for track...