Docker Series 3:Docker Mirror Details

1. Introduction to Docker Mirrors 1. Introduction of Mirror Composition      Hierarchical, with bootfs at the bottom and rootfs above bootfs can be of type btrfs, aufs, lxc and require a kernel, but this kernel is only for user controls that launch containers rootfs is represented as a root file system, which contains many files and directori ...

Posted by revdev on Sun, 22 Dec 2019 19:15:54 -0800

[LINUX]CentOS7 configure jdk environment

[LINUX]CentOS7 configure jdk environment Please support originality and identify DannisTang (tangweixuan1995@foxmail.com) If the Java environment is installed under linux, but the java file path is not specified in the configuration file, the installation directory cannot be found with echo. Please refer to another article o ...

Posted by Vizionz on Sun, 22 Dec 2019 14:57:38 -0800

Docker Series 4: Foundation of Docker Network Virtualization

1. Introduction of Network Virtualization Technology 1. What is a virtualized network A virtualized network is a network virtualized by the linux kernel. In fact, the linux kernel can emulate a variety of network devices Analog network devices: Analog network devices appear in pairs, one in containers and one in switches Analog switches: Cont ...

Posted by xeidor on Sun, 22 Dec 2019 14:34:23 -0800

Detailed steps for Zabbix3.4 installation

zabbix is an enterprise open source solution based on the WEB interface that provides distributed system monitoring and network monitoring capabilities. The zabbix consists of two parts, the zabbix server and the optional component zabbix agent. zabbix server can provide remote server/network status monitoring, data collection and other func ...

Posted by diagnostix on Sun, 22 Dec 2019 10:23:38 -0800

File (directory) attribute, file permission, special permission (mandatory bit, adventure bit)

1. View file properties: ls -l filename - rw-rw-r-- 1 kiosk kiosk 0 Oct 2 17:05 file [1] [2] [3] [4] [5] [6] [7] [8] //notes: [1]file type - # Common documents d # catalog s # Socket socket, the open interface of a progra ...

Posted by XeroXer on Sun, 22 Dec 2019 08:48:20 -0800

PG fdw connection establishment and closure

PG starts psql locally, accesses external tables, and exits The connection between PG and remotePG is broken as the client psql exits.   PG starts multiple psqls locally, and each psql accesses the external table once View remotePG process postgres@ubuntu:~$ ps -ef|grep post root 134 89 0 09:36 pts/0 00:00 ...

Posted by jollyjumper on Sun, 22 Dec 2019 07:41:52 -0800

Installing maven and nexus in linux

Installing maven in linux Download decompression wget -c http://apache.claz.org/maven/maven-3/3.5.4/binaries/apache-maven-3.5.4-bin.tar.gz tar -zxvf apache-maven-3.5.4-bin.tar.gz Import environment variables Open file vi /etc/profile export MAVEN_HOME=/usr/local/apache-maven-3.5.4 export MAVEN_HOME export PATH=$PATH:$MAV ...

Posted by woolyg on Sat, 21 Dec 2019 13:07:22 -0800

swoole optimized configuration and stress test

swoole optimized configuration and stress test 1, Server hardware: 2, Server side: 3, Client: Modify the following file: vim /etc/sysctl.conf Configuration and installation of pressure measuring tools: 4, Server kernel optimization: 5, Testing 1, Server hardware: 2 vCPU 4 GB (I/O optimization) 100Mbps (peak) 2, Se ...

Posted by nickcwj on Sat, 21 Dec 2019 12:50:47 -0800

javascript add element add element with DocumentFragment

Insert node When we want to insert a single node, we can use the insertBefore() and appendChild() methods. If we want to insert multiple content, we need to use DocumentFragment. It is a strategy to use the insertion method repeatedly, but in this way, the browser will render the DOM tree continuously, which will affect the us ...

Posted by rslnerd on Sat, 21 Dec 2019 12:08:54 -0800

Configuring transparent gateway to access MS SQL SERVER Under Oracle

Configuration setting The server operating system IP address SQL SERVER Windows 2003 10.9.5.47 Oracle DB Linux 5.8 10.9.5.90 Oracle Gateways 1. Install transparent gateway After Oracle 11G, Gateways under linux ...

Posted by xnowandtheworldx on Sat, 21 Dec 2019 10:42:10 -0800