Introduction to Linux emergency response: intrusion troubleshooting should do this

Account security: 1,User information file /etc/passwd # Format: account:password:UID:GID:GECOS:directory:shell # User name: Password: user ID: group ID: user description: Home Directory: shell after login root:x:::root:/root:/bin/bash # View logged in users: cat /etc/passwd | grep /bin/bash # View users with UID=0 awk -F: '$3==0{print $1}' / ...

Added by JamesThePanda on Wed, 09 Feb 2022 16:53:51 +0200

MySQL master-slave replication: type A → type B

1, Introduction to MySQL master-slave replication Introduction: the master-slave replication of MySQL is to obtain the log content of the bin log file of the master server from the server, parse the SQL statement and update it to the slave server, so as to make the data of the master and slave servers consistent.Mode: MySQL database supp ...

Added by avvishnu on Tue, 08 Feb 2022 13:51:44 +0200

521 that night, the younger martial sister confessed to me in order to learn KVM virtualization technology from me

catalogue brief introduction structure characteristic Environmental preparation 1. Experimental description 2. Check whether the hardware information supports virtualization 3. Closure of essential services Install and configure KVM service 1. Install kvm dependent packages 2. Start libvirtd service 3. Create virtual machine 4.KVM v ...

Added by WebGeek182 on Tue, 08 Feb 2022 12:35:56 +0200

Logical volume management 4. Detailed explanation of logical volume management, lvscan,lvcreate,lvdisplay,lvextend,lvreduce,lvremove,lvresize,lvchange

Logical volume related operations You can think of a logical volume as a component area, so of course, this logical volume also needs to be formatted and mounted. In addition, the logical volume can also be dynamically resized, and the data will not be lost, and there is no need to unmount the logical volume. The commonly used commands are l ...

Added by jeremy0 on Mon, 07 Feb 2022 02:38:59 +0200

Construction of Hadoop running environment

1.1 template virtual machine environment preparation 0) install the template virtual machine, with IP address 192.168.10.100, host name Hadoop 100, memory 4G and hard disk 50G 1) The configuration requirements of Hadoop 100 virtual machine are as follows (the Linux system in this paper takes CentOS-7.5-x86-1804 as an example) (1) Using Yu ...

Added by misslilbit02 on Sun, 06 Feb 2022 09:59:58 +0200

[Docker learning notes II] Docker installation, operation process and common commands

The previous Blog introduced in detail why Docker appeared and what problems it appeared to solve; The basic components and architecture of Docker. This Blog will learn more about how to install and uninstall Docker and what are the common operation commands. Because Docker can be installed on any physical machine, virtual machine, public cloud ...

Added by randomfool on Thu, 03 Feb 2022 17:12:49 +0200

Centos7 installation Oracle19c--Oracle19C graphical interface installation

1. Preparation of relevant documents (1) linux installation file preparation, installation of oracle Software and instances, download link: https://www.oracle.com/cn/database/technologies/oracle-database-software-downloads.html#19c Choose Linux x86_64 system version, click download. Log in with Oracle account before downloading. If there is no ...

Added by hostfreak on Wed, 02 Feb 2022 03:10:58 +0200

Centos7 builds FastDFS file server

FastDFS 1. Introduction to FastDFS FastDFS is an open source distributed file system. It manages files. Its functions include file storage, file synchronization, file access (file upload, file download), etc. It solves the problems of mass storage and load balancing. It is especially suitable for online services based on documents, such as ph ...

Added by jdesilva on Tue, 01 Feb 2022 21:34:21 +0200

Kill, kill send signal command

The Kill Command seems to mean "kill" at first glance, but in fact, the kill command is used to send signals. Let's take a look at the types of signals first. Type of signal Signal: a message sent by one process to another process. There are more than a dozen signals in the Linux system, and each signal is assigned a number and a na ...

Added by sureshp on Tue, 01 Feb 2022 11:03:21 +0200

Installing fastdfs under nginx

1. Install gcc environment yum install gcc-c++ 2. Install two libraries The first libevent Library yum -y install libevent The second libfastcommon Library libfastcommon download address: https://github.com/happyfish100/libfastcommon/archive/V1.0.43.tar.gz Copy the downloaded libfastcommon to the / usr/local / directory, and then execute ...

Added by HuggieBear on Mon, 31 Jan 2022 23:37:44 +0200