Mysql for k8s for data persistence
Note the comments in the yaml configuration file, and the indentation of the format
I.1.Persistent Volume, or PV, is a network storage that has been configured by an administrator in the cluster, equivalent to a storage volume and a storage disk.Storage classes are automatically managed by administrators or by StorageClass.2.Persistent Volum ...
Added by x2fusion on Sat, 15 Feb 2020 22:03:02 +0200
k8s deployment zabbix monitoring system
Introduction to zabbix
Zabbix is a network monitoring and management system based on Server-Client architecture.It can be used to monitor the status of various network services, servers, network machines, and so on.Zabbix uses MySQL, PostgreSQL, SQLite, Oracle, or IBM DB2 to store data.Server is based on C language and Web front-end is based o ...
Added by kaje on Sat, 15 Feb 2020 20:35:42 +0200
Implementation of batch printing
1. Flow chart:
/*
** close at 12 loads
** As you can see from the browser console, the close method actually adds a display:none style
** Just hide the window, not really close it
** In addition, the advantage of loading the window in advance is that when printing, the loading animation will not appear, and the printing method ...
Added by ashly on Sat, 15 Feb 2020 18:28:04 +0200
Java implementation of restaurant ordering system
1. Background of ordering management system
With the development of science and technology, going to a restaurant for a meal and checking out are all done online.
a. Compared with the current systems, this system has table management, cuisine management, dish name management, order management, order d ...
Added by mazman13 on Fri, 14 Feb 2020 09:31:41 +0200
Interpretation of new features | MySQL 8.0.19 supports DNS SRV
Reproduced from the public address: fun MySQL
Author: Hong bin
MySQL Router is the access portal of InnoDB Cluster architecture. In the architecture deployment, the official advice is to bind the router to the application side to avoid the router single point problem.
Before that, there was a customer consultation about whether the router co ...
Added by mjgdunne on Wed, 12 Feb 2020 11:53:10 +0200
Database Middleware -- MyCat deployment and installation
Link to mycat:Mycat official websiteMycat download linkOfficial documents of Mycat,Baidu online disk official document download link, extraction code: f9nq. Mycat short document
Before you start, read the brief Mycat documentation to get a general idea of it.
Note: MyCAT supports a variety of database access, including mongodb, oracle, sqlser ...
Added by coolbeansdude51 on Mon, 10 Feb 2020 15:38:45 +0200
Add, delete and modify the database by Statement
1, Statement interface introduction
Function: object used to execute a static SQL statement and return the result it generates
int executeUpdate(String sql) executes the given SQL statement, which may be an INSERT, UPDATE, or DELETE statement, or an SQL statement that does not return anything, such as a SQLDDL statement.
vo ...
Added by Bryan Ando on Sun, 09 Feb 2020 18:54:00 +0200
3. SpringBoot+MybatisPlus integration code generator
1 <dependency>
2 <groupId>org.projectlombok</groupId>
3 <artifactId>lombok</artifactId>
4 <version>1.18.0</version>
5 <scope>provided</scope>
6 </dependency>
7 <!-- Add code generator dependencies -->
8 <dependency>
9 <groupId>org. ...
Added by vboyz on Sun, 09 Feb 2020 17:24:27 +0200
idea automatically generates annotated entities
idea generates annotated entity classes automatically
idea generates annotated entity classes automatically
Explain
idea configuration database
idea add groovy file
Generate annotated entities
summary
idea generates annotated entity classes automatically
Explain
The idea itself has an operat ...
Added by JimBadger on Fri, 07 Feb 2020 10:45:58 +0200
ORM of django model layer
Introduction
In the process of developing web applications with Django framework, it is inevitable that data management operations (such as add, delete, change, check) will be involved. When talking about data management operations, database management software, such as mysql, oracle, Microsoft SQL ...
Added by jake8 on Fri, 07 Feb 2020 07:27:47 +0200