Quick learning - Flume enterprise development case

Chapter 3 enterprise development cases 3.1 official case of monitoring port data Case requirements: first, Flume monitors port 44444 of the machine, then sends a message to port 44444 of the machine through telnet tool, and finally Flume displays the monitored data on the console in real time. Dema ...

Posted by poring on Thu, 13 Feb 2020 21:26:22 +0100

Mysql5.7.11 source code deployment

Put a Mysql5.7.11 installation package address first Link: https://pan.baidu.com/s/17FF4CkWSeknOgctyo4Cdxg Extraction code: y891 [root@hadoop001 local]# rpm -qa|grep -i mysql uninstall if there are components [root@hadoop001 local]# rpm -qa|grep -i mariadb uninstall if there are components [root@hadoop0 ...

Posted by jarv on Wed, 29 Jan 2020 17:40:38 +0100

vmware virtual machine settings yum source

During the experiment, several virtual machines (minimum installation) need to be opened to mount the image directly to configure the yum source, without copying the iso to the virtual machine, so as to reduce the disk occupation; Check whether the virtual machine mounts the image Check whether the mount directory is mounted C ...

Posted by SimpleManWeb on Tue, 07 Jan 2020 05:46:38 +0100

High availability with corosync and pacemaker

1. Install pacemaker and corosync on server4 and server5 yum install pacemaker yum install corosync -y 2. Modify the configuration file cd /etc/corosync/ cp corosync.conf.example corosync.conf vim corosync.conf # Please read the corosync.conf.5 manual page compatibility: whitetank totem { version: 2 ...

Posted by SaMike on Tue, 07 Jan 2020 05:35:39 +0100

CentOS yum installation OpenJdk1.8

The following operations are performed on the Aliyun server. The default yum source is Aliyun.If the default is not Aliyun or 163, it is recommended to modify it before yum operation. Modify yum source to Ali source Check if installed rpm -qa | grep java rpm -qa | grep jdk rpm -qa | grep gcj No output means no installation ...

Posted by WendyB on Mon, 06 Jan 2020 14:57:44 +0100

zabbix add nginx, percona, java monitoring items (2)

This film is related to the blog of zabbix installation and deployment: https://blog.csdn.net/Ying_smile/article/details/81736349 Add nginx monitoring item zabbix-agent: [root@server6 ~]# rpm -ivh nginx-1.8.0-1.el6.ngx.x86_64.rpm [root@server6 ~]# cd /etc/nginx/conf.d/ [root@server6 conf.d]# vim default.conf 12 loc ...

Posted by asunsha on Mon, 06 Jan 2020 00:51:17 +0100

Centos configuration deep learning development environment

Catalog 1. Install the video card driver 2. Install CUDA\CUDNN 3. Install tensorflow GPU test 1. Install the video card driver Check the driver and model of the video card $ sudo rpm --import https://www.elrepo.org/RPM-GPG-KEY-elrepo.org Add ELPepo source $ sudo rpm -Uvh http://www.elrepo.org/elrepo-release-7.0-2.el7.elrepo.noarch.rpm In ...

Posted by bsbotto on Sat, 04 Jan 2020 00:17:58 +0100

mfs configuration highly available

Configure the highly available yum source on [server1] and [server4] [root@server1 ~]# vim /etc/yum.repos.d/rhel-source.repo [rhel-source] name=Red Hat Enterprise Linux $releasever - $basearch - Source baseurl=http://172.25.40.250/rhel6.5 enabled=1 gpgcheck=1 gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-redhat-release [HighA ...

Posted by lottos on Wed, 01 Jan 2020 11:27:23 +0100

Management of rpm command

1. Difference between Yum and rpm The yum command will find the dependency from the image itself when installing the software, and then resolve it. If it fails to resolve it, an error will be reported The rpm command does not solve the dependency when installing the software. It is applicable to the installation of all softw ...

Posted by Graeme1972 on Fri, 13 Dec 2019 18:22:17 +0100

Cloud server (Tencent cloud) deploy MySQL 5.7 installation from scratch

1. Install yum repo There is no mysql in the yum source of centos (you can try to use the installation command directly: Yum install mysql server). You need to download the yum repo configuration file on mysql's official website, and then install: #download wget https://dev.mysql.com/get/mysql57-community-release-el7-9.noarch.rpm #repo inst ...

Posted by stemp on Fri, 06 Dec 2019 04:11:42 +0100