centos7 builds wordpress blog
Install apache
yum install -y httpd
Start apache
systemctl start httpd
Set apache to power on automatically
systemctl enable httpd
Access public network address to check whether apache is normal
Install MySQL database
wget -i http://dev.mysql.com/get/mysql57-community-release-el7-10.noarch.rpm
yum -y install mysql57-community-release-el7-10 ...
Posted by pedroteixeira07 on Mon, 11 May 2020 19:01:44 +0200
Some problems encountered in the installation of docker by rpm and their solutions
Today, I installed the docker environment for my colleagues in the R & D department on the domestic winning Kirin 7.4 operating system. Because of its special environment, I couldn't use the Internet repo source, so I only used the rpm package for the installation. Because it is the first time to use the rpm package for the installation of ...
Posted by EY on Fri, 08 May 2020 15:22:13 +0200
PHP-7.1.6 source compilation and installation
Explain
php5 and php7 can be installed in an apache server at the same time, but only one of them can run. The other needs to comment out the corresponding LoadModule in the apache configuration file
1. Download and install
[root@dl-001 src]# wget http://cn2.php.net/distributions/php-7.1.6.tar.gz
[root@dl-001 s ...
Posted by cdinca on Tue, 05 May 2020 20:06:12 +0200
Compile and install MariaDB-10.1.30
Environment related:
OS: CentOS release 6.9
IP: 192.168.1.10
CPU: 4 cores
MEM: 2G
DISK: 50G
1. Experiment host clone
Refer to "CentOS6 experimental machine template building and deployment"
Clone an experimental machine, adjust the memory to 2G and the CPU to 4 cores, and further configure the host na ...
Posted by geus on Tue, 05 May 2020 08:37:43 +0200
Brief introduction to the construction of redis cluster
Environmental Science
Operating system: CentOS 7.3
Redis version: Redis 3.2.8
Two hosts, three nodes on each host
Basic steps
Download and unzip the installation package
# Download and unzip the installation package
wget http://download.redis.io/releases/redis-3.2.8.tar.gz
tar -zxvf redis-3.2.8.tar.gz
Build install
# Normal compi ...
Posted by j9sjam3 on Fri, 01 May 2020 15:54:19 +0200
centos7 local yum configuration and use
1. Mount system CD
2. Mount the CD to make the rpm package in the CD available
Create CD mount point directory
[root@localhost ~]# mkdir /mount
Mount CD
[root@localhost ~]# mount /dev/cdrom /mount
mount: /dev/sr0 is write-protected, mounting read-only
After mounting, you can see the Packages directory of the rpm package in th ...
Posted by Terrum on Sun, 26 Apr 2020 16:23:32 +0200
Ubuntu installs docker CE and harbor
##Docker CE installation
System recommended version: Ubuntu 16.04
Official installation document connection: https://docs.docker.com/install/linux/docker-ce/ubuntu/#prerequisites
Auto match system version installation:
apt-get install -y docker.io
ubuntu search:
apt-cache madison kubeadm
##The installation steps are as follows in the s ...
Posted by witty on Sat, 25 Apr 2020 03:08:50 +0200
Order export pdf file
principle
Raw data - > Load template - > temporary file - > PDF file
Scheme preparation
html template to pdf
Difficulties: 1. Find a designer for every change; 2. html style is difficult to control (I'm not good at it); 3.html to pdf style is difficult to control
word template to pdf
Difficulties: 1. Selection of appropriate plug-in ...
Posted by argh2xxx on Tue, 21 Apr 2020 18:35:29 +0200
Docker update
Docker update
Original version 1.10
Updated version 19.03.1
To update Docker version:
Note whether the system supports the new version of the storage driver. The default storage driver for version 19.03.01 is overlay2. The following conditions shall be met for the use of overlay2 storage driver:
1, Pause the original container and ...
Posted by elentz on Tue, 21 Apr 2020 11:06:05 +0200
apache Impala detailed installation
Reference article: apache Impala detailed installation (lying in the most complete pit)
Apache impala detailed installation
impala is an efficient sql query tool provided by cloudera, which provides real-time query results. The official test performance is 10 to 100 times faster than hive, and its sql query is even faster than spark sql. imp ...
Posted by deth4uall on Tue, 21 Apr 2020 09:18:04 +0200