F2etest教程之安装部署(一)
F2etest是阿里巴巴开源的一个面向前端、测试、产品等岗位的多浏览器兼容性测试整体解决方案,GitHub地址:https://github.com/alibaba/f2etest 本文参考F2etest官方docker部署方案(https://www.yuq … 阅读全文
F2etest是阿里巴巴开源的一个面向前端、测试、产品等岗位的多浏览器兼容性测试整体解决方案,GitHub地址:https://github.com/alibaba/f2etest 本文参考F2etest官方docker部署方案(https://www.yuq … 阅读全文
Apache Guacamole(鳄梨酱)是一个基于HTML5 Web应用程序,可以随时通过浏览器连接已经配置好的机器,它支持标准协议,例如VNC、RDP和SSH。 部分内容参考于官方文档:https://guacamole.apache.org/doc/gu … 阅读全文
centos系统下使用yum安装php7.4正式版,当前基于WLNMP提供的一键安装包来安装 1、添加epel源
1 |
yum install epel-release |
2、添加WLNMP一键安装包源 [crayon-68734fb7acbab390 … 阅读全文
在某些应用场景中,需要特定的gcc版本支持,但是轻易不要去编译gcc、不要去编译gcc、不要去编译gcc,我这里推荐使用红帽提供的开发工具包来管理gcc版本,这样做的好处是随时切换版本,并且可以并存多个版本,不破坏原有gcc环境。 本文基于CentOS7验证通 … 阅读全文
在f2etest-web平台打开点击hosts出现Uncaught node.js Error报错,完整报错内容如下
1 2 3 4 5 6 7 8 9 10 11 12 |
Uncaught node.js Error TypeError: Cannot read property 'error' of undefined at Request._callback (file:///C:/Users/USER15~1/AppData/Local/Temp/3/nw5004_18066/js/appinit.js:393:21) at Request.self.callback (C:\Users\USER15~1\AppData\Local\Temp\3\nw5004_18066\node_modules\request\request.js:344:22) at Request.EventEmitter.emit (events.js:98:17) at Request.<anonymous> (C:\Users\USER15~1\AppData\Local\Temp\3\nw5004_18066\node_modules\request\request.js:1239:14) at Request.EventEmitter.emit (events.js:117:20) at IncomingMessage.<anonymous> (C:\Users\USER15~1\AppData\Local\Temp\3\nw5004_18066\node_modules\request\request.js:1187:12) at IncomingMessage.EventEmitter.emit (events.js:117:20) at _stream_readable.js:920:16 at process._tickCallback (node.js:351:13) |
乍一看还以为程序出错了,实则是因为windows-server的hostss … 阅读全文
Nginx最新的稳定版已经默认支持TLS1.3协议了,唯一值得注意的就是openssl的版本支持,如果你不想编译,建议使用wlnmp提供的源,一键yum安装Nginx,仅需要3步就可以搞定了。 yum直接安装方式: [crayon-68734fb7ad4e31 … 阅读全文
在Centos7编译FreeRDP-1.0.2版本时出现报错,完整报错内容如下 /usr/local/src/FreeRDP-1.0.2/channels/drdynvc/tsmf/ffmpeg/tsmf_ffmpeg.c:26:32: fatal error … 阅读全文
try_files指令是在nginx0.7.27版本中开始加入的,它可以按顺序检查文件是否存在,并返回第一个找到的文件,如果未找到任何文件,则会调用最后一个参数进行内部重定向。 try_files指令,官方说明:http://nginx.org/en/docs … 阅读全文
centos7默认提供的openssl版本是1.0.2的,想要升级openssl版本则需要手动进行编译 1、下载openssl
1 2 3 |
cd /usr/local/src/ wget https://www.openssl.org/source/openssl-1.1.1d.tar.gz tar xf openssl-1.1.1d.tar.gz |
2、编译openssl [crayon-68734fb7ae01b … 阅读全文
完整报错内容如下
1 |
openssl: error while loading shared libraries: libssl.so.1.1: cannot open shared object file: No such file or directory |
这是由于加载库的时候找不到了,我这里将库的位置添加进来就好了 解决办法:
1 2 |
echo "/usr/local/lib64/" >> /etc/ld.so.conf ldconfig |
~微信打赏~ 赏