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
1.到官网下载自己的版本 2.解压 3.解压后的文件转移,建议转移,错误少 mv 原位置 /usr/local/mysql 4. 创建数据位置 data文件夹和日志位置 log文件夹,位置自定义,再log 里面创建日志文件 touch error.log 5.检查是否存在mysql用户和mysql组 ...
分类:
数据库 时间:
2021-04-26 13:27:50
阅读次数:
0
ps aux|grep java | grep -v grep |awk '{print "kill -9 "$2}'|sh awk文本分析指令,读入一列表(含有换行符,作为一条记录),在一条记录中已空格或者table作为分割符分成n个域,$0表示所以域即整条记录,$1标识第二个域中的内容,$n表示 ...
分类:
系统相关 时间:
2021-04-24 13:49:09
阅读次数:
0
1、测试数据 [root@centos7 test3]# cat b.txt e t s e s g m x w d g i d t e g x g e w 2、打印匹配w的行 [root@centos7 test3]# cat b.txt e t s e s g m x w d g i d t e ...
分类:
系统相关 时间:
2021-04-24 13:18:10
阅读次数:
0
今天决定把Debian 10.1自带的4.19内核升级到5.2.14。 需要的工具automake、make、g++(包含gcc)、bison、flex、libelf-dev、libssl-dev、bc。 懒人命令: sudo apt install -y automake make g++ bis ...
分类:
其他好文 时间:
2021-04-23 11:58:49
阅读次数:
0
统计tomcat的access日志的ip次数,并按次数排序 awk '{sum[$1]++}END{for(i in sum) print i "\t" sum[i]}' localhost_access_log.* | sort -n -k2 统计某个接口的调用时间 awk '{if($7~/.* ...
分类:
数据库 时间:
2021-04-21 12:18:10
阅读次数:
0
linux 监控服务器流量 #!/bin/bash ethn=$1 while true do RX_pre=$(cat /proc/net/dev | grep $ethn | sed 's/:/ /g' | awk '{print $2}') TX_pre=$(cat /proc/net/dev ...
分类:
系统相关 时间:
2021-04-21 12:03:54
阅读次数:
0
1. 指定宽度对齐 说明: %-30s表示输出字符串,宽度30位,左对齐. %-15s用来指定第二列的,左对齐,宽度15. 两个百分号之间可以没有空格. 使用\n对每一行的输出加上换行符。 work]# awk -F: '{print "user:" $1"\t\tuid:" $3}' /etc/p ...
分类:
系统相关 时间:
2021-04-10 13:03:55
阅读次数:
0
一、AUC含义 AUC是二分类指标ROC曲线下方的面积,在0~1之间。而在预测结果概率列表中可以理解为负样本排在正样本前面的概率(对概率值列排序)。 二、概率列表 通常建模结果可以输出为包含两列的表,第一列为真实标签(1/0),第二列为预测标签1的概率,示例如下: 三、利用awk计算AUC (1)先 ...
分类:
系统相关 时间:
2021-04-10 12:59:15
阅读次数:
0
部署prometheus监控端mkdir /opt/monitor/[root@zabbix ~]# tar -xf prometheus-2.25.0.linux-amd64.tar.gz -C /opt/monitor/[root@zabbix ~]# mv prometheus-2.25.0. ...
分类:
其他好文 时间:
2021-04-06 14:27:18
阅读次数:
0