Penetration test prime:1
Range target: https://www.vulnhub.com/entry/prime-1,358/
After downloading the shooting range, you can see that the shooting range can be opened directly through vmware. The shooting range system is Ubuntu system. The startup screen is as follows:
Here, VMnet selects nat mode, so the ip segment of the shooting range and kali's ip share ...
Posted by aztec on Wed, 27 Oct 2021 07:43:10 +0200
Detailed explanation of nginx - working principle and configuration file
How nginx works
Nginx consists of kernel and modules. Among them, the design of the kernel is very small and concise, and the work completed is also very simple. Only by looking up the configuration file, the client request is mapped to a location block (location is an instruction in nginx configuration for URI matching), and each instruction ...
Posted by jakebrewer1 on Tue, 26 Oct 2021 03:28:41 +0200
Linux foundation file search
Common file search tools in Linux mainly include locate and find. However, because the locate tool depends on its own index database / var/lib/mlocate/mlocate.db, it is rarely used to accurately find the latest data in the cache of the database. However, its advantage is that it will not traverse all files when searching, so as to ensure that t ...
Posted by balistic on Mon, 25 Oct 2021 15:03:21 +0200
Comprehensive deployment of typical traditional projects (jdk, tomcat, mysql, nginx, actual combat)
introduction
In order to strengthen the review of basic knowledge and consolidate learning achievements, ape redeployed the recently launched company project, recorded the whole process, explained the key points, and made a comprehensive case for traditional project deployment for reference. operating system CentOS memory 4g dual core Database ...
Posted by PickledOnion on Mon, 25 Oct 2021 09:15:29 +0200
Enterprise operation and maintenance practice -- k8s learning notes and k8s scheduling
1. Introduction to kubernetes dispatching
The scheduler uses kubernetes' watch mechanism to discover newly created pods in the cluster that have not yet been scheduled to nodes. The scheduler will schedule each unscheduled Pod found to run on a suitable Node.
Kube scheduler is the default scheduler for Kubernetes clusters and is part of the c ...
Posted by jakebrewer1 on Mon, 25 Oct 2021 06:12:18 +0200
Chapter 2 remote login service in linux
Experimental environment:
westos-vmctl reset nodea
westos-vmctl reset nodeb
In the virtual machine nodea:
Perform the same operation in the virtual machine nodeb:
hostnamectl set-hostname westoshost139.westos.org ## Modify virtual machine name
1, Openssh features
1. Purpose of sshd service ...
Posted by jallard on Sat, 23 Oct 2021 15:17:22 +0200
Enterprise operation and maintenance practice --k8s learning notes progress encryption, authentication and address rewriting
1. Introduction to ingress service
A global load balancing Service set to proxy different backend services is the Ingress Service in Kubernetes.
Ingress consists of two parts: Ingress controller and ingress service.
The Ingress Controller will provide corresponding proxy capabilities according to the Ingress object you define. Various revers ...
Posted by m!tCh on Sat, 23 Oct 2021 04:14:31 +0200
Ceph test tool summary
fio
Fio was originally written to avoid the trouble of writing special test case programs when testing a specific workload for performance reasons or finding / reproducing errors. Writing such a test application can be cumbersome, especially if you must do so often. Therefore, I need a tool that can simulate a given I / O workload without writ ...
Posted by Bhaal on Thu, 21 Oct 2021 02:28:45 +0200
Linux learning -- disk quota, VDO virtual data optimization
Linux learning – disk quota, VDO, virtual data optimization
Disk capacity quota
Soft limit: when the soft limit is reached, the user will be prompted. When the user is still allowed to continue to use within the limited limit
Hard limit: when the hard limit is reached, the user will be prompted and the user's operation will be forcibly ...
Posted by netbros on Tue, 19 Oct 2021 22:51:12 +0200
Nginx + Tomcat load balancing cluster
introduction
Generally, a Tomcat site can not be used in the production environment alone because it may have a single point of failure and can not cope with the complex and diverse requests of too many customers. Therefore, a more reliable solution is needed to improve the Web site architecture.
1, Case overview
Nginx is a very exc ...
Posted by veveu on Fri, 15 Oct 2021 19:30:31 +0200