目录 安装Chrome 安装Chrome驱动程序 环境:CentOS Linux release 7.4.1708 (Core) 安装Chrome 下载安装包: wget https://dl.google.com/linux/direct/google-chrome-stable_current_ ...
分类:
其他好文 时间:
2021-07-27 17:32:34
阅读次数:
0
Locust 简介 Locust 是一个分布式的负载测试框架,就如你已经熟悉的 LoadRunner、Jmeter 一样,你可以使用 Locust 对 Web 站点或 HTTP 接口进行负载测试,你也可以通过自行实现 Client 实现其它服务类型(如:中间件、数据库)或其它通讯协议(如:WebSo ...
分类:
其他好文 时间:
2021-07-02 16:39:57
阅读次数:
0
#查看当前centos操作系统的版本 cat /etc/redhat-release ##执行结果: ##第一步安装openjdk,版本可以根据自己安装sonarqube的版本而定; 安装过程可参见我的另一篇博客: 链接地址:https://www.cnblogs.com/cndevops/p/14 ...
分类:
其他好文 时间:
2021-07-02 16:32:35
阅读次数:
0
vagrant构建linux虚拟机 1.下载软件 Vagrant: https://releases.hashicorp.com/vagrant/2.2.5/vagrant_2.2.5_x86_64.msi VirtualBox: https://download.virtualbox.org/vi ...
分类:
系统相关 时间:
2021-07-01 16:52:21
阅读次数:
0
安装epel [root@localhost ~]# yum -y install epel-release 安装缓存 [root@localhost ~]# yum makecache 安装需要的软件 [root@localhost ~]# yum -y install cobbler cobbl ...
分类:
其他好文 时间:
2021-06-28 20:29:07
阅读次数:
0
Feign Client 原理和使用 一块石头 ? 公众号:好奇心森林 ?关注他 创作声明:内容包含虚构创作 6 人赞同了该文章 最近一个新项目在做后端HTTP库技术选型的时候对比了Spring WebClient,Spring RestTemplate,Retrofit,Feign,Okhttp。 ...
分类:
其他好文 时间:
2021-06-25 16:36:58
阅读次数:
0
简介OS: CentOS Linux release 8.2 开始清除mysql# 查看系统信息$ cat /etc/redhat-releaseCentOS Linux release 8.2.2004 (Core) # 查看有没有mysql$ rpm -qa | grep mysqlmysql- ...
分类:
数据库 时间:
2021-06-22 17:36:24
阅读次数:
0
升级原因:为了在本地安装跟公司测试服一样的服务器环境,需要把本地PHP版本从5.4升级到5.5。 操作步骤: 1. 查看当前centos版本 [root@localhost ~]# cat /etc/redhat-release 2. 根据当前centos版本,更换对应版本的RPM 源(软件仓库) ...
分类:
Web程序 时间:
2021-06-21 20:30:16
阅读次数:
0
1.控制并发线程数的Semaphore Semaphore(信号量)是用来控制同时访问特定资源的线程数量,它通过协调各个线程,保证合理的使用公共资源。 线程可以通过acquire()方法来获取信号量的许可,当信号量中没有可用的许可的时候,线程阻塞,直到有可用的许可为止。线程可以通过release() ...
分类:
其他好文 时间:
2021-06-18 19:20:53
阅读次数:
0