View new files in linux

Query and edit the content within the current [1:00, 2:00] interval find /etc -mmin 2 / / Note: it refers to the minutes from [n-1, n] Query and edit the content within the current [0:00, 2:00] interval find /etc -mmin -2 Query and edit the content within the interval of [2:00, positive infinity] from now on find /etc -mmin +2 Query and e ...

Posted by johnpdmccall on Fri, 17 Dec 2021 10:14:07 +0100

nginx of lnmp architecture

What is lnmp architecture LNMP refers to a group of free software acronyms commonly used together to run dynamic websites or servers L refers to Linux, N refers to Nginx, M generally refers to MySQL, MariaDB, P generally refers to PHP, Perl or Python LNMP represents the website server architecture of Nginx+MySQL+PHP under Linux system L ...

Posted by dino345 on Fri, 17 Dec 2021 00:18:18 +0100

Private warehouse harbor deployment

Private warehouse Harbor deployment Docker Registry Many Registry servers on the Internet support third-party user registration, and then make their own warehouse based on user names. However, there is a defect in using Registry on the Internet, that is, we will not push and download images quickly, and there will be dozens or hundreds of ...

Posted by sankaty on Thu, 16 Dec 2021 17:13:16 +0100

rsync remote synchronization

1. rsync overview 1.rsync is an open source, fast, multi-functional and excellent tool that can realize full and incremental synchronous backup of local or remote data. It can realize the backup and migration characteristics of data without changing the attribute information of the original data. In short, it is replication, which can be u ...

Posted by Hi I Am Timbo on Thu, 16 Dec 2021 14:18:54 +0100

Harbor deployment and simple application and Docker Compose syntax

Harbor deployment and simple application Introduction to Harbor Although Docker officially provides a public image repository, it is also very necessary to deploy the Registry in our private environment in terms of security and efficiency. Harbor is an open-source enterprise Docker Registry management project of VMware company. Compared with ...

Posted by bjblackmore on Thu, 16 Dec 2021 14:08:04 +0100

Windows builds FTP server and JAVA realizes read-write function

catalogue Blogger introduction ๐Ÿ’‚ Personal home page: Suzhou program white ๐Ÿ’‚ Individual communities: CSDN programs across the country ๐ŸคŸ Introduction to the author: member of China DBA Alliance (ACDU), administrator of CSDN program ape (yuan) gathering places all over the country. Currently engaged in industri ...

Posted by trackz on Thu, 16 Dec 2021 08:24:35 +0100

Docker learning | 4 Docker container

catalogue 1. Start the container 1.1 create and start 1.2 start terminated container 2. Background operation 3. Terminate the container 4. Enter the container attach command exec command -i - t {parameter 5. Import and export containers Export container Import container snapshot 6. Delete container Delete a container Clean all co ...

Posted by Serpent_Guard on Wed, 15 Dec 2021 16:11:02 +0100

Network configuration under linux

1. What is IP ADDRESS internet protocol ADDRESS ## network process address ipv4 internet protocol version 4 (for specific sub protocols, please refer to the network protocol.) ip is composed of 32 01s 11111110.11111110.11111110.11111110 = 254.254.254.254 The ip address consists of network bits and host bits, One 0 and one is called 1bit. 8bit ...

Posted by ibanez270dx on Wed, 15 Dec 2021 10:41:05 +0100

Druid installation details under CentOS

Chinese address http://www.apache-druid.cn/ 1. Introduction At present, there are many mainstream big data real-time analysis databases on the market. Why do we choose Apache Druid? Let's make a comparison first: Apache Druid is a real-time analytical database designed for rapid query analysis ("OLAP" queries) on large data set ...

Posted by PBD817 on Wed, 15 Dec 2021 04:39:55 +0100

SHELL script - variable

SHELL script - variable SHELL script introduction Programming language classification Compiled language Before the program is executed, it needs to be compiled into machine language and run the compiled results directly. The program has high execution efficiency, depends on the compiler, and has poor cross platform performance. Such as C, C ...

Posted by davey10101 on Wed, 15 Dec 2021 02:58:04 +0100