ssh Remote Connection Service + password free
1. What types of remote login are available
At present, remote login is mainly divided into text interface and graphic interface.
Text interface plaintext transmission: Telnet, RSH, etc.Text interface encryption: mainly SSH, which has basically replaced Telnet and RSH.Graphic interfaces: XDMCP, VNC, XRDP, etc. are common.
Plaintext and encry ...
Posted by Btown2 on Mon, 10 Jan 2022 12:02:03 +0100
Getting started with iLogtail - collecting SLS environment logs from K8S
Introduction: iLogtail is the collection part of Alibaba cloud's simple log service, also known as "SLS". It is used to collect telemetry data, such as logs, tracking and indicators, and has been officially open source(https://github.com/alibaba/il... ). This paper introduces the simplest process of how to install, configure and use ...
Posted by loquaci on Mon, 10 Jan 2022 07:27:01 +0100
Liistener Listener for JavaWeb--Servlet events
1. Learning Objectives 1. Listener listener 2. Listener listener role 3. Creation and destruction of Listener listeners 2. Key Knowledge In order to get the Filter program on the web. Configuration information in the XML file, Servlet API provides a FilterConfig interface that encapsulates the filter program on the web. All the registration inf ...
Posted by smalband on Sun, 09 Jan 2022 19:26:55 +0100
CentOS 8 installation and configuration web server
Installation and configuration of Apache server
Environment centos8 5 (this version is the latest version at present, and other versions should be the same)
Apache Apache )It is the world's No. 1 Web server software. It can run on almost all widely used Computer platform In fact, because of its Cross platform And security are widely used. It ...
Posted by cdickson on Sun, 09 Jan 2022 13:15:12 +0100
CentOS 8 installation configuration DNS server
What is DNS
The information transmission of computers in local area network is based on IP address to identify identity, and it is also completed through IP address in the Internet. DNS just came into being. In order to reduce the threshold for users to access the network. This is a technology used to manage and resolve the correspondence betw ...
Posted by mispris006 on Sun, 09 Jan 2022 13:13:04 +0100
Use docker to learn the core configuration - command - principle of redis master-slave replication 3 redis sentinel "sentinel mode"
Core configuration
More configurations in redisdoc.com/topic/sentinel
sentinel can monitor multiple master nodes and distinguish them by naming, such as master1, master2
sentinel monitor master1 172.10.0.5 2
sentinel monitor master2 ..Standard for sentinels to judge the downline of master nodes
#Sentinel will ping each node. If there is st ...
Posted by kraadde on Sun, 09 Jan 2022 11:15:11 +0100
Linux learning notes: text processing and shell programming
Welcome to the official account, develop the big data from the sinkhole Specialty:
Three swordsmen of text processing: awk, grep, sed
awk:
AWK is a language for processing text files and a powerful text analysis tool.
Parameters:
grep:
The Linux grep command is used to find qualified strings in ...
Posted by robwilson on Sat, 08 Jan 2022 22:25:53 +0100
Linux server redis 6 X cluster environment (master-slave replication)
1. Foreword
When setting up a cluster, you need to ensure that there is no problem in setting up a stand-alone version of redis. You can refer to Linux server Redis 6.x installation and configuration
2. Benefits of master-slave replication
Read write separation, performance expansion Disaster recovery and rapid recovery
The master libra ...
Posted by phpnewbieca on Sat, 08 Jan 2022 13:48:43 +0100
FTP upload error org apache. commons. net. ftp. FTPConnectionClosedException: Connection closed without indication
Error message
FTP upload file report org apache. commons. net. ftp. Ftpconnectionclosedexception: connection closed without indication error In the project, due to ftp migration, the ftpclient used by the code logs in successfully, but this error is reported when uploading the file.
code
public boolean uploadFile(String ip, int port, String ...
Posted by etones on Sat, 08 Jan 2022 10:39:11 +0100
Java extraction Servlet (optimized)
Problem analysis: when we write servlets, a function will correspond to a Servlet, such as LoginServlet and RegisterServlet corresponding to login and registration. When a management system has many functions, there will be 10-30 servlets, which will be very messy when people look at the code
The purpose of extracting servlets: reduce the nu ...
Posted by web_master on Sat, 08 Jan 2022 05:38:40 +0100