1. 配置节点,配置好节点后,在节点机上运行已下载文件,双击执行,提示"The Server rejected the connection: None of the protocols were accepted"错误 发现是自己生成.jnlp的文件错误了,如下图,我访问Jenkins是使用的localhost.在生成.jnlp或者是jar文件时,文件路径也是localhost,导致我执行它生成好的jar包或者是launch文件,下载都会提示是从localhost:8080下载,这样…
solution for this is from comment for https://issues.jenkins-ci.org/browse/JENKINS-29616. The following are the comment from Aaron Jensen:We were getting this error because our instance of Jenkins is served via HTTPS (no HTTP allowed). For some reaso…
当用ntpdate -d 来查询时会发现导致 no server suitable for synchronization found 的错误的信息有以下2个: 错误1.Server dropped: Strata too high 在ntp客户端运行ntpdate serverIP,出现no server suitable for synchronization found的错误. 在ntp客户端用ntpdate –d serverIP查看,发现有“Server dropped: strata…
Apr 24, 2018 11:19:48 AM hudson.init.impl.InstallUncaughtExceptionHandler$DefaultUncaughtExceptionHandler uncaughtException SEVERE: A thread (pool-6-thread-46/72) died unexpectedly due to an uncaught exception, this may leave your Jenkins in a bad wa…
1. 描述 虚拟机:VirtualBox Linux: centOS7 解决了 centOS7在VirtualBox中装好后的网络连接问题 后,用 Xshell 连接服务器时出现下面情况: 2. ssh 服务 注:本步骤也适用于 FileZilla 无法连接服务器的情况. (1)首先在虚拟机中查看 ssh 服务是否打开. $ service sshd status (2)如果没有上述信息,在终端运行: $ rpm -qa | grep ssh 以查看是否存在  ssh 软件. (3)若列表中没有…
  场景描述:被测系统是发布在远程服务器上的,假设IP是10.10.10.10,端口是8066,那么访问地址是http://10.10.10.10:8066/,在control机器上我设置了IP欺骗. 错误现象:在场景运行时出现大量Action.c(8): Error -27796: Failed to connect to server"server:port": [10060] Connection timed out错误. 官方的troubleshooting: 查看工具的tro…
问题描述 使用 Xshell 5 首次连接虚拟机 CentOS 7.6 出现这样的提示: WARNING! The remote SSH server rejected X11 forwarding request. 经搜索得知原来是... 此处省略一大段原理. 解决方法 yum install xorg -x11 -xauth -y 安装完成后再次登录,问题解决.但是,却出现了一个新的问题: /usr/bin/xauth: file /root/.Xauthority does not exi…
前提:安装好docker. 拉取Jenkins镜像: python docker pull jenkins 遇到错误:Docker:TLS handshake timeout错误 原因:国外,网速慢,镜像拉取失败. 解决办法: 新增/etc/docker/daemon.json 文件并添加上 registry-mirrors 键值. { "registry-mirrors": ["https://registry.docker-cn.com"] } 修改保存后重启…
今天突然想起来好久没有登录我的vps了,于是下载了xshell,填入地址登录后,看到提示"WARNING! The remote SSH server rejected X11 forwarding request",虽然并不影响使用,但还是感觉有些奇怪. 下面是报错的截图: 其实解决的方法很简单,找到 "属性--ssh--隧道": 取消勾选"X11转移",如图所示: 最后点击确定后保存. 再次登录连接SSH,发现已经完全正常,问题已解决.…
使用xshell连接服务器时,出现了"WARNING! The remote SSH server rejected X11 forwarding request.",意思是"远程SSH服务器拒绝X11转发请求." 此时已经连接上服务器了,可以对服务器进行正常的命令操作.但是肯定还是有一些人想要将警告消除掉的,警告的解决办法主要有两种: 极致推荐第一种方法 方法一. X11 forwarding依赖xorg-x11-xauth软件包,需要先安装xorg-x11-xa…