systemctl 命令

systemctl 是一个 systemd 工具,主要负责控制 systemd 系统和服务管理器。 systemd 是一个系统管理守护进程、工具和库的集合,用于取代 System V 初始进程。 systemd 的功能是用于集中管理和配置

OpenVPN 服务端配置

服务端开启一个证书或账户多人同时登录修改 openVPN 配置文件 server.conf , 内容如下 text port 1194 proto udp dev tun ca ca.crt cert server.crt key server.key # This file should be kept secret dh dh.pem server 10.8.0.0 255.255.255.0 ifconfig-pool-persist ipp.txt push "route 172.16.1.0 255.255.255.0" keepalive 10 120 cipher AES-256-CBC persist-key persist-tun status

Maven 多仓库配置

maven 多仓库配置需要在 profile 节点进行配置,配置方法如下: 编辑 maven 配置文件 settings.xml 添加如下配置 xml <?xml version="1.0" encoding="UTF-8"?> <settings xmlns="http://maven.apache.org/SETTINGS/1.2.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.2.0 https://maven.apache.org/xsd/settings-1.2.0.xsd"> <servers> <!-- 当我们仓库需要身份验证时可以在此配置身份验

Docker Compose 网络配置

Docker Compose 提供了一种方便的方式来配置网络,本文档将介绍 Docker Compose 的网络相关配置 Docker 官方文档: https://docs.docker.com/compose/compose-file/05-services/#network_mode https://docs.docker.com/compose/compose-file/06-networks 默认网络Docker Compose 默认会创建一个以 项目名_defaul

使用 Nexus3 部署 maven 私服

部署 nexus3使用容器方式部署 nexus3, docker 镜像站点 准备 docker-compose.yaml 文件 bash mkdir /opt/nexus3 cd /opt/nexus3 cat >docker-compose.yaml<<EOF version: '2.10.2' services: nexus3: image: sonatype/nexus3:3.42.0 container_name: nexus3 restart: always volumes: - ./data:/nexus-data ports: - 8081:8081 EOF 启动 nexus3 容器 bash # 由于 nexus3 容器用户 id 为 200, 我们