Run jeecg boot in the form of docker, with 5 dockers (one mysql, one redis, one backend, one frontend and one uniapp)

1. redis: ``` docker pull redis docker run --name jeecg-boot-redis -p 6379:6379 -d redis ``` Create a redis container named jeecg boot redis with port number 6379 2. mysql: docker pull mysql:5.7.28 docker run -p 3306:3306 --name jeecg-boot-mysql -e MYSQL_ROOT_PASSWORD=root -d mysql:5.7.28 --lower_case_table_names=1 Create a redis con ...

Posted by TNIDBMNG on Sat, 04 Sep 2021 20:45:37 -0700

[k8s] Chapter VI detailed explanation of Pod controller

This chapter mainly introduces the detailed use of various Pod controllers. Introduction to Pod controller Pod is the smallest management unit of kubernetes. In kubernetes, it can be divided into two categories according to the creation method of Pod: Autonomous Pod: a pod directly created by kubernetes. This kind of pod will not exist and ...

Posted by stelthius on Fri, 03 Sep 2021 11:50:18 -0700

docker creates lnmp image

Docker is a lightweight virtualization technology, and lnmp is a powerful, open-source web running environment, so here's a demonstration of using Docker to build an lnmp image. PS: To maintain lightweight and scalable performance, Docker encourages us to "one process per person"Container"means don't integrate too many functions ...

Posted by webweever on Fri, 17 Jul 2020 07:56:18 -0700

docker creates lnmp image

Docker is a lightweight virtualization technology, and lnmp is a powerful, open-source web running environment, so here's a demonstration of using Docker to build an lnmp image. PS: To maintain lightweight and scalable performance, Docker encourages us to "one process per person"Container"means don't integrate too many functions ...

Posted by darkninja_com on Fri, 17 Jul 2020 07:58:04 -0700

Summary of Common Commands for docker

I won't mention the advantages of a specific docker, but here are some common docker commands: 1. Start, stop, restart of docker [root@localhost ~]# service docker restart Redirecting to /bin/systemctl restart docker.service [root@localhost ~]# service docker stop Redirecting to /bin/systemctl stop docker.service [root@localhost ~]# service ...

Posted by nicob on Sun, 05 Jul 2020 08:30:50 -0700

centos7 uses docker to build the running environment and deploy jar

*First, there is a clean CentOS 7 environment 1. To install docker, you need to use Yum to pull it, so get the yum source first. yum install -y yum-utils device-mapper-persistent-data lvm2 Add docker warehouse location for yum source yum-config-manager --add-repo https://download.docker.com/linux/cento ...

Posted by czambran on Tue, 30 Jun 2020 00:28:51 -0700

Building K8S cluster of EMQ X MQTT server from scratch

EMQ X Team provides Helm chart for users to deploy EMQ X on kubernetes cluster with one click MQTT server This is the most recommended method of deploying EMQ X MQTT server on kubernetes or k3s cluster by EMQ X Team. This paper will use the method of handwritten yaml file to deploy a K8S cluster of EMQ X MQTT server from scratch, and analyze t ...

Posted by chacha102 on Mon, 29 Jun 2020 22:46:35 -0700

This simple setup allows your Docker image to take off

This article has been included GitHub There are also Internet factory interview questions, interview strategies, efficient learning materials and so on 1. Preface Docker is cool to use, especially when used in DevOps practice.However, when you pull a mirror at home or locally, you often encounter constipation - either slowly or intermittentl ...

Posted by oneday on Mon, 29 Jun 2020 16:19:02 -0700

Production environment database backup scheme

1, Introduction After the product goes online, our data is very important. It's not allowed to be lost. We should be well prepared. If one day is hacked or deleted maliciously, it will crash. So we need to do full backup and incremental backup for our online database regularly. For example, make incre ...

Posted by lauxanh on Sat, 27 Jun 2020 01:35:14 -0700

Practical AbbitMQ tips that took 3 days to summarize

Previously read articles about RabbitMQ core messaging patterns are based on Java API s, and recently read the official documentation and found that these core messaging patterns can be implemented through Spring AMQP.This paper summarizes the practical techniques of RabbitMQ, including its installation on Windows and Linux, and the Spring A ...

Posted by shamuntoha on Thu, 25 Jun 2020 09:15:41 -0700