background picture of the home page

Hi,Friend

以技术为主流的博客系统

安装Node管理器Nvm

一:X86麒麟服务器 1. 直接克隆 Gitee 上的 nvm 仓库 # 删除残留文件(如果之前安装失败) rm -rf ~/.nvm # 从 Gitee 镜像克隆仓库 git clone https://gitee.com/mirrors/nvm.git ~/.nvm cd ~/.nvm git

thumbnail of the cover of the post

linux -kafkad搭建(docker)

以下是一个完整的、经过验证的 Kafka + ZooKeeper Docker Compose 配置(已解决权限问题并优化配置): services: zookeeper: image: confluentinc/cp-zookeeper:7.6.0 container_name

thumbnail of the cover of the post

PG-授权

一:授权表于指定用户 GRANT ALL PRIVILEGES ON 模式.表 TO 用户;

thumbnail of the cover of the post

linux-操作jar脚本

一:启动 #!/bin/bash # 设置端口和JAR包路径 PORT=7000 SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)" JAR_PATH="$SCRIPT_DIR/react-minio-spring-0.0.1-SNAPSHOT.jar" #

thumbnail of the cover of the post

linux-jdk多版本

一、检测是否有项目正在使用 JDK 1.8 1. 检查正在运行的 Java 进程 ps aux | grep java 观察输出:查看进程的启动命令中是否包含 jdk1.8 或旧版本的路径。

thumbnail of the cover of the post

Linux-迁移目录

MV rsync 1. 跨文件系统移动 # 使用rsync替代(完成后需手动删除源文件) rsync -av --progress /source/file /destination/ rm /source/file 2. 大文件移动 # 使用pv监控进度 pv /source/largefile

thumbnail of the cover of the post

VM-虚拟机域名解析失败问题处理

1.当kali,ping外网显示域名解析暂时失败时,调整网卡配置文件和DNS配置都无效时,可能是VM虚拟机软件的问题。 2.解决方法: 第一步 点击VM的编辑选项

thumbnail of the cover of the post

管理本地node版本

nvm操作命令详解 1. nvm的基本操作命令 nvm(Node Version Manager)是一个用于管理多个Node.js版本的工具。以下是nvm的一些基本操作命令: nvm install <version>:安装指定版本的Node.js。 nvm uninstall <vers

thumbnail of the cover of the post