首页
封存记忆
行动起来,活在当下
累计撰写
32
篇文章
累计创建
29
个标签
累计收到
0
条评论
栏目
目 录
CONTENT
以下是
服务器
相关的文章
2025-03-28
阿里Anolis OS 8.9龙蜥操作系统安装1panel
阿里Anolis OS 8.9龙蜥操作系统安装1panel 安装docker #1.更新系统 sudo dnf update -y #2.安装依赖包 sudo dnf install -y yum-utils device-mapper-persistent-data lvm2 #3.添加Docke
2025-03-28
11
0
0
服务器
2025-03-11
js网络时间校对
nginx配置 location /{ add_header Access-Control-Allow-Origin *; add_header Access-Control-Allow-Credentials true; add_header
2025-03-11
6
0
0
服务器
2025-03-05
端口规划
端口规划: 20000之内:宿主机使用 20000-60000:穿透使用 60000+: 临时机器使用 穿透规划: 30000-60000 集群->机器 ->服务 第一位:集群编码 3->第1集群 4->第2集群 5->第3集群 第二位:机器编码 0:预留临时使用编码 1-9 按顺
2025-03-05
2
0
0
服务器
2025-01-23
dlv工具的attach模式远程调试在运行中的服务
dlv工具的attach模式远程调试在运行中的服务 1.安装dlv工具 go install github.com/go-delve/delve/cmd/dlv@latest 2.远程服务器编译程序二进制文件 # -gcflags="all=-N -l"目的是去掉编译优化,方便调试 go bu
2025-01-23
6
0
0
服务器
2025-01-23
在centos上面自己生成证书的过程(.key和.pem
在centos上面自己生成证书的过程(.key和.pem) 1.生成私钥文件.key: openssl genrsa -out server.key 2048 这将生成一个名为example.com.key的2048位RSA私钥文件。 2.生成证书请求文件.csr: openssl req -ne
2025-01-23
9
0
0
服务器
2025-01-15
Nacos集群搭建
Docker Nacos集群搭建 1.拉取Nacos镜像 拉取时最好指定版本,在git查看相应版本:https://github.com/nacos-group/nacos-docker 拉取镜像: docker pull nacos/nacos-server:v2.4.3 2.配置mysql环
2025-01-15
19
0
0
服务器
2025-01-15
java 1.8安装
java1.8安装 1.查看java版本 java -version 2.下载jdk1.8版本文件(版本号:jdk-8u191-linux-x64) cd /opt wget https://mirrors.huaweicloud.com/java/jdk/8u202-b08/jdk-8u202-
2025-01-15
10
0
0
服务器
2025-01-03
screen
linux Screen命令使用详解 背景 系统管理员经常需要SSH或者telent远程登录到Linux 服务器,经常运行一些需要很长时间才能完成的任务,比如系统备份、ftp传输等等。通常情况下我们都是为每一个这样的任务开一个远程终端窗口,因为它们执行的时间太长了。必须等待它们执行完毕,在此期间不能
2025-01-03
6
0
0
服务器
2025-01-02
git 简单使用
git常用命令 1.设置用户名和邮箱 # Set global username git config --global user.name "your_username" # Set global email git config --global user.email "your_email@
2025-01-02
8
0
0
服务器
2025-01-02
github加速
github加速 docker run -d --name="gh-proxy-py" -p 50000:80 --restart=always hunsh/gh-proxy-py:latest 假设你的镜像站的域名是gh.your.site,那么在Github内容的URL前加上 https://
2025-01-02
13
0
0
服务器
1
2
3