Linux Operations and Maintenance - shell script exercise string burning 1
Script description1. Script 1: Solution to reload a large number of library files2. Script 2: Select and switch to the working directory you want to switch
Script 1 explains:
One employee's centos7 host system had the following problems:
implement ldconfig The following error occurred in command time: the library files are empty and the length ...
Posted by e-novative on Thu, 29 Aug 2019 10:22:59 +0200
[GO Development Series - Foundation] Introduction to Go Foundation
[GO Development Series - Foundation] Introduction to Go Foundation
The Characteristics of Golang Language
The Go language not only has the security and performance of static compiler language, but also has the high efficiency of dynamic languag ...
Posted by garygay on Thu, 22 Aug 2019 13:13:45 +0200
Install and configure RabbitMQ (yum source and docker installation) on Centos7
I. docker installation
1. Enter docker hub mirror
Warehouse address: https://hub.docker.com/
2. Search rabbitMq image
When you enter the official image, you can see the following types of images; we choose a version with "mangement" (i ...
Posted by Cagez on Wed, 21 Aug 2019 09:09:05 +0200
Synchronize system time through sntp
Synchronize system time through sntp
For small Internet of Things devices, few interfaces provide users with data interaction, so the system time of our devices can only be updated locally after obtaining the network time.Then, you need to use the sntp protocol.
ntp protocol: The NTP(Network Time Prot ...
Posted by 00tank on Thu, 08 Aug 2019 05:49:13 +0200
Unix Shell exemplification - AWK exercise
Unix Shell exemplar refines Chapter 6 - AWK utility has six exercises, from simple to complex, currently done the first three questions, the latter three questions feel very laborious to do, about loops, arrays, functions, do not know how to do.
AWK Exercise 1: Exercise 1 mainly focuses on the operation of regular expressions with patterns. So ...
Posted by jesus_hairdo on Tue, 06 Aug 2019 09:13:50 +0200
Inter-process communication - ------------------------- message queue
XSI IPC
There are three kinds of IPCs we call XSI IPC, namely message queues, semaphores, and shared memory. There are many similarities between them.
Specific can be seen The same characteristics of XSI IPC
This blog focuses on their differences:
Message queue
Message queues are linked lists o ...
Posted by haku87 on Sun, 28 Jul 2019 08:03:41 +0200
Advanced Programming for UNIX Environment Notes - Identification, Creation and Termination of Threads
Original Link: http://www.cnblogs.com/riasky/p/3507639.html
1. Thread identification
Just as each process has a process ID, each thread has a thread ID.The process ID is unique throughout the system, but the thread ID is only in which i ...
Posted by beckstei on Wed, 24 Jul 2019 22:51:45 +0200
UNIX/Linux Interprocess Communication IPC-Pipeline-Summary (Introduction to Example)
Links to the original text: http://www.cnblogs.com/riasky/p/3481575.html
The Conduit
Generally, the method of exchanging information between processes can only be through fork or exec transmission to open files, or through the file syst ...
Posted by jaimec on Sun, 21 Jul 2019 12:01:15 +0200
Multithread priority of java
Reprinted please indicate the source
http://blog.csdn.NET/pony_maggie/article/details/43889225
Author: Pony
Java Thread priority ranges from 1 (Thread.MIN_PRIORITY) to 10 (Thread.MAX_PRIORITY). If no settings exist,
The default priority for threads is NORM_PRIORITY. This value is 5.
demo creates 10 thread instances ...
Posted by username123 on Wed, 17 Jul 2019 23:03:43 +0200
[MongoDB] 02, MongoDB index and replication
Index Indexing can usually greatly improve the efficiency of queries. Without indexing, MongoDB must scan every file in the collection and select those records that meet the query criteria when reading data. The efficiency of this kind of query is very low, especially when dealing with a large amount of data, the query can t ...
Posted by dolce on Tue, 16 Jul 2019 02:52:22 +0200