摘要:
环境: win10 vs2017 v141 1、下载 boost_1_70_0.zip. 2、以管理员方式打开 3、 bootstrap.bat 4、编译64位库 b2.exe stage --toolset=msvc-14.1 address-model=64 --stagedir="D:\App 阅读全文
摘要:
基础操作 1.0 Pod /* 获取命名空间 */ kubectl get namespace /* 创建命名空间 */ kubectl create ns test /* 删除命名空间 */ kubectl delete ns test /* 使用yml文件 */ kubectl apply -f 阅读全文
摘要:
Kuboard 搭建k8s 官网教程:https://kuboard.cn/ https://kuboard.cn/install/history-k8s/install-k8s-1.19.x.html 1.0 环境配置 # 修改 hostname hostnamectl set-hostname 阅读全文
摘要:
certbot certonly -》 选1 输入用邮箱 -》 A 同意 -》 Y -》 输入你的域名 -》 阅读全文
摘要:
查看端口占用 ss -lntpd | grep :80 阅读全文
摘要:
gitlab 提交 Git global setup git config --global user.name "lial" git config --global user.email "lial@xxxxx.com" Create a new repository git clone git@ 阅读全文
摘要:
网络 1.01 获得本地计算机主机名称/ip信息 { //初始化WinSock WSADATA WSAData; if (WSAStartup(MAKEWORD(2, 0), &WSAData) != 0) { return; } //获得本地计算机主机名称 char hostName[1024] 阅读全文
摘要:
package main import ( "fmt" "reflect" ) type Student struct { name string age int } func (s Student) Set(name string, age int) { s.name = name s.age = age } func test(b... 阅读全文
摘要:
1、下载安装 git 2、生成 SSH 密钥 ssh-keygen -t rsa -C "email@com" -b 4096 3、配置gitlab 增加 SSH 密钥. 4、配置 git config --global http.sslVerify false(不然无法push) 阅读全文
摘要:
1.01 docker hub搭建 1.0 docker hub 地址:https://github.com/goharbor/harbor/releases 下载: harbor-offline-installer-v2.12.0.tgz 1.02 harbor默认工作方式是http,只能在页面访 阅读全文