Linux server build project running environment

1. Server configuration 1. Reset the server password After purchasing a server (take Alibaba cloud as an example), a service will be generated in the server list. Click the server to enter server management (the interface may be different for different Linux versions). The default server initialization password is empty, so you need to set a ...

Posted by bogeyman on Wed, 09 Mar 2022 08:54:08 +0100

Detailed construction steps of Spring Boot project? java version of SpringCloud+SpringBoot+uniapp+vue b2b2c microservice mall microservice e-commerce live broadcast with goods source code

In Spring Tools 4 for Eclipse, select File - > New - > Maven Project, and then add relevant information in the interface as shown in the figure. <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>2.0.6.RELEASE</version&g ...

Posted by webent on Tue, 08 Mar 2022 03:15:37 +0100

Gitlab+maven+jenkins integrated release micro project (test environment)

1, Premise: Prepare three servers: 1.Gitlab: IP 192.168.83.140 2.Jenkins+maven: IP 192.168.83.141 3.Tomcat: IP 192.168.83.142 Three servers turn off the firewall: systemctl stop filewalld setenforce 0 2, Gitlab installation 192.168.83.140 1. Deploy docker (1) Install docker using yum or up2date yum -y install docker (2) Start docker ...

Posted by pvolpe1 on Tue, 08 Mar 2022 01:06:45 +0100

Use CentOS + finalshell + node JS + MySQL + git + gitee + Tomcat + nginx + domain name resolution to build a simple website tutorial

catalogue 1, Purchase and installation of server 2, Download of required software 2.1. Final shell download and installation 2.2,Node.js 2.3,MySQL 2.4,JDK 2.5,Tomcat 2.6,Nginx 2.7,Git 3, Node JS installation and configuration 4, Installation and configuration of Git and gitee 5, Tomcat installation and configuration 6, Installation ...

Posted by SnaD on Mon, 07 Mar 2022 17:34:50 +0100

Memory overflow caused by setting maxHttpHeaderSize too large

1, Production crime scene and troubleshooting process At 22:46:06 p.m. on March 23, the front service hung up and gave an alarm. Check the system log: You can see the stack overflow.   I guess it's related to a new configuration in the afternoon: server.maxHttpHeaderSize: 10240000 (roll back the image and resume production...)   Guess ...

Posted by mmitdnn on Mon, 07 Mar 2022 15:31:50 +0100

Linux server-side application installation

Install JDK Uninstall the JDK pre installed in the system. Linux comes with java, but it cannot be compiled without javac, so it needs to be uninstalled and reinstalled rpm -qa | grep openjdk Perform uninstall. Use -- nodeps to ignore dependencies during uninstall [root@localhost ~]# rpm -e --nodeps java-1.8.0-openjdk-headless-1.8.0.161-2. ...

Posted by PHP-Editors.com on Mon, 07 Mar 2022 03:28:14 +0100

Best practice of Jmeter: BeahShell Server

1. Introduction Here are the official documents The BeanShell interpreter has a very useful feature - it can act as a server, which is accessible by telnet or http. 2. Use Using BeahShell Server, you can dynamically change the running parameters, such as the number of threads and interval time, during the running of the test plan Scen ...

Posted by codects on Sat, 05 Mar 2022 02:44:06 +0100

IDEA+Java+JSP+Mysql+Tomcat to realize Web pet information management system

catalogue 1, System introduction 1. Development environment 2. Technical selection 3. System functions 4. Database files 5. System screenshot 2, System display 1. Log in to the system 2. System home page 3. New pets​ 4. Modify pets 3, Partial code AdminDaoImpl PetDaoImpl pet-add.jsp pet-add-do.jsp pet-update.jsp pet-update-d ...

Posted by webnick on Thu, 03 Mar 2022 10:47:14 +0100

Detailed explanation of web layer filter in mvc

web layer Filter Three technologies involved in the Web core Servlet: server applet small program on the server side (mainly dealing with the part of request response) Filter: filter, filter: leave the content you need and eliminate the unwanted content Listener: listener summary Need to configure web XML (key) filter creation steps Cre ...

Posted by patnet2004 on Wed, 23 Feb 2022 11:22:40 +0100

Several Tomcat performance optimization directions

Open Tomcat management interface Modify Tomcat \ conf \ Tomcat users XML add user <role rolename="manager"/> <role rolename="manager-gui"/> <role rolename="admin"/> <role rolename="admin-gui"/> <user username="tomcat" password="tomcat" roles="admin-gui,admin,manager-gui,manager"/> Note: Tomcat9 also needs t ...

Posted by HostingTrade on Tue, 22 Feb 2022 02:38:49 +0100