Formal learning linux-13
1.vsftpd main configuration file
The main configuration file (/ etc/vsftpd/vsftpd.conf), which contains a lot of annotation information, has little actual parameter information.
[root@linuxprobe ~]# mv /etc/vsftpd/vsftpd.conf /etc/vsftpd/vsftpd.conf_bak
[root@linuxprobe ~]# grep -v "#" /etc/vsftpd/vsftpd.conf_bak > /etc/vsftpd/vsftpd.conf ...
Posted by Fataqui on Sat, 14 Mar 2020 21:10:22 -0700
Build your own intranet penetration
Preface
Hello everyone, I am a different technology house. I make a little progress every day and experience a different life. What we bring today is to use frp to build our own intranet penetration, which is convenient for debugging in our daily development. At the same time, frp is open-source and free, only one cloud server is needed to bui ...
Posted by jimdelong on Sun, 08 Mar 2020 04:04:42 -0700
Rsyslog return of the king
Rsyslog
Everyone in the company is following the trend of learning es's log scheme. I've been struggling from three years ago to now. Filebeat + kafka + logstash+ es, at that time, I also wanted to build another storm. Later, I found that just a little log volume and a hammer kafka were used. Many of the tools that had been used were damaged by ...
Posted by lucie on Thu, 05 Mar 2020 23:02:10 -0800
Artifactory & GitLab CI Continuous Integration Practice
GitLab CI supports the creation of multiple builds and evaluates whether each code submission passes tests and impacts on your product.During the construction process, a large number of binary files will be generated, and if these files are not properly managed on a large scale, it will lead to binary file management confusion.To overcome this ...
Posted by FrobinRobin on Wed, 19 Feb 2020 10:20:17 -0800
linux foundation week 6
1. Self built yum warehouse, network source and local source respectively
Steps to create yum warehouse: 1) mount Centos system CD to a directory or copy network resources to a directory
2) find the repodata directory, which is located in the upper directory of yum warehouse address (network sharing is required if creating a network warehouse ...
Posted by Nay on Wed, 19 Feb 2020 07:36:39 -0800
CentOS7 installation and operation Docker
1. Confirm kernel version
CentOS7 kernel is generally 3.10, which meets the installation conditions (> = 3.8)
uname -r
//perhaps
uname -a
2. update pack
yum unpdate -y
This process may be a little slow. If there is a higher version of kernel, it will update back to 3.10
View the current default kernel
grub2-editenv list
Changed to newer k ...
Posted by jameslloyd on Wed, 19 Feb 2020 06:38:38 -0800
Under Kubernetes cluster deployment
k8s general environmental plan
Environmental equipment
Two master nodes, two node nodes and two node nodes are installed with nginx for load balancing, failover and floating address vip
Deployment process
Turn off firewall and security functions
systemctl stop firewalld.servicesetenforce 0
Copy the kubernetes directory to master2 (last exp ...
Posted by pullaratt on Mon, 10 Feb 2020 04:32:39 -0800
RHCE exam summary (continuously updated)
Environmental preparation
1. Configure YUM software warehouse
server and desktop machine do the same operation!!!!
# // server:
$ vim /etc/yum.repos.d/base.repo
[rhce]
name = EX300
gpgcheck = 0
baseurl = http://classroom.example.com/content/rhel7.0/x86_64/dvd/
### Clear the previous software warehouse cache
$ yum clean ...
Posted by iamyespee on Sun, 09 Feb 2020 03:55:34 -0800
samba configuration shared user home directory
1. Install samba first
sudo apt-get update
sudo apt-get install samba openssh-server
2. Edit Samba configuration file
sudo cp /etc/samba/smb.conf /etc/samba/smb.conf.bak
sudo vi /etc/samba/smb.conf
Find the [homes] item, which is commented out by default, cancel the comment, and then modify the specific content as follows:
#================== ...
Posted by digitalhuman on Sun, 12 Jan 2020 09:30:35 -0800
Making run Files from Local Sources
1. Use yum to download the necessary packages in a directory:
yum install --downloaddir ./ --downloadonly nvidia-detect
2. Making script files:
The script file needs unix format (only 0A line breaks, no 0D carriage return) and cannot be in window format.The last must be the end of 0A."Must be"######## End install.sh"before the ...
Posted by sangamon on Mon, 06 Jan 2020 18:09:06 -0800