部署Zabbix4.0和Grafana 一、Zabbix 1、安装 rpm -Uvh https://repo.zabbix.com/zabbix/4.0/rhel/7/x86_64/zabbix-release-4.0-2.el7.noarch.rpm yum clean all yum inst ...
分类:
其他好文 时间:
2021-05-24 01:33:19
阅读次数:
0
centos7 修改yum源为阿里源 # 备份旧配置信息 mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.bak # 下载阿里云源 wget -O /etc/yum.repos.d/CentOS-Base. ...
分类:
系统相关 时间:
2021-05-24 00:17:21
阅读次数:
0
from sklearn.metrics import classification_report y_true=[0,1,2,2,2]#真值 y_pred=[0,0,2,2,1]#预测结果 print(classification_report(y_true,y_pred)) ...
分类:
其他好文 时间:
2021-05-23 23:39:17
阅读次数:
0
1. 如何顺序控制goroutine 如何保证在一个 goroutine 中看到在另一个 goroutine 修改的变量的值,如果程序中修改数据时有其他 goroutine 同时读取,那么必须将读取串行化。为了串行化访问,请使用 channel 或其他同步原语,例如 sync 和 sync/atom ...
分类:
其他好文 时间:
2021-05-23 23:08:09
阅读次数:
0
如果用Python3的一些包,特别是科学计算及数据处理的话,Anaconda是一个不错的发行版本,它预安装了很多流行的python3 的包,它的官网在 https://www.anaconda.com/ archives网址在 https://repo.anaconda.com/archive/ 有 ...
分类:
编程语言 时间:
2021-05-04 16:29:50
阅读次数:
0
公平锁,非公平锁 公平锁:非常公平,不能插队,必须先来后到 //参数写为true,就表示公平锁(不写默认就是非公平锁) public ReentrantLock(boolean fair) { sync = fair ? new FairSync() : new NonfairSync(); } 非 ...
分类:
其他好文 时间:
2021-05-04 15:15:22
阅读次数:
0
命令行 安装软件包 [root@localhost ~]# yum install cobbler cobbler-web dhcp pykickstart -y 开机启动 [root@localhost ~]# systemctl enable --now cobblerd httpd tftp ...
分类:
其他好文 时间:
2021-05-03 12:35:24
阅读次数:
0
mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo-backupwget -O /etc/yum.repos.d/CentOS-Base.repo http://file.kangle.odata.cc/rep ...
分类:
其他好文 时间:
2021-05-03 11:53:06
阅读次数:
0
我们大多数时候都使用IDE和其他软件来编写命令,但为了更好的工作,我们还需要随时准备一些可以随手使用的命令,以备不时之需。以下是我在开发时候,通常使用的命令,今天,我将它分享与你,希望对你有所帮助。 1、初始化本地Git存储库 git init 2、创建远程存储库的本地副本 git clone ss ...
分类:
其他好文 时间:
2021-04-30 12:43:46
阅读次数:
0
类中多个Synchronized方法 下面给出一个例子,说明一个class中有两个方法synchronized的情况。它们互相阻挡的用法和上面的“一个方法有synchronized”的情况是一样的。例1.9.5:class A { public synchronized void f1() { fo ...
分类:
编程语言 时间:
2021-04-30 12:36:54
阅读次数:
0