Installation and unloading of docker under Cento system
Introduction to Docker
Docker An open source application container engine that allows developers to package their applications and dependencies into a portable container and then publish them to any popular application. Linux Virtualization can also be achieved on machines. Containers are completely sandboxed with no interfaces (similar ...
Posted by jeff_valken on Fri, 05 Jul 2019 17:43:59 -0700
NFS File Sharing Configuration
To install the NFS service, you need to install nfs-utils and rpcbind, the RPC service of NFS, named portmap under Centos5.X and rcpbind under Centos6.X.1. Query whether nfs service and rpc service are installed[root@nfs-server ~]# rpm -qa|grep nfs
[root@nfs-server ~]# rpm -qa|grep rpcbind2. Using Y ...
Posted by tofi84 on Fri, 05 Jul 2019 17:04:39 -0700
PXE+kickstart--Implement network batch installation
Experimental purpose: Using software to achieve network batch automatic installation
Experimental environment: one linux desktop, more than one new virtual machine, in the same local area network
Experimental steps:
1. Install software dependency packages on desktop systems
[root@localhost ~]# yum -y install dhcp tftp tftp-server vsftpd s ...
Posted by steveangelis on Fri, 05 Jul 2019 09:48:46 -0700
Building of redis 3.2.8 cluster environment
Environmental preparation
centos6.7
redis3.2.8
Installation steps
Step 1: Download the redis 3.2.8 installation package https://redis.io/download
Step 2: Decompress the compressed package to the middle/inner_dev_env/redis-3.2.8
[root@allere /inner_dev_env/redis-3.2.8]# pwd
/inner_dev_env/redis-3.2.8
Step 3: Create a new directory: redi ...
Posted by WesPear on Mon, 01 Jul 2019 11:56:25 -0700
Lamp environment builds Linux CentOS 6.5 compile and install MySQL 5.6
Detailed Installation of mysql in Lamp Environment of Classical web Development Portfolio
Pre-installation preparation
Check whether mysql has been installed on centos through the rpm command, and then uninstall the existing version of mysql
[root@localhost src]# rpm -qa|grep mysql
mysql-libs-5.1.66-2.el6_3.i686
[root@localhost src]# rpm -e -- ...
Posted by FuzziNectar on Mon, 01 Jul 2019 10:27:22 -0700
ngnix+keepalive Load Balancing Setup
3.7 Load Balancing Setup
3.7.1 Environment Architecture
Figure 3.7.1 nginx environment architecture diagram
3.7.2 Install dependency packages
Command:
#yum -y install gcc pcre-devel zlib-devel openssl-devel
3.7.3 Upload the Nginx and Keepalived installation packages to the server
Upload nginx-1.6.2.tar.gz and keepali ...
Posted by hanji on Sun, 30 Jun 2019 12:26:39 -0700
php turns html into pictures
The compiled html is converted into pictures by server-side parsing.
Because html is usually parsed by client browser, the server can not parse HTML code directly. So we need php class libraries and extensions to fulfill this requirement.
The file conversion process is html - > PDF - > png.
The class libraries needed are mPDF, imagick
The ...
Posted by taskhill on Sat, 29 Jun 2019 12:40:20 -0700
Cloud Server LNMP Environment Construction
Write in front
On Purpose
This is an introduction to how to build an LNMP environment on cloud servers.
Content is based on my recent study and practice, so some content will be repeated with other articles online, so the purpose of this article is to pass the knowledge of the predecessors, and try to summarize a set of effective methods ...
Posted by lobobr on Mon, 24 Jun 2019 15:40:13 -0700
CentOS 7 Source Installation Redis
June 6, 2017 Redis's latest stable version is 3.2.9
1. Dependencies required to install and compile
Update the software to the latest version
yum update && yum upgrade
Install compile dependencies
yum install gcc make tcl
2. Download and unzip redis
cd /usr/local
wget http://download.redis.io/releases/redis-3.2.9.tar.gz
tar zxv ...
Posted by sevenupcan on Mon, 24 Jun 2019 14:57:30 -0700
LVS High Availability Cluster DR Mode Basic Configuration (apache Service)
The experimental environment:
Operating system: redhat EL 6.5
Machine:
Scheduler:
server1: 172.25.12.1 ipvsadm
RS Real Host:
server2: 172.25.12.2 arptables_jf
server3: 172.25.12.3 arptables_jf
Principle of experiment:
The client accesses vip (virtual ip), which is available on all the machines in the cluster, but the clien ...
Posted by whizzkid-000 on Mon, 24 Jun 2019 13:15:30 -0700