摘要:
import com.sun.jna.Native; import com.sun.jna.Structure; import com.sun.jna.win32.StdCallLibrary; import org.apache.commons.lang3.StringUtils; import 阅读全文
摘要:
命令: for /f "tokens=5 delims= " %a in ('netstat -ano ^| findstr 5037') do taskkill -f -pid %a 其中5037为端口号。替换端口号即可 阅读全文
摘要:
1,首先需要安装git 和zsh yum install -y git zsh 2.下载离线安装包 暂时先空着。 3.解压安装包 tar -xvf oh-my-zsh.tar 4.安装和配置 4.1 首先切换到zsh $ cd oh-my-zsh/ $ zsh This is the Z Shell 阅读全文
摘要:
##1.编写脚本 vim /home/autostart.sh 内容如下 systemctl restart network 赋予脚本可执行权限 chmod +x /home/autostart.sh ##2.有两种方法: 方法1: 在/etc/rc.d/rc.local文件末尾追加 /home/a 阅读全文
摘要:
Nginx 的日志分析有助于对流量、错误排查,使用工具 goaccess 可以避免写复杂的 awk 函数,可以方便的统计来源 IP、请求流量、请求地址及请求时间分布。 安装 yum install goaccess -y 参数 作用 -o 输出报告 -q 地址统计不带 query 参数 –hour- 阅读全文
摘要:
#!usr/bin/python #-*-coding:utf-8-*- #根据git变化,将变化的文件推送到手机上 import os import sys print("文件编码格式:"+ sys.getdefaultencoding()) ###############配置变量######## 阅读全文
摘要:
[root@app2 ~]# service ss5 status/etc/init.d/ss5: line 18: [: =: unary operator expected● ss5.service - SYSV: This script takes care of starting and s 阅读全文
摘要:
在/opt/gitlab/embedded/service/gitlab-shell/hooks 目录下pre-receive显示 #!/bin/sh echo "The gitlab-shell hooks have been migrated to Gitaly, see https://git 阅读全文
摘要:
1,java堆,分新生代老年代,新生代有Eden,from surviver,to surviver三个空间,堆被所有线程共。eden内存不足时,发生一次minor GC,会把from survivor和eden的对象复制到to survivor,这次的to survivor就变成了下次的from 阅读全文
摘要:
第一种写法: import java.io.IOException; import java.io.InterruptedIOException; import java.io.UnsupportedEncodingException; import java.net.SocketTimeoutEx 阅读全文