jenkins automated deployment (node server)

1. Nginx installation and startup If we want to install a software package, we can do the following: # Search for packages dnf search package-name # View package information dnf info package-name # Install packages dnf install package-name Deployment will use nginx, so you need to install nginx first: dnf install nginx Start nginx: # […]

lang-segment-anything local deployment

1. Introduction Code address: https://github.com/luca-medeiros/lang-segment-anything https://github.com/IDEA-Research/GroundingDINO lang-segment-anything is an algorithm for segmenting objects in images based on language text prompts. It combines the two major algorithms of GroundingDINO and segment-anything. It has a good application scenario in semi-automatic annotation. It can classify objects without training. Segmentation is performed, that is, matching of text to image […]

RabbitMQ cluster deployment

Table of Contents 1.Environment preparation 1.1 Turn off the firewall and selinux 1.2 Local analysis 1.3 Install rabbitmq software 1.4 Start the service 1.5Create user 1.6 Enable user remote login 2. Start deploying the cluster (operate on all three machines) 2.1 First create the data storage directory and log storage directory 2.2 Copy erlang.cookie 2.3 […]

Design and implementation of fitness website system based on Java (source code + lw + deployment documents + explanation, etc.)

Article directory Preface Specific implementation screenshots Paper reference Detailed video demonstration why choose me own website My own small program (Xiao Cai coding) Code reference Database reference Source code acquisition Foreword Blogger Introduction: ?100,000+ fans across the entire network, CSDN guest author, blog expert, CSDN Rising Star Program mentor, high-quality creator in the full stack […]

Construction and deployment of the Xuezhisi project and solutions to the failure to build the jar package

Introduction to the Learning System Deploy java environment Install maven Install node.js front-end packaging tool command npm Git command to get source code Install and configure mysql Front-end packaging Pack jar package Service online !!!Solution to failure of jar package creation Introduction to the Learning System The Xuezhisi open source examination system is a java […]

Oracle11g ADG deployment

Zero, environment Main library: rhel 6.5 oracle 11.2.0.3 ip 192.168.18.66 ora11g Standby database: centos 7.9 orale 11.2.0.3 ip 192,168.18.77 ora11g_std 2. Main library installation (ignore this step in production environment) 1. Create users and groups [root@ora11g soft]# groupadd oinstall [root@ora11g soft]# groupadd dba [root@ora11g soft]# useradd -g oinstall -G dba oracle [root@ora11g soft]# passwd oracle […]

RabbitMQ related deployment

1. Common cluster preparation environment Note that these three servers are all connected, and the RabbitMQ cluster nodes must be in the same segment. If they are connected across domains, the effect will be worse. 10.36.192.150 rabbitmq-1 10.36.192.151 rabbitmq-2 10.36.192.152 rabbitmq-3 All three servers have their firewalls and selinux turned off [root@rabbitmq-1 ~]#systemctl stop firewalld […]

Construction and deployment of rabbitmq cluster

Preparation: Three clean servers 192.168.52.156 192.168.52.157 192.168.52.158 These three servers are all connected, and the RabbitMQ cluster nodes must be on the same segment. If they are connected across domains, the effect will be worse. Turn off firewall and selinux 1. Install and deploy rabbitmq on three machines Install dependencies [root@rabbitmq-1 ~]# yum install -y […]

Minio distributed cluster deployment (4 nodes 4 clusters)

Minio distributed cluster deployment (4 nodes 4 clusters) Centos7.6 Minio Minio distributed cluster deployment (4 nodes 4 clusters) 1.Environment preparation 2-Add new disk and mount it 3. Install minio cluster 4. Configure systemctl system service 5. Login page testing 1. Environment preparation 4 servers with multiple hard drives Node data directory (cannot be under /root) […]

Istio implements canary deployment of Kubernetes cluster applications

Istio implements canary deployment of Kubernetes cluster applications Istio is an open source service mesh platform that provides a way to connect, protect, control, and observe microservices. As a service mesh, Istio provides network proxies between the different services of an application. These proxies are collectively called “sidecars.” These sidecars can control all communication to […]