[Apache][Nginx] build web applications that are only publicly used within the team

prefaceThe laboratory has recently assigned a task to set up an information sharing system on the laboratory server to facilitate the information introduction of senior students after graduation, but the following requirements are met:Use as convenient as possibleAs the system is oriented to the research room, privacy needs to be guaranteedFor ...

Posted by Bounty on Sat, 06 Nov 2021 05:01:46 +0100

2021-2022-1 20212802 Linux kernel principle and analysis week 7

1, The process by which the Linux kernel creates a new process 1. Relevant knowledge The three functions of the operating system kernel are process management, memory management and file system. The core is process managementThe state of linux process is different from the description of operating system principle. For example, the ready stat ...

Posted by Elarion on Fri, 05 Nov 2021 23:38:42 +0100

Common modules of SaltStack

Common modules of SaltStack 1. SaltSack module introduction: Module is one of the components that SaltStack contacts most in daily use. It is used to manage object operations. It is also the entrance for SaltStack to manage by pushing. For example, our daily simple tasks such as executing commands, viewing package installation and service ...

Posted by tsukushi on Fri, 05 Nov 2021 23:31:02 +0100

#Set up note files (typera + picgo + gitee) in ubuntu system (whole process record)

Set up note files (typera + picgo + gitee) in ubuntu system (whole process record) System configuration: Ubuntu 18.04 1. Install typora typora official website Typora common shortcut keys (translation) Execute the following commands from the command line: # or run: # sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys BA300B77 ...

Posted by pskZero7 on Fri, 05 Nov 2021 05:49:22 +0100

Linux tips -- analog ping of raw socket

Raw socket raw socket In recent years, the main idea of scanning the surviving host is to simulate the ICMP message through socket, and then discover a new world of socket -- raw socket. raw socket, that is, the original socket, can receive data frames or packets on the local network card. It is very useful for monitoring network traffic a ...

Posted by Michael Lasky on Thu, 04 Nov 2021 23:27:34 +0100

UDP broadcast java.net.socketexception under Linux: permission denied

0. Background   first explain the environment: OpenJDK8 CentOS7    secondly, it is common to send messages through UDP broadcasting. When deploying in Linux environment today, the following exceptions occurred when sending messages: java.net.SocketException: insufficient privilege at sun.nio.ch.DatagramChannelImpl.se ...

Posted by wildncrazyath3rt on Thu, 04 Nov 2021 22:23:57 +0100

One Linux command a day (35): ps command

This article is an original article of Joshua 317. Please note: reprinted from Joshua 317 blog https://www.joshua317.com/article/184 1, Introduction The ps command in Linux system is used to display the process status of the current system and list the currently running processes in the system. ps command is the most basic and powerful process ...

Posted by vfwood on Thu, 04 Nov 2021 17:51:22 +0100

sed command of linux three swordsmen

1. Preface As we all know, in Linux, everything is a file, such as configuration file, log file, startup file and so on. If we edit and query these files, we may think of some commands such as VI, VIM, cat and more. But these commands are not efficient. It's like a space to build a house. 10 masters were asked to dig the foundation with a sh ...

Posted by cpace1983 on Thu, 04 Nov 2021 13:19:10 +0100

Planning and operation theory 01 -- installation steps of openeuler operating system and graphical interface (the most detailed in the whole network)

Installation steps of openEuler operating system and graphical interface 1, Write in front To tell you the truth, I haven't even heard of OpenEuler before. Here's the installation process through mountains and mountains and twists and turns. I thought it should be easy to install virtual machines like Ubuntu, but it turned out to be diffe ...

Posted by xlordt on Thu, 04 Nov 2021 06:27:11 +0100

Docker builds Jenkins continuous integration automation building environment

1. Docker image pull Jenkins environment command docker pull jenkins/jenkins:lts View the drop-down image docker images 2. Building Jenkins containers through container orchestration Create corresponding directory # Create corresponding directory mkdir -p /data/jenkins/jenkins_home/ chown -R 1000:1000 /data/jenkins/jenkins_home/ + data - do ...

Posted by adnanhb on Thu, 04 Nov 2021 01:44:08 +0100