ps -aux | grep -v grep | grep -q xxx echo $? 排除grep进程,返回0,说明xxx进程存在,返回其他数字,说明xxx进程不存在 apt -cache policy xxx | grep -q 'abc' -q就是判断返回的结果中是否含有abc 以下是摘自菜 ...
分类:
系统相关 时间:
2020-07-21 21:34:26
阅读次数:
96
@Configuration@EnableWebMvcpublic class WebConfig implements WebMvcConfigurer { @Override public void configureMessageConverters(List<HttpMessageConve ...
分类:
Web程序 时间:
2020-07-21 14:25:52
阅读次数:
151
单选模式 selection0->GetProperties()->SetEnum("SelectMode",0); 自动推进到下一个 selection0->GetProperties()->SetLogical("AutomaticProgression",true); 对象选择过滤 只能选表面 ...
分类:
其他好文 时间:
2020-07-21 14:23:21
阅读次数:
147
1、some(过滤) const bool = [2, 3, 4].some((v, i, a) => { // v当前值,i下标,a当前数组 console.log(v) console.log(i) console.log(a) return v > 1 // 只要有其中一个数值满足就不再执行 ...
分类:
编程语言 时间:
2020-07-21 14:11:25
阅读次数:
75
#!/bin/bash ipv4=`ifconfig eth0 | grep 'inet addr'|awk -F ":" '{print $2}'|awk '{print$1}'` ipv6=`ifconfig eth0 | grep 'inet6 addr'|awk -F "/" '{print ...
分类:
其他好文 时间:
2020-07-21 13:46:58
阅读次数:
61
在网上找了很多方法,有许多命令进行了尝试 失败方案: npm cache verify npm cache clean npm cache clean --force npm i -g npm grep -ir "sha1-xxxxxxxxxxxxxxxx" ~/.npm 解决方案是: 1.删掉pa ...
分类:
其他好文 时间:
2020-07-21 13:46:43
阅读次数:
69
1、环境准备 (1)卸载自带的Mariadb 命令:rpm –qa|grep mariadb 查询已经安装的mariadb rpm –e –nodeps 文件名 卸载mariadb (2)创建配置文件my.cnf 命令:touch /etc/my.cnf (3)创建一个用户名为mysql的用户并加入 ...
分类:
数据库 时间:
2020-07-21 10:01:48
阅读次数:
97
搭建k8s集群 由于在国内网络问题,我们无法很好的使用minikube进行部署k8s实验环境,所以可以使用阿里提供的minikube进行搭建。除了minikube,也可以使用kubeasz进行部署。 下面我基于kubeaze给出部署方法。 1.基础系统配置 准备一台虚机配置内存2G/硬盘30G以上 ...
分类:
其他好文 时间:
2020-07-21 09:54:43
阅读次数:
73
shell获取某个时间段的nginx日志内容 小醉90s 2014-04-06 16:40:36 15297 收藏 1分类专栏: linux版权从nginx日志中获取2014:04:01日 21:30至21:50的日志内容 # cat web.log 192.168.16.105 - - [01/A ...
分类:
系统相关 时间:
2020-07-21 09:51:46
阅读次数:
181
遇到这这样的问题。 1,我首先想到mysql服务是否启动 ps -ef | grep mysql 发现 服务器已经启动了 2,查看端口号是否开放,iptable -L -n 查看开放的端口号。如果没有开发,去开发端口号3306 3,服务器安全组是否开发了3306端口号 4,telnet 127.0. ...
分类:
数据库 时间:
2020-07-20 22:41:37
阅读次数:
85