lnmp为已有站点手动更新ssl证书记录
编辑/usr/local/nginx/conf/vhost/ 目录下,站点对应的conf文件,将其中的 ssl_certificate /root/ssl/pan.pem; ssl_certificate_key /root/ssl/pan...
编辑/usr/local/nginx/conf/vhost/ 目录下,站点对应的conf文件,将其中的 ssl_certificate /root/ssl/pan.pem; ssl_certificate_key /root/ssl/pan...
1 进程安装 1.1 安装python tar xvf python-2.7.10.tgz cd python-2.7.10 ./configure --prefix=...
说明 项目里用到力http-parser,在这里简单说明一下其用法吧 下载地址:https://github.com/joyent/http-parser 其使用说明很详细。 开源用例 开源tcpflow 1.4.4中使用http-pars...
1 filelist=`ls /home/work/file/` for file in $filelist do echo $file done 一定要切记filelist=后边的那个引号不是单引号,而是tab键上边的那个键,或者说是1左...
基本篇: 打开列编辑模式很简单,按住鼠标右键,并开始拖拽需要选中的区域即可。 进阶篇: 如果每行的字符串长度不同,而你需要删除每行的最后7个字符,该怎么办呢? 1. ctrl a 全选 2. ctrl shift l 进入列选模式 3. 使...
curl 'localhost:9200/_cat/indices?v'
bin/hadoop version
hive比较坑的一点就是没有类似hive -version的方便地查看版本的方法,我们只能自己去hive的安装目录里去看各个jar包的版本。可是,我们怎么找到hive的安装目录呢? 这里有个方便的方法: $ locate */hive/li...
使用numpy包: import numpy as np a=np.array(([1,2,3,4])) np.median(a)#中位数 np.percentile(a,95)#95%分位数
第一种: 利用str函数将数字转化成字符串,再利用len函数判断位长。 a=int(raw_input("the number you want type in:") b=len(str(a)) print b 第二种: c=0 a=int...