Lightweight and low intrusion online construction, automatic deployment, daily operation and maintenance, project monitoring software

Lightweight and low intrusion online construction, automatic deployment, daily operation and maintenance, project monitoring software

2022-12-12 0 755
Resource Number 49637 Last Updated 2025-02-21
¥ 0USD Upgrade VIP
Download Now Matters needing attention
Can't download? Please contact customer service to submit a link error!
Value-added Service: Installation Guide Environment Configuration Secondary Development Template Modification Source Code Installation

This issue recommends a lightweight project maintenance software – Jpom.

Lightweight and low intrusion online construction, automatic deployment, daily operation and maintenance, project monitoring software插图

Do you have the following pain points in daily development?

  • There are no dedicated operations and maintenance personnel in the team, and developers still need to do operations and maintenance work, which requires them to manually build and deploy projects.
  • Different projects have different build and deployment commands.
  • There is a need to package multiple environments such as development, testing, and production.
  • It is necessary to monitor the operational status of multiple projects simultaneously.
  • Need to download SSH tool to remotely connect to the server.
  • Need to download FTP tool to transfer files to the server.
  • It is inconvenient to synchronize account and password between different computers when using multiple servers.
  • I want to use some automation tools, but the requirements for server performance are too high and the setup is too complicated.
  • I have a personalized need for automated chemical engineering and want to modify projects myself, but the tools on the market are too complex.

If it is a distributed project, the above steps are even more cumbersome.

Let Jpom help you solve these pain points! However, these are only the most fundamental functions solved by Jpom.

function characteristics

  • Node management: Cluster nodes, unified management of multi node projects, achieving fast one click distribution of project files
  • Project management: Create, start, stop, real-time view project console logs, manage project files
  • SSH panel: Manage SSH in the browser for easy daily operation and maintenance, record command execution records
  • Online Construction: Quickly build project packages by pulling GIT and SVN repositories online, without the need for manual uploading by operations personnel
  • Project monitoring: Real time monitoring of the current status of the project, automatic triggering of emails in case of abnormalities, and sending out alarm notifications by DingTalk
  • User management: Multi user management, enabling different permissions for different users, and improving the recording of user operations and management logs
  • Whitelist mode: To ensure data security and prevent users from casually viewing or deleting files, configure a secure whitelist path.
  • DOCKER management: Online management of images, containers, and SWARM clusters. Interface based management DOCKER
  • NGINX configuration and SSL certificate: Quickly and conveniently modify NGINX configuration files online, and manage SSL certificates uniformly

Lightweight and low intrusion online construction, automatic deployment, daily operation and maintenance, project monitoring software插图1

Install Jpom

Jpom supports multiple installation methods to meet the personalized needs of different users. You only need to choose one installation method.

  • Method 1: One click installation (Linux)

One click installation of server

Attention: The installation directory is located in the directory where the command is executed!

Special reminder: When installing with one click, be careful not to execute commands in the same directory, that is, the server and agent cannot be installed in the same directory!

If you need to modify the path for storing server data and logs, please modify the jpom.ath configuration property in the extConfig. yml file.

#Only install the server
yum install -y wget && \
	wget -O install.sh https://dromara.gitee.io/jpom/docs/install.sh && \
	bash install.sh Server

#Only install the server, backup download address
yum install -y wget && \
	wget -O install.sh https://jpom-docs.keepbx.cn/docs/install.sh && \
	bash install.sh Server

#Install the server and JDK environment
yum install -y wget && \
	wget -O install.sh https://dromara.gitee.io/jpom/docs/install.sh && \
	bash install.sh Server jdk

#Install the server and JDK/Maven environment
yum install -y wget && \
	wget -O install.sh https://dromara.gitee.io/jpom/docs/install.sh && \
	bash install.sh Server jdk+mvn

# ubuntu
apt install -y wget && \
	wget -O install.sh https://dromara.gitee.io/jpom/docs/install.sh && \
	bash install.sh Server jdk

After successful startup, the server’s port is 2122, which can be accessed through http://127.0.0.1:2122/ Access the management page (if not accessed locally, you need to replace 127.0.0.1 with the IP address of the server you installed).

If unable to access the management system, execute the command systemctl status firewalld to check if the firewall is turned on. If you see a green display of Active in the status bar: Active (running) requires the release of port 2122.

#Port 2122 of the release management system
firewall-cmd --add-port=2122/tcp --permanent
#Restarting the firewall will take effect
firewall-cmd --reload

If the port cannot be accessed even after being released on the operating system and you are using a cloud server, please check whether the security group rules have released port 2122 in the cloud server backend.

be careful: There are various types of firewalls in Linux systems, such as Firewall, Iptables, SELinx, etc. When checking the firewall configuration, it is necessary to check all of them.

One click installation of plugin end

If the server for installing the server also needs to be managed, the plugin side also needs to be installed on the server (both the server and plugin side can be installed on the same server)

Special reminder: When installing with one click, be careful not to execute commands in the same directory, that is, the server and agent cannot be installed in the same directory!

If you need to modify the path for storing data and logs on the plugin side, please modify the jpom.ath configuration property in the extConfig. yml file.

#Only install the plugin end
yum install -y wget && \
	wget -O install.sh https://dromara.gitee.io/jpom/docs/install.sh && \
	bash install.sh Agent

#Only install the plugin end, backup download address
yum install -y wget && \
	wget -O install.sh https://jpom-docs.keepbx.cn/docs/install.sh && \
	bash install.sh Agent

