Get the App
  • What command does linux use to view the full path?

    What command does linux use to view the full path?

    The Linux pwd command is used to display the working directory. Execute the pwd directive to immediately know the absolute path name of your current working directory. Syntax pwd [--help] [--version] parameter description:-- help online help. -- versio

    Shulou · 2022-06-03 05:59
  • How does ​ linux set permissions for directories and files?

    How does ​ linux set permissions for directories and files?

    Linux sets permissions for directories and files: setting permissions for files or directories through the chmod command can be expressed in two forms: character form and numeric form. The r, w, x permission characters can be represented as the octal digits 4, 2, 1, respectively, indicating that a combination of permissions requires the

    Shulou · 2022-06-03 05:59
  • Experience of server-side programming (3)-- introduction to the architecture of a server program

    Experience of server-side programming (3)-- introduction to the architecture of a server program

    This article will introduce some important details of the server architecture and server programming of a project I have worked on. Program running environment operating system: centos 7.0Compiler: gcc/g++ 4.8.3 cmake 2.8.11mysql Database: 5.5

    Shulou · 2022-06-03 05:59
  • The method of viewing mysql installation path and running file path by linux

    The method of viewing mysql installation path and running file path by linux

    1. View the mysql installation path and use the whereis command to find examples: root@ubuntu:/# whereis mysqlmysql: / usr/bin/mysql / usr/bin/X11/mysql / u

    Shulou · 2022-06-03 05:59
  • Shell awk sed tr grep Syntax Summary

    Shell awk sed tr grep Syntax Summary

    Tr basic syntax-c # replaces this character set with a complement to the character set in string 1, requiring the character set to be ASCII-d # to delete all input characters in string 1-s # to delete all repetitive character sequences, leaving only the first: to compress the recurring string into one word

    Shulou · 2022-06-03 05:59
  • Linux output Chinese garbled how to do?

    Linux output Chinese garbled how to do?

    Linux Chinese garbled code may be caused by the absence of a Chinese language pack installed. 1. Check whether to install the Chinese language pack # locale-a | grep "zh_CN" has no output, then it is not installed. You can install it first. Use the following command to install: # yum-y

    Shulou · 2022-06-03 05:59
  • Detailed methods of connecting and disconnecting mysql from MySQL5.6

    Detailed methods of connecting and disconnecting mysql from MySQL5.6

    The following is about the detailed methods of connecting to MySQL5.6 and disconnecting mysql. The secret of the text is to be close to the topic. So, let's not talk about gossip. let's just read the following. I'm sure you will have some details on how to connect and disconnect MySQL5.6 after reading this article.

    Shulou · 2022-06-03 05:59
  • How to quickly deploy Kubernetes clusters?

    How to quickly deploy Kubernetes clusters?

    1. Installation requirements before starting, the deployment of Kubernetes cluster machines requires the following conditions: one or more machines, operating system CentOS7.x-86_x64 hardware configuration: 2GB or more RAM,2 CPU or more CPU

    Shulou · 2022-06-03 05:59
  • What if linux telnet cannot log in remotely?

    What if linux telnet cannot log in remotely?

    The telnet command is usually used for remote login. Telnet program is a remote login client program based on TELNET protocol. Telnet protocol is a member of TCP/IP protocol family, and it is the standard protocol and main way of Internet remote login service. It is for the user

    Shulou · 2022-06-03 05:59
  • Win10 Ann. Net3.0

    Win10 Ann. Net3.0

    Dism.exe / online / enable-feature / all / featurename:NetFX3 / Source:C:\ sources\ sxsISO extract SOURCES

    Shulou · 2022-06-03 05:59
  • Introduction of awk Command and Zabbix Custom parameters

    Introduction of awk Command and Zabbix Custom parameters

    The awk command awk is a language for processing text files and is a powerful public tool for text analysis. The way awk handles text and data: read the text line by line, look for lines that match a particular pattern, and then manipulate it. The specific fields of the matching line in the output file are very powerful, so they are of many uses.

    Shulou · 2022-06-03 05:59
  • How to solve the problem of cpu running full?

    How to solve the problem of cpu running full?

    To solve the problem, the first thing that comes to mind at that time is the virus. No matter how many, the first step is to find the process that consumes cpu to kill. Use the top command to see which processes consume cpu. It is clear at a glance that it is all caused by bzip2. The process of killing processes found a problem, that is, these processes.

    Shulou · 2022-06-03 05:59
  • Create a FTP site and upload and download anonymous users

    Create a FTP site and upload and download anonymous users

    Create a new FTP site 1, click the add FTP site option in the actions panel on the right, and start the add FTP site wizard. 2. Give the site a name and specify the home directory of the FTP site. The default home directory of FTP is CJV.. (a folder under disk c) 3

    Shulou · 2022-06-03 05:59
  • How to add a new associated image template in cacti?

    How to add a new associated image template in cacti?

    In the blog post, a classmate asked me what to do without "In/Out Bits with 95th Percentile (64-bit Counters)" when generating a single-port traffic graph. I'll write a step and refer to it. Advanced to data que

    Shulou · 2022-06-03 05:59
  • How does logstash work?

    How does logstash work?

    Logstash is an open source, server-side data processing pipeline (pipeline) that can receive data from multiple sources, convert them, and eventually send them to specified types of destinations. Logstash implements various functions through the plug-in mechanism, reader.

    Shulou · 2022-06-03 05:58
  • How to use input and codec plug-ins in logstash

    How to use input and codec plug-ins in logstash

    The most powerful feature of Logstash is the rich filter plug-in. This filter provides not only the function of filtering, but also complex logical processing of the original data entering the filter. Even add unique events to subsequent processes. 1. The basic syntax of logstash consists of l

    Shulou · 2022-06-03 05:58
  • What are the common load balancing software?

    What are the common load balancing software?

    Load balancing (LB) software common load balancing software are: LVS, Nginx, HaproxyLVS:1. Based on the layer 4 network protocol, almost no traffic is generated, which also determines that the load capacity of these load balancing software is the strongest, and the memory and CPU resources are also low. two

    Shulou · 2022-06-03 05:58
  • Example of bash shell script displaying text information using ASCII colors

    Example of bash shell script displaying text information using ASCII colors

    In bash shell scripts, we can use ASCII colors to display text information. Format:\ 033\ [31m hello\ 033 [0m##m: left #: this # can be 3 or 4, the function is different. 3: foreground color 4: background color right #:

    Shulou · 2022-06-03 05:58
  • Introduction to logstash filter plug-in filter

    Introduction to logstash filter plug-in filter

    1. Logstash filter plug-in filter1.1, grok regular capture grok is a very powerful logstash filter plug-in, which can make unstructured log data structured and easy to query through regular parsing of arbitrary text.

    Shulou · 2022-06-03 05:58
  • Introduction to dos Command of Windows system

    Introduction to dos Command of Windows system

    Compared with the traditional windows activation, using the command line to activate windows under the dos command is more convenient (effective) to open the cmd dos command (shortcut key Win+R) to open CMD (to open with the administrator) slmgr.vbs-xpr (query

    Shulou · 2022-06-03 05:58