- 博客(8)
- 收藏
- 关注
原创 python pip3离线安装第三方依赖
pip download/install 下载/离线安装第三方包环境:pip 19.0.3pip下载第三方包pip download 你的包名 -d "下载的路径举个栗子:将pip3 list的信息生成文档pip3 freeze >requirements.txt#将requirement.txt文档中列出的模块信息下载到指定目录pip3 download -r requirements.txt -d \Python37\packages #推荐使用或pip3 install -
2020-05-09 15:54:20 2583
原创 Python命令查看windows服务是否启动
import osos.system(‘services.msc’)AppIDSvc AppMgmt defragsvcf=os.popen(‘sc query AppMgmt’)array=f.read().split(’:’)#STOPPED / RUNNINGstate=array[3].split(’ ')[3]print(state)if ‘RUNNING’==state:...
2020-01-13 10:34:42 2251
原创 模拟键盘打开notepad
public static void notepad()throws Exception{Process exec = Runtime.getRuntime().exec(“notepad”);System.out.println(“start notepad”);// System.setProperty(“java.awt.headless”, “true”);Robot...
2020-01-13 09:35:14 222
原创 yum安装aginx
用yum进行安装必要程序:yum -y install gcc gcc-c++ autoconf pcre-devel make automakeyum -y install wget httpd-tools vim官网查看nginx版本:nginx.org查看yum源:yum list | grep nginx //1.12.0vim /etc/yum.repos....
2020-01-09 10:25:28 122
原创 Eureka Server HA 启动说明
配置系统的hosts,Windows系统的hosts:【C:\WINDOWS\system32\drivers\etc】在最下面新增一行:127.0.0.1 peer1 peer2application.yml 配置信息,让两个节点的Eureka Server相互注册,如下图(详见代码):启动参数:打包项目,使用以下两个命令启动两个Eureka Server节点,如下图:(启动方式1)...
2020-01-09 10:12:15 205
原创 Python脚本处理时间
-- coding: utf-8 --import time, datetimeimport requestsimport hashlibimport jsonimport csvurl = ‘xxx’def get_time_stamp13(datetime_obj, last_3digits_not_zero=0):# 生成最后三位3位,微秒data_microsecond ...
2020-01-09 10:01:05 209
原创 编写linux.sh脚本
`#! /bin/bash#查看定时器状态 service crond status/start/restart#查看定时器日志 cat /var/log/cron#编辑/设定定时器crontab -e#*/1 **** sh …sh#chmod +u +x …sh#注意反选单引号dbname=$1tablename=$2#time=date "+%Y-%m-%d-%H:%M:%...
2020-01-09 09:42:27 143
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人