#Install plugin side and JDK environment
yum install -y wget && \
	wget -O install.sh https://dromara.gitee.io/jpom/docs/install.sh && \
	bash install.sh Agent jdk

# ubuntu
apt install -y wget && \
	wget -O install.sh https://dromara.gitee.io/jpom/docs/install.sh && \
	bash install.sh Agent jdk

After successful startup, the port on the plugin side is 2123, which is provided to the server for use.

  • Method 2: Containerized installation

Use mounting method to store relevant data (compatibility issues may occur in some environments)

docker pull jpomdocker/jpom
mkdir -p /home/jpom-server/log
mkdir -p /home/jpom-server/data
docker run -d -p 2122:2122 \
--name jpom-server \
-v /home/jpom-server/log:/usr/local/jpom-server/log \
-v /home/jpom-server/data:/usr/local/jpom-server/data \
jpomdocker/jpom

Use container volume to store relevant data

docker pull jpomdocker/jpom
docker volume create jpom-server-data
docker volume create jpom-server-log
docker run -d -p 2122:2122 \
--name jpom-server \
-v jpom-server-data:/usr/local/jpom-server/data \
-v jpom-server-log:/usr/local/jpom-server/log \
jpomdocker/jpom

Containerized installation is only available on the server-side version. Due to the isolation between the container and the host environment, many functions on the plugin side cannot be used properly, so containerization on the plugin side is of little significance.

Please refer to the documentation for installing Docker, configuring images, automatic startup, and finding the directory where the installation is located

https://jpom.io/pages/b63dc5/

Manage Jpom commands

Windows system uses bat script files:

#Server management script, follow the panel prompts to input operations
Server.bat

#Plugin side management script, follow the panel prompts to input operations
Agent.bat

After executing the startup in the Windows system, it is necessary to follow up on the startup status based on the logs. If garbled characters appear, please check or modify the encoding format. The recommended bat encoding format for the Windows system is GB2312

Using sh script files in Linux systems:

#Server side
Server.sh start     Start Jpom server
Server.sh stop      Stop Jpom server
Server.sh restart   Restart Jpom server
Server.sh status    Check the running status of Jpom server
Server.sh create    Create an application service (jpom server) for Jpom server

#Plugin end
Agent.sh start     Launch Jpom plugin terminal
Agent.sh stop      Stop Jpom plugin end
Agent.sh restart   Restart Jpom plugin end
Agent.sh status    Check the running status of Jpom plugin
Agent.sh create    Create a Jpom plugin application service (jpom agent)

demonstrate

Lightweight and low intrusion online construction, automatic deployment, daily operation and maintenance, project monitoring software插图2

—END—

Open source protocol:MIT

资源下载此资源为免费资源立即下载
Telegram:@John_Software

Disclaimer: This article is published by a third party and represents the views of the author only and has nothing to do with this website. This site does not make any guarantee or commitment to the authenticity, completeness and timeliness of this article and all or part of its content, please readers for reference only, and please verify the relevant content. The publication or republication of articles by this website for the purpose of conveying more information does not mean that it endorses its views or confirms its description, nor does it mean that this website is responsible for its authenticity.

Ictcoder Free source code Lightweight and low intrusion online construction, automatic deployment, daily operation and maintenance, project monitoring software https://ictcoder.com/kyym/lightweight-and-low-intrusion-online-construction-automatic-deployment-daily-operation-and-maintenance.html

Qizhuwang Source Code Trading Platform

Q&A
  • 1, automatic: after taking the photo, click the (download) link to download; 2. Manual: After taking the photo, contact the seller to issue it or contact the official to find the developer to ship.
View details
  • 1, the default transaction cycle of the source code: manual delivery of goods for 1-3 days, and the user payment amount will enter the platform guarantee until the completion of the transaction or 3-7 days can be issued, in case of disputes indefinitely extend the collection amount until the dispute is resolved or refunded!
View details
  • 1. Heptalon will permanently archive the process of trading between the two parties and the snapshots of the traded goods to ensure that the transaction is true, effective and safe! 2, Seven PAWS can not guarantee such as "permanent package update", "permanent technical support" and other similar transactions after the merchant commitment, please identify the buyer; 3, in the source code at the same time there is a website demonstration and picture demonstration, and the site is inconsistent with the diagram, the default according to the diagram as the dispute evaluation basis (except for special statements or agreement); 4, in the absence of "no legitimate basis for refund", the commodity written "once sold, no support for refund" and other similar statements, shall be deemed invalid; 5, before the shooting, the transaction content agreed by the two parties on QQ can also be the basis for dispute judgment (agreement and description of the conflict, the agreement shall prevail); 6, because the chat record can be used as the basis for dispute judgment, so when the two sides contact, only communicate with the other party on the QQ and mobile phone number left on the systemhere, in case the other party does not recognize self-commitment. 7, although the probability of disputes is very small, but be sure to retain such important information as chat records, mobile phone messages, etc., in case of disputes, it is convenient for seven PAWS to intervene in rapid processing.
View details
  • 1. As a third-party intermediary platform, Qichou protects the security of the transaction and the rights and interests of both buyers and sellers according to the transaction contract (commodity description, content agreed before the transaction); 2, non-platform online trading projects, any consequences have nothing to do with mutual site; No matter the seller for any reason to require offline transactions, please contact the management report.
View details

Related Article

make a comment
No comments available at the moment
Official customer service team

To solve your worries - 24 hours online professional service