Environmental preparation: Deploy lnmp on a host based on multiple containers: Solve the problem of fixed container IP address: Note: When the container is stopped or deleted, and the same container is run again, its IP address is no longer the original address, so we need to customize a network segment to specify the container's IP address. Project Operation: (1) First, customize a network: [root@sqm-docker01 ~]# docker network create -d bridge --subnet 172.16.10.0/24 --gateway 172.16.10.1 mynet1 (2) Download nginx, php:fpm, mysql-5.7 image: [root@sqm-docker01 ~]# docker pull nginx [root@sqm-docker01 ~]# docker pull php:7.2-fpm <!--Using the image of php:7.2-fpm--> [root@sqm-docker01 ~]# docker pull mysql:5.7 <!--Using the image of mysql:5.7--> (3)####Run a container based on the nginx image##### #First run the nginx service to copy the nginx configuration file: Parameter explanation:
Create a directory on the host where you want to mount the files: Website main directory: /wwwroot; nginx configuration file: /docker; [root@sqm-docker01 ~]# mkdir /wwwroot [root@sqm-docker01 ~]# mkdir /docker ##Use the docker cp command to copy the directory where nginx configuration files are stored to the local machine. Note: The docker cp command can copy files from the host to the container, or it can copy files or directories in the container to the local machine. [root@sqm-docker01 ~]# docker cp test1:/etc/nginx /docker/ #Use docker cp to copy the directory where nginx configuration files are stored to the host . [root@sqm-docker01 ~]# ls /docker/nginx/conf.d/ default.conf Copy the nginx web directory: [root@sqm-docker01 ~]# docker cp test1:/usr/share/nginx/html /wwwroot/ [root@sqm-docker01 ~]# ls /wwwroot/html/ 50x.html index.html Modify the default test web page of nginx: [root@sqm-docker01 html]# echo "<h1>hello welcome to nginx web</h1>" > index.html (4) Run the nginx container: Mount the directories in the container to the local directory and specify the IP address [root@sqm-docker01 ~]# docker run -itd --name nginx --network my_net1 --ip 172.16.10.10 -p 80:80 -v /docker/nginx:/etc/nginx -v /wwwroot/html:/usr/share/nginx/html nginx:latest Parameter explanation:
(5) Run the mysql container: [root@sqm-docker01 ~]# docker run --name mysql -e MYSQL_ROOT_PASSWORD=123.com -d -p 3306:3306 --network my_net1 --ip 172.16.10.20 mysql:5.7 -e is to set the environment variable in the container. We set the mysql password environment variable, which will be passed into the container to set the mysql password Test whether the root user can log in to mysql on this machine: First you need to download the mysql client: [root@sqm-docker01 ~]# yum -y install mysql (6) Run the PHP container: [root@sqm-docker01 ~]# docker run -itd -p 9000:9000 --name phpfpm -v /wwwroot/html:/usr/share/nginx/html --network my_net1 --ip 172.16.10.30 php:7.2-fpm Notice: (7) Configure nginx and php-fpm: We need to configure PHP to parse nginx: Create a simple test web page: Next you need to modify the nginx configuration file: [root@sqm-docker01 html]# vim /docker/nginx/conf.d/default.conf (8) Configure mysql: Setting up phpMyadmin: phpMyAdmin is a PHP-based, Web-Base-based MySQL database management tool on a website host, allowing administrators to manage MySQL databases using a Web interface. This web interface can be a better way to input complex SQL syntax in an easy way, especially for importing and exporting large amounts of data. One of the biggest advantages is that since phpMyAdmin runs on a web server like other PHP programs, you can use the HTML pages generated by these programs anywhere, that is, to remotely manage MySQL databases and easily create, modify, and delete databases and tables. [root@sqm-docker01 html]# pwd /wwwroot/html Unzip to the current directory: [root@sqm-docker01 html]# unzip phpMyAdmin-4.9.1-all-languages.zip Rename: [root@sqm-docker01 html]# mv phpMyAdmin-4.9.1-all-languages phpmyadmin Modify the nginx configuration file--configure the connection with phpMyAdmin: [root@sqm-docker01 html]# vim /docker/nginx/conf.d/default.conf Copy the original location configuration item and add the following two location configuration sections. After modifying the nginx configuration file, restart nginx: Visit the test web page: The port in the container has been mapped to the host, so directly access the host address: 172.16.1.30 Access PHP to parse the nginx web page: Next, test logging into phpMyAdmin: Visit url : http://172.16.1.30/phpmyadmin/index.php The mysqli module is missing, so it cannot be accessed, so you need to add php to support the mysql configuration module: How to add extension modules to the container, we can log in to dockerhub to query the relevant documents: Link path: https://hub.docker.com/ Copy the above Dockerfile script and install it locally: Note that some additional content needs to be added: [root@sqm-docker01 ~]# vim Dockerfile 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 \ && docker-php-ext-install mysqli pdo pdo_mysql Build Dockerfile: [root@sqm-docker01 ~]# docker build -t phpfpm-mysqli . Parameter explanation:
After the build is complete, delete the original PHP image and run the image that just successfully built and supports the mysqli module: [root@sqm-docker01 ~]# docker stop phpfpm phpfpm [root@sqm-docker01 ~]# docker rm phpfpm phpfpm [root@sqm-docker01 ~]# docker run --name phpfpm -d -p 9000:9000 -v /wwwroot/html:/usr/share/nginx/html --network my_net1 --ip 172.16.10.30 phpfpm-mysqli:latest #Mirror specifies the image name generated by the Dockerfile just built. Modify the default sample (sample file) of phpMyAdmin: If you want to use it in the configuration file, you must rename it and remove the sample. [root@sqm-docker01 phpmyadmin]# pwd /wwwroot/html/phpmyadmin [root@sqm-docker01 phpmyadmin]# cp config.sample.inc.php config.inc.php Modify the configuration file: [root@sqm-docker01 phpmyadmin]# vim config.inc.php After modifying the configuration file, restart PHP: [root@sqm-docker01 phpmyadmin]# docker restart phpfpm phpfpm Access the phpMyAdmin web page: Enter the URL: http://172.16.1.30/phpmyadmin/index.php
Successfully accessed the mysql database. . . . . . At this point, the deployment of lnmp between multiple containers in docker is complete. The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM. You may also be interested in:
|
<<: MySQL 8.0.15 installation and configuration graphic tutorial under Win10
>>: A brief discussion on the use of Web Storage API
Here is an introduction to changing the password ...
1. Flash plug-in package download address: https:...
Table of contents 1. Example scenario 1.1. Set th...
This article shares the specific code of js to ac...
1. Absolute path First of all, on the local compu...
This article example shares the specific code of ...
This article describes the steps to install the p...
Table of contents Preface preparation Go! text St...
In MySQL, databases correspond to directories wit...
1. Introduction table_cache is a very important M...
When we display long text, we often need to interc...
Table of contents Introduction to utf8mb4 UTF8 by...
Table of contents first step: The second step is ...
Table of contents 1. Problem Discovery 2. View de...
This article uses examples to illustrate the prin...