Network commands in linux

write explain Command name: write Command path / usr/bin/write Execute permission: all users Function Description: send information to the user, and save with Ctrl+D grammar Write < user name > Example # Send a message to tenentity write eternity [root@izm5e2q95pbpe1hh0kkwoiz ~]# write eternity write: eternity is logged in more than o ...

Posted by pdpullmn612 on Wed, 19 Feb 2020 04:49:04 -0800

Help commands in linux

Catalog man whatis apropos --help info help man explain Command name:man Command English original meaning:manual Command path: /usr/bin/man Execution rights: all users Function description: Get help information grammar man [command or configuration file] Example #View help for ls command man ls Page Down with Space Page Up U ...

Posted by Eiolon on Tue, 18 Feb 2020 18:47:48 -0800

Introduction to yum package management

rpm can realize fast and simple installation of programs (compared with compilation and installation), but rpm can't solve dependency by itself, so many tools come into being to solve dependency automatically, among which yum is one of them. yum solution to dependency: There must be a file server where all the rpm packages and the package rel ...

Posted by jiggens on Sat, 15 Feb 2020 18:47:48 -0800

Graylog building configuration details (centos7)

Graylog build configuration (centos7) 1, Basic environment 1. jdk environment required: [root@iz2zee3zwuvnmai605c99vz ~]# java -version openjdk version "1.8.0_171" OpenJDK Runtime Environment (build 1.8.0_171-b10) OpenJDK 64-Bit Server VM (build 25.171-b10, mixed mode) //If not, you need to install it. He ...

Posted by thepreacher on Sat, 15 Feb 2020 07:29:27 -0800

Ubuntu 18 replace software source

In Centos/RHEL system, the file to configure the yum warehouse is the. Repo file under the directory / etc/yum.repo.d /. In Ubuntu system, it is the / etc/apt/sources.list file The first element of configuring system files is to back up files. Generally, system files are kb level files, which don't oc ...

Posted by iPixel on Tue, 11 Feb 2020 07:46:19 -0800

Centos 7 Builds Zimbra Mail Server and foxmail Configuration

Reference resources: https://blog.csdn.net/linuxnews/article/details/51106905 Environment Configuration: Local ip:192.168.1.41 Set Host Name hostnamectl set-hostname mail.jlkj.com Add hosts echo "192.168.1.41 mail.jlkj.com" >> /etc/hosts Turn off the firewall: sed -i 's/SELINUX=enforcing/SELINUX=disabled/ ...

Posted by dv6cougar on Mon, 10 Feb 2020 08:21:33 -0800

Under Kubernetes cluster deployment

k8s general environmental plan Environmental equipment Two master nodes, two node nodes and two node nodes are installed with nginx for load balancing, failover and floating address vip Deployment process Turn off firewall and security functions systemctl stop firewalld.servicesetenforce 0 Copy the kubernetes directory to master2 (last exp ...

Posted by pullaratt on Mon, 10 Feb 2020 04:32:39 -0800

Kubernetes data persistence Storage Class creates PV automatically

Through Bo Wen Storage Volume of Kubernetes It can be seen that the process of Kubernets to realize data persistence is as follows:Build NFS underlying storage - > create PV - > create PVC - > create podFinally, the container in the pod will realize data persistence! From the above process, it seems that there is no problem, but after ...

Posted by icd_lx on Mon, 10 Feb 2020 01:10:55 -0800

kubernetes binary cluster deployment three -- load balancing scheduler deployment

Key points: 1. Experimental environment 2. Load balancing scheduler deployment 1, Experimental environment: Based on the previously deployed multi Master cluster architecture, deploy two scheduler servers (nginx is used here) to achieve load balancing: Deployment 1 of kubernetes binary cluster - deployment of etcd storage component and flan ...

Posted by micbox on Mon, 10 Feb 2020 00:30:53 -0800

Kubernetes cluster deployment -- binary cluster load balancing

Based on the previously deployed multi Master cluster architecture, deploy two scheduler servers (nginx is used here) to achieve load balancing:Again, the environment: role IP address master01 192.168.100.110 master02 192.168.100.109 Scheduler 1 (nginx01) 192.168.100.113 Scheduler 2 (nginx02 ...

Posted by edtlov on Sun, 09 Feb 2020 21:44:07 -0800