kubernetes FAQ

Error when creating pod If the pod fails, the following two prompts will be displayed [root@master ~]#kubectl get pods NAME READY STATUS RESTARTS AGE net-test1-7c9c4b94d6-5mddl 1/1 Running 0 2m41s net-test1-7c9c4b94d6-xk8jp 0/1 ImagePullBackOff 0 5s [root@master ...

Posted by NEWDAY on Thu, 31 Oct 2019 00:06:08 -0700

In the Windows security log, a large number of events ID 4625;

Recently, I found a large number of network login failure records (event ID is 4625) in the Windows security log (win10 ﹤ 64 bit), and a large number of Internet IP attempts to log in to my computer in the background. I feel that the company's network is no longer safe, so I can only try my best to protect my computer. Try operation 1: disabl ...

Posted by jana on Wed, 30 Oct 2019 21:42:00 -0700

Using Docker

Foundation of Docker Technology: Namespace, the basis of container isolation, to ensure that container A cannot see container B. 6 namespace: User,Mnt,Network,UTS,IPC,Pid cgroups, container resource statistics and isolation. cgroups: cpu,blkio,device,freezer,memory unionfs, typical: aufs/overlayfs, the foundation of layered image implementat ...

Posted by domino1 on Wed, 30 Oct 2019 13:18:40 -0700

Making WIFI version of intelligent socket easily -- Software

Refer to the first part for hardware construction: https://blog.csdn.net/qq_34472145/article/details/94561226 I. Preface In the previous part, the socket receives messages from MQTT server, while the server receives instructions from APP and converts them into customized messages and sends them to WiF ...

Posted by stelthius on Wed, 30 Oct 2019 12:22:15 -0700

9. Common layout of Flutter Stack cascade layout

I. use of stacked layout Horizontal layout and vertical layout are really easy to use, but there is a situation that cannot be completed, such as putting a picture, writing some words on the picture or putting it into a container. At this point, you can consider using Stack cascade layout. /** * Stacked layout */ class StackWidget extends Sta ...

Posted by rosegarden on Wed, 30 Oct 2019 07:09:43 -0700

Programmer: using Python to realize the reverse Shell that can control broiler

First, initial knowledge 1.1 use Python to implement a reverse Shell that can manage multiple broilers. Why is it called a reverse Shell? The reverse is that broiler actively connects to our Server as Client to realize the management of multiple remote hosts! Learning skills: Understand the TCP protocolUnderstand C/S structure program design ...

Posted by mrkite on Wed, 30 Oct 2019 06:44:41 -0700

WebRTC connection process introduction

Summary Because we are working on WebRTC related projects recently, in order to have a deeper understanding of WebRTC connection and transmission, we should write an article to introduce it. From the beginning Official documents of WebRTC Start with, and of course, the inside samples . Because the communication process has not been involved, w ...

Posted by Rother2005 on Wed, 30 Oct 2019 02:05:51 -0700

Optimization of Docker image

Thinking: what do you want to optimize the image? The means of image optimization l) select the thinnest basic image -- > core 2) reduce the number of layers of image 3) clean up the intermediate products of image construction -- > useless 4) pay attention to optimizing network requests 5 ...

Posted by mikegzarejoyce on Tue, 29 Oct 2019 14:00:03 -0700

Java description design pattern (16): agent pattern

Source code: GitHub point here || GitEE point here I. life scene 1. Scene description Today, with the rapid development of e-commerce, the number of express delivery is very large, and even there is the express agent industry. Simply speaking, the owner of express delivery does not have time to receive express delivery, and will designate a co ...

Posted by DarkShadowWing on Tue, 29 Oct 2019 09:35:43 -0700

Wechat applet wechat login

image.png Development interface Sign in wx.login wx.checkSession Signature encryption Applet login The small program can easily obtain the user identity provided by wechat through the login ability provided by wechat official, and quickly establish the user system within the small program. Login process sequence Applet, devel ...

Posted by syth04 on Mon, 28 Oct 2019 13:32:34 -0700