11 2019 档案
摘要:const puppeteer = require('/home/ordinaryUser_2/automation/NodeJS/node/lib/node_global/lib/node_modules/puppeteer');async function screen() { const br
阅读全文
摘要:vim /etc/locale.conf 添加:LANG="zh_CN.UTF-8" 执行一下source /etc/locale.conf,使刚修改的文件生效
阅读全文
摘要:执行如下三条命令 yum groupinstall "X Window System" -y yum -y groupinstall chinese-support yum -y groupinstall Fonts
阅读全文
摘要:1. 下载安装脚本, 在下载目录中,执行以下命令,将安装脚本下载到本地 wget https://intoli.com/install-google-chrome.sh 2.然后授予可执行权限 chmod 755 ./install-google-chrome.sh 3.执行脚本 ./install
阅读全文
摘要:1、在Jenkins的邮件插件 Email-ext中的Default Content内容编写html文件,简单模板如下: <html> <head> </head> <body> <img width=100 height=100 id="1" src="cid:Logo.jpg"> </body>
阅读全文
摘要:1、重置单个JOB的构建历史item = Jenkins.instance.getItemByFullName("your-job-name-here") //THIS WILL REMOVE ALL BUILD HISTORY item.builds.each() { build -> build
阅读全文
摘要:http://mirrors.jenkins-ci.org/status.html
阅读全文
摘要:最大连接数修改 查看最大连接数 SHOW VARIABLES LIKE '%max_connections%'; 修改最大连接数 SET GLOBAL max_connections = 2000; 修改wait_timeout 查看非交互式超时时间 SHOW GLOBAL VARIABLES LI
阅读全文