摘要:
Windows Server 添加 http | https 代理 这里直接上执行命令: http 代理服务器(squid 服务)ip:port 为 172.50.1.119:3128 netsh winhttp set proxy proxy-server="http://172.50.1.119 阅读全文
摘要:
Windows Server Synchronization Time Scirpts Windows Registry Editor Version 5.00 [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\DateTim 阅读全文
摘要:
现象 问题分析 第一个警告: WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128 第二个警告: 阅读全文
摘要:
mysql> grant 权限1,权限2,…权限n on 数据库名称.表名称 to 用户名@用户地址 identified by ‘连接口令’; # 权限1,权限2,…权限n代表select,insert,update,delete,create,drop,index,alter,grant,ref 阅读全文
摘要:
1. Environment Operation System: CentOS7.4 Server IP: 172.50.1.211 & 172.50.1.212 & 172.50.1.218 JDK: java version "1.8.0_241" 2. 下载并解压 zookeeper 官方下载 阅读全文
摘要:
命令如下 python -m pip install --upgrade pip -i https://pypi.tuna.tsinghua.edu.cn/simple 显示成功,如下: [root@localhost ~]# python3 -m pip install --upgrade pip 阅读全文
摘要:
命令 regedit 打开注册表,找到路径 [HKEY_LOCAL_MACHINE]\Software\Microsoft\Windows\CurrentVersion\Policies\System\CredSSP\Parameters 一般情况下,到了System之后就没了,缺少的可以自己创建文 阅读全文
摘要:
记录Jenkins H5编译、打包、发布 #!/usr/bin/env python3 # -*- coding:GBK -*- # author by Michael Ho # contact:herui@gszq.com import os, shutil, time # npm编译 def n 阅读全文
摘要:
记录 Jenkins 自动部署 GKfmc 程序 #!/usr/local/env python3 # -*- coding:utf-8 -*- import psutil, shutil, os # 杀死进程 def kill_process_name(process_name): pid_lis 阅读全文
摘要:
Jenkins job的自动部署脚本 需求: 1.从Jenkins的workspace中,将编译好的Java代码部署到D:\zzinfo\UserCenterCoordinator中 2.部署过程中,需要停止相关联的其他进程,如5558_CENTER64.exe | 5559_CENTER64_Us 阅读全文