LAMP yum installation - Centos 7
Centos 7 yum install LAMP
Author: Yan Tao
E-mail: coderyantao@qq.com
Note: the experimental environment is virtual machine, selinux and firewalld have been shut down
Official Apache 2.4 documentation https://httpd.apache.org/docs/2.4/
#View port
[root@localhost ~]# firewall-cmd --query-port=80/tcp
no
...
Posted by Linjon on Sun, 21 Jun 2020 03:01:40 -0700
Install python3 in centos7
1. Install the corresponding compilation tools
In the root user (do not use ordinary users, trouble), all copy and paste in the past, a one-time installation
yum -y groupinstall "Development tools"
yum -y install zlib-devel bzip2-devel openssl-devel ncurses-devel sqlite-devel readline-devel tk-devel gdbm-devel db4-devel libpcap-devel xz-devel ...
Posted by guido88 on Thu, 18 Jun 2020 20:12:07 -0700
Enterprise level automation code release -- Git foundation and introduction
About Git
Git is a distributed version control system
git vs SVN
project
GIT
SVN
operation
Complex concept, many orders, not easy to use
Easy to operate
Branch price
Cheap branch
Expensive branches
Code management
Distributed management
Centralized management
preservation
Save the full f ...
Posted by trixiesirisheyes on Tue, 16 Jun 2020 19:42:56 -0700
Configure and deploy ISCSI shared storage
Install ISCSI server side
1. Install ISCSI server side
1) Install dependencies
[root@centos01 ~]# yum -y install sg3_utils
2) Install dependent tools
[root@centos01 ~]# rpm -ivh /usr/src/perl-Config-General-2.61-1.el7.noarch.rpm
3) Install ISCSI server
[root@centos01 ~]# rpm -ivh /usr/src/scsi-target- ...
Posted by powerpants on Sun, 07 Jun 2020 20:49:08 -0700
Deployment and simple description of Kubernates + doker
Related links:
Introduction: https://www.cnblogs.com/xkops/p/6165565.html
Construction: https://www.cnblogs.com/xkops/p/6169034.html
What is k8s?
It can be understood as follows: k8s full name: Kubernetes, which can be seen as a distributed system support platform.
Why do w ...
Posted by aidude111 on Sun, 07 Jun 2020 20:22:19 -0700
Deployment and application of puppet
brief introduction
Puppet is a centralized configuration management system for Linux, Unix and windows platforms. It uses its own puppet description language to manage configuration files, users, cron tasks, software packages, system services, etc. These system entities are called resources by puppet. The design goal of puppet is to simplify t ...
Posted by nareshrevoori on Fri, 05 Jun 2020 03:36:06 -0700
Install Dokcer and set NTP based on alicloud agent
Recently, you need to install the dokcer environment on CentOS 7, recording how to implement it based on Alibaba cloud agent.
1. Replace CentOS image
(1) Back up the original image
mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup
(2) Download new CentOS-Base.repo
#CentOS7 only
wget -O /etc/yum.repos.d/CentOS-Base.r ...
Posted by xiao on Thu, 04 Jun 2020 10:16:51 -0700
How to install all dependent packages offline
When we deploy something in an environment without public network, it is often a headache, because we may need a variety of dependency packages, which also have many dependencies. If we don't package and download all the dependency packages at one time, we can understand what Russian dolls are in the process of downloading..
1, os dependency pa ...
Posted by chacha102 on Thu, 04 Jun 2020 05:19:28 -0700
Open VPN is easy to help you realize!
preface:
In view of the need for home-based work during the epidemic, remote work is necessary. At present, the simplest way is to realize it through the direct port mapping of the company's route, but there are inevitably security risks, For this reason, the editor temporarily decided to build openvpn to realize this function. Speaking of ope ...
Posted by danwatt on Wed, 03 Jun 2020 22:06:39 -0700
iscsi server installation and configuration
Installation and configuration of iscsi server
1, Principle
ISCSI (Internet small computer system interface)
It supports sending commands from the client to the storage device on the remote server through ip. The default port is 3260/tcp.
1. iscsi initiator: the client
2. iscsi target: remote shared disk provided b ...
Posted by jrobles on Wed, 03 Jun 2020 09:52:01 -0700