Docker learning notes -- kuangshen Docker video learning notes

Docker ! 1. Appearance of docker One product: development – launch two sets of environments! Application environment, application configuration! Development – O & M. Question: I can run on my computer! Service unavailable due to version update! For operation and maintenance, the test is very big? The environment configuratio ...

Posted by jandrews3 on Sat, 20 Nov 2021 12:01:01 +0100

Weekly leetcode - realize the basic functions of binary search tree

Data structure and algorithm website recommendation: http://520it.com/binarytrees/ http://btv.melezinek.cz/binary-search-tree.html https://www.cs.usfca.edu/~galles/visualization/Algorithms.html https://yangez.github.io/btree-js https://www.codelike.in 1. Add node to binary search tree: add(E element) public class BinarySearchTree<E ex ...

Posted by blackhawk08 on Wed, 17 Nov 2021 05:37:54 +0100

STF connected mobile + Docker version of CentOS7/8

prerequisite: CentOS8 has configured the STF environment or CentOS7 installs STF, Docker version Windows view adb version C:\Users\shenyf>adb --version Android Debug Bridge version 1.0.41 Version 31.0.3-7562133 Installed as D:\android-sdk-windows\platform-tools\adb.exe Method 1: connect mobile phone on STF service Just plug the debugging ...

Posted by nekoanz on Fri, 12 Nov 2021 12:46:12 +0100

CDH environment construction

CDH is the most complete and tested popular distribution of Apache Hadoop and related projects. CDH provides the core elements of Hadoop (scalable storage and distributed computing), as well as Web-based user interface and important enterprise functions. Installing virtual machine CentOs I installed the version of CentOs7 myself. There are ...

Posted by mahaguru on Thu, 11 Nov 2021 00:00:32 +0100

ansible implementation handler, processing task failure, file management

##Run tasks conditionally ####-Syntax of conditional tasks ######The when statement is used to run a task conditionally. It takes the condition to be tested as the value. If the conditions are met. Then run the task. If the conditions are not met, skip the task. ######Example: When when The value of is false Task execution will be skipped whe ...

Posted by fireant on Sun, 07 Nov 2021 22:09:39 +0100

YUM command management and use of source package

YUM command management 1, YUM common commands yum list software name lists rpm -q for each package (both installed and uninstalled)View all warehouses using yum repolistinfo query software information rpm -qiReinstall reinstall rpm -ivhremove uninstall rpm -eprovides searchclean all clear cachemakecache create cache 1.1 installation pa ...

Posted by southeastweb on Tue, 26 Oct 2021 13:02:20 +0200

Cluster deployment of Apache HBase 1.2.12 under CentOS

Cluster deployment of Apache HBase 1.2.12 under CentOS 1, Dependent environment Pre dependency and installation CentOS 7. X, JDK, Hadoop 2.7.7 cluster, zookeeper-3.4.14 clusterThe three node zookeeper is deployed this time. The corresponding machine hostname s are bigdata02, bigdata03 and bigdata04 The cluster planning is shown in the follo ...

Posted by sdallas411 on Sun, 24 Oct 2021 18:03:25 +0200

Installation and configuration of ftp under Centos

Installation and configuration of ftp under Centos 1. FTP download and installation 1.ftp download yum install -y vsftpd 2.ftp startup systemctl enable vsftpd.service #Startup and self start systemctl start vsftpd.service #start-up systemctl stop vsftpd.service #stop it systemctl status vsftpd.service #state ...

Posted by wiegs on Wed, 20 Oct 2021 07:38:15 +0200

cobbler (batch installation tool)

1, About cobbler Cobbler is a Linux server installation service. It can quickly install and reinstall physical servers and virtual machines through network boot (PXE). At the same time, it can also manage DHCP, DNS, etc. Cobbler can be managed in the command line mode, and also provides a Web-based interface management tool (cobbler Web), ...

Posted by nels on Wed, 13 Oct 2021 03:16:43 +0200

P4 environment configuration and compilation

P4lang compilation environment configuration #Some words are written in the front The author has just begun to understand the content written in the article. He has referred to a lot of network materials. He writes a blog to record the learning process. If there is any misunderstanding, he is welcome to criticize! Installing VMVare This step ...

Posted by phpfreak101 on Tue, 12 Oct 2021 19:21:30 +0200