首先在一台agent安装zabbix-agent rpm -Uvh https://repo.zabbix.com/zabbix/5.0/rhel/7/x86_64/zabbix-release-5.0-1.el7.noarch.rpm yum clean all yum -y install za ...
分类:
其他好文 时间:
2021-05-24 10:48:30
阅读次数:
0
web.xml <?xml version="1.0" encoding="UTF-8"?><web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance ...
分类:
编程语言 时间:
2021-05-24 10:42:56
阅读次数:
0
约束的分类: not null:非空,用于保证该字段的值不 能为空,比如姓名,学号 default:默认,用于保证该字段的默 认值 ,如性别 primary key:主键,用于保证该字段具 有唯一性,非空,如学号 unique:唯一,用于该字段具有唯一性, 可以为空 check:检查约束(mysql ...
分类:
数据库 时间:
2021-05-24 10:29:52
阅读次数:
0
之前我们对Java集合框架一些常见的面试题做了一个总结式的回答:【29期】Java集合框架 10 连问,你有被问过吗?这篇开始针对29期中的一些比较重要的问题做详细的解答。 哈希表(hash table)也叫散列表,是一种非常重要的数据结构,应用场景及其丰富,许多缓存技术(比如memcached)的 ...
分类:
其他好文 时间:
2021-05-24 10:26:20
阅读次数:
0
This time, you are supposed to find A+B where A and B are two polynomials. Input Specification: Each input file contains one test case. Each case occu ...
分类:
编程语言 时间:
2021-05-24 10:17:27
阅读次数:
0
we're going to dive deep into a more complex example in which we combine mapped types, key remapping, template literal types, and indexed access types ...
分类:
移动开发 时间:
2021-05-24 09:32:51
阅读次数:
0
1. 本地锁 常用的即 synchronize 或 Lock 等 JDK 自带的锁,只能锁住当前进程,仅适用于单体架构服务。 而在分布式多服务实例场景下必须使用分布式锁 哦哟!才知道,原来大厂的Redis分布式锁都这么设计 2 分布式锁 2.1 分布式锁的原理 厕所占坑理论 可同时去一个地方“占坑” ...
分类:
其他好文 时间:
2021-05-24 09:06:33
阅读次数:
0
文章目录1 在开发板上移植ssh2 安装ssh3 生成KEY文件,并安装4 修改目标板密钥文件5 测试6 在Ubuntu上搭建QT开发环境7 配置编译套件之前我们写好一个程序,都是先交叉编译完,然后在通过nfs/tftp或者其他的方法拷贝到开发板,然后在手动执行,如果我们调试程序很频繁,那我们每次都 ...
分类:
其他好文 时间:
2021-05-24 08:56:10
阅读次数:
0
例: 根据value值排序 hasd = { 'a': 12, 'c': 7, 'd': 17, 'm': -9 } demo_dict = sorted(hasd.items(),key=lambda x:x[1]) print(demo_dict)[('m', -9), ('c', 7), (' ...
分类:
编程语言 时间:
2021-05-24 08:51:54
阅读次数:
0
在官网下载二进制包:这里直接使用wget wget https://cdn.zabbix.com/zabbix/binaries/stable/4.0/4.0.30/zabbix_agent-4.0.30-linux-3.0-amd64-static.tar.gz 之后进行解压 [root@zabb ...
分类:
其他好文 时间:
2021-05-24 08:48:26
阅读次数:
0