Centos6 install openvpn use easy-rsa 3.0 certificate authentication

  Install openvpn yum install -y epel-release yum install -y openvpn easy-rsa openssl openssl-devel lzo lzo-devel pam pam-devel automake pkgconfig After the above command is executed, there will be a directory of / etc/openvpn, where we usually put configuration files. 1. View the openvpn version: [root@openvpn ~]# openvpn --version |h ...

Posted by LordMalek on Sun, 02 Feb 2020 08:50:48 +0100

Reading yaml file with linux shell

1, Installing python3.7.0 on Linux centos 6 / 7, the default installation of centos system is python2. X (in fact, I'm centos 6.5, and centos default installation of python2.6.6). Version x is different according to different versions of the system. You can view the python version of the system throug ...

Posted by techcone on Thu, 16 Jan 2020 06:30:04 +0100

Build Nginx Server and Deep Optimization

1. Introduction to NginxNginx is developed for performance optimization. Its greatest advantage is its stability, low system resource consumption, and high processing power for http concurrent connections. A single physical server can support 20,000-50,000 concurrent requests. This is why a large number of enterprises providing services such a ...

Posted by Slip on Mon, 06 Jan 2020 08:21:31 +0100

Linux basic learning LNMP environment construction

LNMP environment building LNMP dynamic website deployment architecture is a dynamic website system solution composed of Linux+Nginx+Mysql+PHP components, which is free, efficient, extensible and low resource consumption LNMP dynamic website architecture yum install -y apr* autoconf automake bison bzip2 bzip2* compat* ...

Posted by fris on Wed, 01 Jan 2020 18:38:35 +0100

Error in pyenv installing python3.7.0 under Mac OS 10.14

Under Mac OS 10.14, when pyenv is used to install Python 3.7.0, an error is reported, as follows: xwszt@Linxyz:~$ pyenv install 3.7.0 python-build: use openssl from homebrew python-build: use readline from homebrew Downloading Python-3.7.0.tar.xz... -> https://www.python.org/ftp/python/3.7.0/Python-3.7.0.tar.xz Installing Python-3.7.0. ...

Posted by wscreate on Mon, 16 Dec 2019 17:27:06 +0100

Linux password generator

Now the application is more and more, often need to enter password, some have no requirements for the robustness of password, some need case, special characters, numbers, at least how many bits, etc., can't think of a better password. Fortunately, in Linux system, we have many ways to generate the password required by symbols. It ...

Posted by ewillms on Tue, 10 Dec 2019 09:42:40 +0100

Navicat Premium 12.0.28(mac version) cracking

1,Download cracked files 2. Decompress the file After decompression, there will be a Navicat keygen MAC folder, in which there are two folders: Navicat keygen and Navicat Patcher 3. Compiled documents openssl needs to be installed before compilation. If homebrew is installed, openssl can be installed through brew install op ...

Posted by lukegw on Sun, 08 Dec 2019 02:59:09 +0100

Reverse agent software ngrok

Reverse agent software: ngrok 1.7 (not open source after 2.0)Function: through the construction of ngrok intranet penetration server, you can realize the localization of web server, tcp, udp forwarding, simply speaking, you can make your local serviceExposed on the Internet, accessible through the InternetEnvironment: CentOS Linux release 7.4. ...

Posted by tex1820 on Mon, 02 Dec 2019 12:50:36 +0100

CA authentication server and https service

How to build an enterprise CA certificate server? Define system environment: CentOS 7.4 ca.com     192.168.80.181   openssl* mail.com   192.168.80.182  dovecot* client.com  192.168.80.183 mutt* Modify three host names: ①hostnamectl set-hostname    xx.com  exit logout Reconnect ② vi /etc/hosts    192.168.80.181 ca.com   192.168.80.182 mai ...

Posted by lewis987 on Sun, 01 Dec 2019 13:40:19 +0100

apache, nginx configure openssl self signing certificate

1. Generate private key Generate rsa private key, des3 algorithm, 2048 bit strength. server.key is the file name of the secret key. You need to provide a password of at least 4 digits. [root@localhost ~]# openssl genrsa -des3 -out server.key 2048 Generating RSA private key, 2048 bit long modulus ................................................ ...

Posted by beginPHP on Sat, 30 Nov 2019 06:05:48 +0100