background picture of the home page

Dockerfile构建ruoyi后端文件

这里采用多阶段构建,先用Maven构建项目,然后将构建好的jar包放到jre运行环境中。 # Dockerfile # docker/backend/Dockerfile # Stage 1: Build the application using Maven # 选择一个包含 Maven 和

thumbnail of the cover of the post

Dockerfile构建ruoyi 前端文件

我们这里采用多阶段构建,先用nodejs构建vue项目,然后将静态文件交给nginx托管 # Stage 1: Build the Vue application # 选择一个 Node.js 镜像 (版本需与 ruoyi-ui 兼容, 查看 package.json 或咨询项目) FROM nod

thumbnail of the cover of the post

journalctl 日志查看工具介绍

1、介绍 journalctl 是一种用于查看、管理 Linux 系统日志的命令行工具,是 systemd 日志记录系统的一部分。journalctl 能够快速加载大量日志文件,并且支持多种过滤和查询方式。 systemd 是 Linux 系统的一个初始化系统,它负责启动和管理各种服务和进程。sys

thumbnail of the cover of the post

主流Linux操作系统各版本网卡配置方法汇总

本文主要分享CentOS/RHEL 系列 和 Debian/Ubuntu 系列 中各种版本下的网卡配置方式,并详细注释每个参数的作用,帮助你完全理解每种配置格式。 【温馨提示】国产系统麒麟V10,openEuler等都是基于Redhat系列开发的,网卡配置与其对应版本配置方法相同 1 、CentOS

thumbnail of the cover of the post

Windows OpenVPN同时连接多个VPN服务

日常开发中经常要切换vpn在不同的局域网作业,但是openvpn安装时只会默认添加一个TAP adapter,这就导致了如果有多个vpn server我们需要不停的切换vpn操作,非常麻烦,既然知道了原因,那么就容易解决了,只需要再次添加一个TAP adapter即可。 安装openvpn Open

thumbnail of the cover of the post

Harbor部署及实践攻略

1 概述 1.1 什么是harbor Harbor 是一个企业级的云原生容器镜像仓库,由 VMware 主导开发并贡献给 Cloud Native Computing Foundation (CNCF)。它通过为 Docker 镜像提供安全、高效的管理能力,帮助企业简化容器应用程序的交付流程。相比于

thumbnail of the cover of the post

使用Windows自带工具校验哈希值

cmd打开命令行窗口: 执行如下命令 CertUtil -hashfile C:\xxx.tar MD5 此命令不仅可以做MD5哈希算法校验,还支持其他的哈希算法,具体如下: CertUtil -has

thumbnail of the cover of the post

利用frp+openVPN实现异地组网--(二)

上一篇文章我们利用frp技术实现了内网穿透,这篇文章我们来介绍利用openvpn做异地组网。 1、openvpn异地组网 openvpn也是一个client-server技术,需要有客户端和服务端。服务端安装在公司服务器上面,我们可以通过服务端利用路由转发来访问公司局域网任意一台电脑。客户端安装在员

thumbnail of the cover of the post

利用frp+openVPN实现异地组网--(一)

我们在出差时可能需要访问公司的网络,这时候就需要VPN技术了。利用frp+openVPN技术,我们可以轻松访问公司的局域网服务。 下面介绍两部分服务,一个是frp内网穿透,一个是openvpn异地组网技术。 1、frp内网穿透 frp是一个典型的client-server结构,需要一台有公网ip的云

thumbnail of the cover of the post

Proxmox VE 添加监控

使用 proxmox-pve-exporter 监控 Proxmox VE 安装 proxmox-pve-exporter 这里我将 proxmox-pve-exporter 安装到单独的服务器,而不是 pve宿主机,这样可以通过一个 exporter 去监控多台 pve 主机,如果只有一台机器的话

thumbnail of the cover of the post