说点废话 当我们正常在界面系统使用selenium时,会感觉很爽,因为能清楚的看到我们代码的实现的过程,当遇到报错,也能相对来说缩小错误范围,一般都能很快的找到问题所在; 倘若我们想在Linux环境(无界面)中使用selenium,虽然在官网可以下载到linux环境下的chromedriver驱动文 ...
分类:
系统相关 时间:
2020-07-03 12:08:34
阅读次数:
75
http://www.zsythink.net/archives/1199 关于 留言板 友情链接 主页 Linux基础 运维技术 数据库 编程 首页运维技术IPtablesLinux基础Linux基础基础知识Linux基础常用命令正文 iptables详解(1):iptables概念 234 A+ ...
分类:
其他好文 时间:
2020-07-02 16:07:57
阅读次数:
87
[root@host-172-16-103-3 log]# systemctl is-enabled cloud-init-local.service cloud-init.service cloud-config.service cloud-final.service enabled enable ...
分类:
其他好文 时间:
2020-07-01 11:05:00
阅读次数:
50
添加如下配置到对应的pom.xml文件里<repositories> <repository> <id>nexus-snapshots</id> <url>http:/ipaddr:8081/nexus/content/repositories/snapshots</url> <snapshots> ...
分类:
其他好文 时间:
2020-06-29 11:28:58
阅读次数:
174
feign: httpclient: # feign最大连接数 max-connections: 200 # feign单个路径的最大连接数 max-connections-per-route: 50 okhttp: # 让feign使用Apache okhttp做请求,而不是默认的urlConne ...
分类:
编程语言 时间:
2020-06-28 09:39:14
阅读次数:
81
一.集群规划 Master Slave1 Slave2 Slave3 IP 192.168.2.131 192.168.2.132 192.168.2.133 192.168.2.134 namenode 有 有 无 无 datanode 有 有 有 有 resourcemanager 无 无 有 ...
分类:
其他好文 时间:
2020-06-26 23:52:47
阅读次数:
80
package jkcs; import java.net.MalformedURLException; import java.net.URL; import java.util.concurrent.TimeUnit; import org.openqa.selenium.remote.Desi ...
分类:
移动开发 时间:
2020-06-26 19:54:25
阅读次数:
76
在终端下输入 sudo apt search redis 查找一下发现了 redis-server 如果找不到 你可能需要使用 update 更新一下了 sudo apt-get update 然后就安装 sudo apt-get install redis-server 安装完毕后启动 redis ...
分类:
系统相关 时间:
2020-06-26 13:03:29
阅读次数:
53
在使用idea进行springBoot测试时,读取properties文件里面的内容会中文乱码,可以设置文件的编码格式为utf-8 有时候可能全都设置完utf-8后还不好使,网上教程说可以清理一下idea缓存 但是测试后仍没有用 最后在properties文件上添加相关属性,比如springBoot ...
分类:
编程语言 时间:
2020-06-24 21:57:54
阅读次数:
69
@ConditionalOnExpression("'true") 当括号中的内容为true时,使用该注解的类被实例化,支持语法如下: @ConditionalOnExpression("${mq.cumsumer.enabled}==1&&${rabbitmq.comsumer.enabled:t ...
分类:
编程语言 时间:
2020-06-24 16:26:23
阅读次数:
319