Mail server

What is a mail server? E-mail is an information transmission behavior that uses the network to transmit information to remote servers. We can send files or information to any place on the earth where there is a network, and we can also connect to the internet to receive mail anywhere there is a network. However, there are some problems: 1. Ema ...

Posted by deffe on Fri, 07 Jan 2022 22:33:20 +0100

kill Command in linux

When running the model on the server, you often encounter two problems: The model is too large and needs a long running time, and the computer can not be kept in the boot state all the time. Even if it is kept in the boot state, it is not sure which one will turn off and cause re runningDuring continuous training on the server, you find that y ...

Posted by jowatkins on Fri, 07 Jan 2022 10:20:04 +0100

LVS load balancing + high availability

1, LVS   LVS (Linux Virtual Server), namely Linux virtual server, is a virtual server system, which realizes the load balancing Cluster function on unix/Linux platform. LVS is a Cluster technology, which adopts IP load balancing technology and content-based request distribution technology. The scheduler has good throughput, transfers ...

Posted by shoz on Fri, 07 Jan 2022 09:55:08 +0100

Linux basic operation notes

Common commands Enter directory cd /usr #Enter the usr directory View catalog file ls #View all files in the current directory ll #View the details, permissions, size, time, etc. of all files in the current directory #ll command = = ls -l command ls Directory name #ls + directory name, you can view all files in the specified directory ...

Posted by Pavel_Nedved on Fri, 07 Jan 2022 09:19:56 +0100

linux network settings

View network configuration Maximum mtu packet transfer rate View network interface information ifconfig View all active network interface information Execute ifconfig command View specified network interface information ifconfig network interface [root@localhost ~]# ifconfig ens33 ens33 flags=4163<UP,BROADCAST,RUNNING,MULTICAST& ...

Posted by mecha_godzilla on Fri, 07 Jan 2022 01:51:55 +0100

[one Linux command per day] linux commands ls and cp

ls (list files) command is used to display the list of file directories, which is similar to the DOS command dir under Windows system. When executing ls command, only the file name of non hidden file, sorting by file name and the color represented by file name are displayed by default. When no parameters are added, the list information of the c ...

Posted by mourisj on Thu, 06 Jan 2022 16:10:33 +0100

06 simple HTTP protocol -- HTTP method to inform the server of its intention

2.5 HTTP method to inform the server of intention In this chapter, we will learn a lot about the methods used in HTTP. First, take a look at the chart methodexplainSupported HTTP versionsGETGet resources1.0,1.1POSTTransport entity principal1.0,1.1PUTtransfer files1.0,1.1HEADGet message header1.0,1.1DELETEDelete file1.0,1.1OPTIONSAsk for suppo ...

Posted by torsoboy on Thu, 06 Jan 2022 14:42:55 +0100

Web front end learning notes

1, Understanding software racks 1.C/S 1) C client / S server 2) Features: a:C/S software usually needs a specific client to use b: It can communicate through any protocol c: The client of C / s software has the ability of data processing and storage, and can distribute the calculation and data of application software in customer service a ...

Posted by arun_php on Thu, 06 Jan 2022 13:54:08 +0100

Day26Qt implements QTcpServer-2022-01-06

Qt Network (I) tcp server Introduction TCP TCP protocol, transmission control protocol, is an underlying network protocol for data transmission. Many Internet protocols, including FTP and HTTP, are based on TCP protocol. TCP is a reliable transmission protocol for data flow and connection. QTcpSocket class provides an interface for TCP, which ...

Posted by hejgelato on Thu, 06 Jan 2022 13:50:10 +0100

Moosefs distributed file system

1. Distributed file system Distributed file system refers to the physical storage resources managed by the file system. It is not necessarily on the local node, but connected to the node through the network. It is to gather some scattered (distributed on various computers in the LAN) shared folders into one folder (virtual shared folder). When ...

Posted by sbourdon on Thu, 06 Jan 2022 11:23:51 +0100