Installing Nginx on Linux 1. Ubuntu 22.041.1 Installing12apt updateapt install nginx 1.2 Checking status1systemctl status nginx 1.3 Managing the Nginx Processstop1systemctl stop nginx start1systemctl start nginx restart1s 2022-02-13 #Linux #Nginx
Installing Nginx on Linux by make 1. Installing pre-dependencies1yum -y install pcre pcre-devel gcc zlib zlib-devel openssl openssl-devel 2. Installing Nginx1. Download1wget http://nginx.org/download/nginx-1.21.6.tar.gz 2. Unzip1tar 2022-02-13 #Linux #Nginx
Installing Tomcat on Linux 1. DownloadOfficial website:https://tomcat.apache.org/ For instance:https://tomcat.apache.org/download-80.cgi8.5.75Core -> tar.gz 2. Unzipcopy apache-tomcat-8.5.75.tar.gz to /usr/src Execute the un 2022-02-13 #Linux
How does CentOS 8 EOL switch sources ? Background InformationDec 31, 021 CentOS 8 EOL. According to community rules, the source address of CentOS 8 http://mirror.centos.org/centos/8/ has been removed, and the source of CentOS 8 has been re 2022-02-13 #Linux
CentOS 8 Network Configuration Set the Static IP address of CentOS 8 machine through TerminalView Network statusThe IP address can be configured in the CentOS 8 Operating system using the NIC(Network Interface Card) system files. T 2022-02-13 #Linux #CentOS 8
Where the application is deployed on the Linux server The rules are as follows:CODE: /usr/local/[Software Name]/[Version]/ PID: /usr/local/[Software Name]/[Version]/conf/[Software Name].pid or 2022-02-10 #Linux
Jenkins Remote Trigger Not Working with 403 or Requesting Login Problem DescriptionUse Trigger builds remotely. Github Webhooks: But not working normally Problem SolvedAccording to the prompt, it is found that you need to log in.So try to close the login. Manage J 2022-02-09 #Jenkins
Jenkins turns off cross-site request forgery protection in Docker Container 1. Open the terminal and enter the command to enter the docker container1docker exec -u root -it jenkins bash 2. Enter the command to edit the jenkins startup configuration file1vi /usr/local/bin/jen 2022-02-09 #Jenkins
Four ways to kill the specified process name in Linux The processName indicates the name of the process you want to operate. Method 1 1pkill processName Method 2 1killall processName Method 3 1kill -9 $(ps -ef|grep processName|grep -v grep|awk & 2022-02-08 #Linux
Jenkins Tutorial for Beginners 0. Foreword Offical Document Docker-Hub 1. Installing Jenkins To use the latest LTS: docker pull jenkins/jenkins:lts-jdk11 Create Volume Command: 1docker volume create jenkins_home Run Command: 1do 2022-02-08 #Jenkins