- Ubuntu 22.04.1 LTS 静态IP WARNING **: 10:29:10.417: `gateway4` has been depreca
vi/etc/netplan/00-installer-config.yaml network:ethernets:ens33:addresses:[192.168.66.106/24]gateway4:192.168.66.254nameservers:......
- docker启动创建容器时,报错Cannot link to /mysql, as it does not belong to the defa
启动创建容器时,报错Cannotlinkto/mysql,asitdoesnotbelongtothedefaultnetwork从报错信息看是不属于默认网络分析容器网络通过dockerinspect容器id先......
- 重新编译harbor-exporter源码,构建镜像
1.githubhttps://github.com/c4po/harbor_exporter 2.dockerfileFROMgolang:1.17ENVGO111MODULE=on\GOPROXY="https://goproxy.cn,direct"COPYharbor_exp......
- Prometheus黑盒测试【blackbox-exporter】
官方下载地址blackbox-exporter是Prometheus官方提供的一个黑盒测试的解决方案,可用于以下使用场景:TCP:端口存活检测HTTP/HTTPS:可用性检测ICMP:主机存活检测TCP:端口存活......
- Problems caused by variable without initialization value
Problemdescriptionunsignedcharkey[16]={0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,......
- Prometheus插件安装(NodeExporter)
Prometheus插件安装(NodeExporter)一,下载安装包并解压下载地址:https://github.com/prometheus/node_exporter/releases同样物理机上下载,然后上传到服务器,本次安装使用的......
- ES6模块化 export
模块化模块化是指将一个大的程序文件,拆分成许多小的文件,然后将小文件组合起来。模块化的好处模块化的优势有以下几点:1.防止命名冲突2.代码复用3.高维护性 export是暴......
- qemu install problems
Adjustyourpythontoversionnolessthan3.7,(usecondadoitifyourdefaultpythonisnot3.7)aconfigerror,as:ERROR:Dependency"pixman-1"notfound,......
- No primary or single public constructor found for interface java.util.List - and
本质:传过来的参数类型与待接收的参数类型不一致。 我传输过来的参数如下: 我待接收的参数如下: 你可能会说,将List<Long>改为Long!对,这是一种方法,但我想要......
- JS之export
export在创建JavaScript模块时,export语句用于从模块中导出实时绑定的函数、对象或原始值,以便其他程序可以通过import语句使用它们。被导出的绑定值依然可以在本地进......