LAMP+Apache+mysql+php+DISCUZ

catalogue 1, LAMP introduction and overview 1. LAMP platform overview 2. Build LAMP platform sequence 3. Advantages of compilation and installation 4. Main functions of each component 2, Install Apache (version after httpd 2.4) 1. Close the firewall, subsystem and timing 2. Install and unzip the package last time, and move the accessori ...

Posted by the_ut_tick on Wed, 29 Sep 2021 17:29:51 -0700

The custom class loader loads the database driver

preface Class loading mechanism is an important content in the Java field, including hot deployment, framework, reflection and dynamic proxy, which are more or less related to class loading This article records how to solve the problem of loading database driver through learning class loading mechanism. 1, Problem generation In Aug ...

Posted by jdsflash on Wed, 29 Sep 2021 15:21:43 -0700

Detailed explanation of Mbatis batch execution error report

mybatis batch insert or update is a good solution to save resources and connections in many business scenarios. However, sometimes when the database configuration, especially the connection timeout and waiting time, is unreasonable, the following errors may be reported when performing batch operations. 1. Examples of error reporting: com.mysq ...

Posted by MrSarun on Tue, 28 Sep 2021 21:14:06 -0700

MySQL 8.0 password management policy

Author: Sri Sakthivel Original link: https://www.percona.com/blog/enhanced-password-management-systems-in-mysql-8-part-1 MySQL 8.0 has many improvements in password management. This article will introduce the following two features. Password reuse strategyGenerate random password |1 password reuse strategy This policy is simply to restr ...

Posted by mad81 on Tue, 28 Sep 2021 19:55:08 -0700

Linux CentOS7.9/8.4 server installation Docker, Nginx, MySQL

Chapter 1 installing Docker Introduction: 1. What is Dokcer? An open source application container engine allows developers to package their applications and dependency packages into a portable container, and then publish them to any popular Linux machine. Virtualization can also be realized. The container is completely encapsulated on the ...

Posted by r270ba on Tue, 28 Sep 2021 03:06:57 -0700

Soci operation database (soci: database operation Library)

1. Reasons for choosing soci slightly 2. Characteristics of soci ① Enter sql statements in stream mode ② Pass and parse parameters through into and use syntax ③ Support connection pool and thread safety remarks: It can be seen that it is only a lightweight package, so it also has greater flexibility. The back end supports oracl ...

Posted by neuromancer on Mon, 27 Sep 2021 21:08:10 -0700

Record an exercise

Practice content 1. Install centos VI / etc / sysconfig / network scripts / ifcfg-ens33 modify the network configuration file BOOTPROTO=static IPADDR=192.168.100.128~200 Virtual machine IP Address. The last bit is between 128 and 200 NETMASK=255.255.255.0 Subnet mask GATEWAY=192.168.100.2 Default gateway ...

Posted by themaxx113 on Mon, 27 Sep 2021 15:41:33 -0700

Python database programming, this article is for mysql, snowball learning Python season 4, Article 13

In the first season of snowball learning python, we have contacted the operation sqlite of Python. This blog introduces the story between python, mysql and nosql. Before formal study, make sure that mysql is installed on your computer. mysql installation blog: Supplementary knowledge: the latest windows installation tutorial of mysql in 2021, ...

Posted by makeITfunctional on Sun, 26 Sep 2021 22:11:08 -0700

Mybatis environment construction and example

Current computer tool environment: IDEA, JDK1.8, Mysql5.0, Maven 3.6.1 Steps: 1. Create JAVA WEB project 2. Configure tomcat 3. Load the dependent jar package of mybatis, the dependent jar package of mysql, and the jar packages of junit and hamcrest core (as well as the jar package of log) required for configuration 4. Create a Resources f ...

Posted by EricTRocks on Fri, 24 Sep 2021 07:37:02 -0700

Database and SQL language foundation (including detailed installation steps of MySQL compressed package environment)

1. Introduction to database Baidu's definition of database is: "database is" a warehouse for organizing, storing and managing data according to data structure ". It is a collection of large amounts of data stored in computers for a long time, organized, shareable and uniformly managed." In short, a database is a collec ...

Posted by rthconsultants on Tue, 21 Sep 2021 14:56:15 -0700