HTTP and HTTPS website Linux environment host configuration examples

Table of Contents Foreword: 1. Based on the domain name www.openlab.com, you can access the website and the content is welcome to openlab! ! ! analyze: Related configuration: 2. Create three website directories for the company to display student information, teaching materials and payment websites respectively. Based on www.openlab.com/student website to access student information, www.openlab.com/data […]

SVN server construction in Linux environment and integration with intranet penetration to achieve remote connection

Article directory Preface 1. Install SVN service on Ubuntu 2. Modify configuration file 2.1 Modify the svnserve.conf file 2.2 Modify passwd file 2.3 Modify authz file 3. Start the svn service 4. Intranet penetration 4.1 Install cpolar intranet penetration 4.2 Create tunnel mapping local port 5. Test public network access 6. Configure a fixed public […]

miniconda configuration manual – basic configuration, initialization, management of virtual environments, and package operations

Table of Contents Preface The first step is to install the software. This step cannot be skipped. The second step is to configure the basic miniconda. This step mainly involves modifying the “.condarc” file. The third step is miniconda initialization. This step cannot be skipped. Step 4. Manage the virtual environment Step 5: Use the […]

Springboot+jpa simply builds the environment

1. Packages that may be needed: <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> <dependency> <groupId>jakarta.persistence</groupId> <artifactId>jakarta.persistence-api</artifactId> <version>2.2.3</version> </dependency> <!– jap configuration –> <dependency> <groupId>org.springframework.data</groupId> <artifactId>spring-data-jpa</artifactId> <version>2.3.2.RELEASE</version> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-jpa</artifactId> </dependency> 2. Environment preparation jdk 8 IDEA 2020 mysql 8 3. Simple use 1. Sorting of springboot JPA built-in sorting and paging: Sort sort =Sort.by(Sort.Direction.ASC,”id”); //Due to version […]

Upgrade from node 6.9.1 to node 8.16.2+ ionic 3.19.0 + cordova7.1.0 environment configuration

node 8.16.2 + ionic 3.19.0 + cordova7.1.0 environment configuration background implement (1) Install ionic (2) Install cordova (3) Run the project ionic serve 1. Follow the prompts to reconstruct node-sass for node 8. 2. An error occurs 3. Follow the prompts to install vcbuild: run as administrator and open the command line tool. Run in […]

“Amazon Cloud Technology Product Review” event call for papers | Quickly build a docker environment based on aws ec2

Authorization statement: This article authorizes the official Amazon Cloud Technology article to forward and rewrite the rights, including but not limited to Amazon Cloud Technology official channels such as Developer Centre, Zhihu, self-media platforms, third-party developer media, etc. Foreword We sometimes encountered such a problem in our previous development: after developing a function locally, it […]

MacBook M2 uses Xcode to configure the OpenCV-C++ environment

To install OpenCV implemented in C++ on MacBook, you can choose between Homebrew and source code installation. Here I chose source code installation. Choose source code installation. You must use other methods to install cmake, because I still Use anaconda to create an independent environment and configure the Python-OpenCV environment, so I used conda install […]