Set up GFS Distributed File System--Practice
1. Introduction to GlusterFS:
GFS is an extensible distributed file system for large, distributed applications that access a large amount of data.It runs on inexpensive common hardware and provides fault tolerance.It can provide high overall performance services to a large number of users.
Open source distributed file system;It consists of a s ...
Added by Dennis Madsen on Sat, 21 Dec 2019 09:26:28 +0200
GitLab installation and use
GitLab is an open source application developed by Ruby on Rails. It implements a self managed Git project warehouse, which can access public or private projects through Web interface.
GitLab has similar functions to Github, which can browse source code, manage defects and comments. You can manage team access to the repository, which is very eas ...
Added by Jaehoon on Thu, 19 Dec 2019 23:06:39 +0200
Using GPU hardware to speed up FFmpeg video transcoding and pit draining
Author: dongdong
Email: ldyldy828@126.com
This article includes:
Installing FFmpeg on Linux
Video format recognition and transcoding via command line
Video transcoding acceleration using GPU on Linux with Nvidia graphics card
FFmpeg Compile Installation
On the FFmpeg website, https://ffmpeg.org/download.html can be downloaded to the ubunto/d ...
Added by volatileboy on Thu, 19 Dec 2019 22:50:25 +0200
rsync remote synchronization (instance!!!)
Overview of rsync synchronization:
Remote Sync --- Remote synchronization, local replication support, or synchronization with other SSH, rsync hosts, similar to SCP but richer than scp.
Official website: http://rsync.samba.org
rsync synchronization features:
1. You can mirror the entire catalog tree and file system.
2. It is very easy to main ...
Added by clodagh2000 on Mon, 16 Dec 2019 01:14:10 +0200
innobackupex incremental backup and recovery
Download: Xtrabackup
https://www.percona.com/downloads/XtraBackup/Percona-XtraBackup-2.4.8/binary/redhat/7/x86_64/Percona-XtraBackup-2.4.8-r97330f7-el7-x86_64-bundle.tar
Unzip, install yum
tar -xvf Percona-XtraBackup-2.4.8-r97330f7-el7-x86_64-bundle.tar
yum install percona-xtrabackup-24-2.4.8-1.el7.x86_64.rpm
Full backup
innobackupex –user=r ...
Added by Hatdrawn on Sat, 14 Dec 2019 17:40:51 +0200
CentOS 7.4 source installation nginx 1.14
Operating system: CentOS 7.4
Nginx version: nginx-1.14.1
The current Stable version is nginx-1.14.1 Reference resources
Different from JRE and Tomcat, nginx is not only decompressed, but also compiled and installed. The specific steps are as follows:
I. preparation environment
If the environment preparation is not complete, it will be exec ...
Added by La Parka on Mon, 09 Dec 2019 19:47:30 +0200
Newly installed Linux system
Set password for root
sudo passwd root enter
Set password of root user (use root account)
Install yum
sudo apt-get updatesudo apt install yum
Use domestic source address in Linux system (Ubuntu)
Source address list file path
The path of the source list configuration file of ubuntu system is / etc/apt/ sources.list
In order ...
Added by glossary on Mon, 09 Dec 2019 09:09:09 +0200
Deploy redis master-slave cluster and start sentinel mode
I. deployment environmentSystem: centos7The deployment of the master-slave cluster is completed by starting two different redis instances on the Linux systemyum source deployed
II. Download and install redis1. Download: download on official website2, installationCreate the / app / directory and install redis in the / app / directory
[root@liyg ...
Added by john6384 on Tue, 03 Dec 2019 06:04:29 +0200
zabbix monitoring to get Apache status
The following operations are performed on the ZABBIX agent side:
Initialize (execute script)
sh init.sh
httpd installation and startup (binary)
yum install -y httpd* #Install httpd
systemctl start httpd.service;systemctl enable httpd.service #Service startup and startup
ss -ant |grep :80 #Check whether the 80 of httpd is up
LISTEN 0 ...
Added by stricks1984 on Sun, 01 Dec 2019 22:26:13 +0200
CentOS7 network card configuration
View IP information
After CentOS is installed, view the ip information through the ip addr command
[root@localhost yum.repos.d]# ip addr
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000
link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
inet 127.0.0.1/8 scope host lo
valid_lft f ...
Added by Arnold_26 on Sun, 01 Dec 2019 06:10:27 +0200