Formal learning linux-14

1. Configure Samba service on the server The first step is to install samba service through yum warehouse. The second step is to configure shared resources. In the process of configuring shared resources, samba service uses password authentication mode by default. The password authentication mode is based on the account information databa ...

Posted by Rother2005 on Wed, 18 Mar 2020 00:01:28 -0700

Configuration method of Frp intranet penetration in raspberry pie

Material Science Raspberry pie A server with public IP One filed domain name (not required) Course Prepare corresponding procedures download Download address: https://github.com/fate/frp/releases ## Server side wget https://github.com/fatedier/frp/releases/download/v0.32.0/frp_0.32.0_linux_38 ...

Posted by gunabalans on Tue, 17 Mar 2020 00:42:56 -0700

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

shell script -- regular expression

Basic regularity ^word ##Search for the beginning of the ^ line in vi/vim starting with word word$ ##Search for the end of the $line in vi/vim that ends in word ^$ ##Blank line . ##Represents and can only represent any one character \ ##For example, \. It only represents ...

Posted by Timewell on Sun, 08 Mar 2020 21:01:00 -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

One article introduction Es, Logstash, Kibana

Preface What is elastic search? Since it's English, let's take a look at its literal meaning with the help of an elastic search. It can be divided into two independent words, elastic and search. In this case, we have no brain and have a wave. The explanation is as follows: From the perspective of a reasonable explanation, we can simply underst ...

Posted by trace on Fri, 06 Mar 2020 19:44:31 -0800

Django+Nginx+UWSGI deployment project

For projects written locally, the running results can only be viewed by ourselves and cannot be used by others. If you want to go online, you can deploy the project on the cloud server through Django+Nginx+UWSGI. At this time, other users only need to enter the URL address to use the project. Pre depl ...

Posted by pinxxx on Fri, 06 Mar 2020 01:05:24 -0800

Details of nginx reverse proxy, load balancing, and IP hash implementation

1. Implementation of nginx reverse proxy Three virtual machines are required: Virtual machine ip function server1 172.25.1.1 reverse proxy server (build nginx) server2 172.25.1.2 backend server server3 172.25.1.3 back end server (1) Making soft links for nginx ln -s /usr/local/nginx/sbin/ng ...

Posted by Drezard on Thu, 05 Mar 2020 23:59:04 -0800

open virtual private network

Service concept: Virtual private network, in fact, is to open up a virtual private line in the network Application classification: 1. Host remote access * * * service 2. Services between enterprise networks 3. Services between IDC rooms of Internet companies Transmission data protocol mode: Establishmen ...

Posted by derezzz on Wed, 04 Mar 2020 04:20:08 -0800

docker deploy redis cluster cluster

Environment preparation: CentOS7 Three virtual machines: because the redis cluster is highly available, six nodes are configured here. Two nodes are deployed for each. ip and port are respectively: 192.168.1.103:6379 192.168.1.103:6380 192.168.1.106:6379 192.168.1.106:6380 192.168.1.1076379 19 ...

Posted by ozzthegod on Tue, 03 Mar 2020 01:43:37 -0800