异常问题: 下班之前升级了一下Git的版本,结果第二天过来拉取远程最新代码的时候就提示了下面的异常问题: Unable to negotiate with xx.xxx.xxxx port 22: no matching host key type found. Their offer: ssh-rsa Git failed with a fatal error. Git failed with a fatal error. Could not read from remote reposito…
前言 前两天因为升级了Git导致git提交拉取的时候都提示下面这个异常,然后经过一番折腾以后终于把这个问题解决了.但是今天我升级了下Visual Studio 2022将其升级到了17.1.3版本然后又出现了这个问题,奇怪的是我使用VS 2019没有问题(VS2019没有升级),然后使用Git Bash也是可以正常拉取提交.唯独使用VS 2022就提示下面的异常(真的是问题天天有,四月特别多): Unable to negotiate with xx.xxx.xxxx port 22: no m…
windows电脑重装系统,去官网下载了最新的git安装,一路next下来,打开bash按老路子设置,生成公钥 git config --global user.name "yourname" git config --global user.email "your@email.com" ssh-keygen -t rsa -C "your@email.com" 把公钥添加到阿里云,clone代码时拉不下来,报错. Unable to negot…
When runung a SpringBoot demo, I  got a error as following: *************************** APPLICATION FAILED TO START *************************** Description: Field service in com.hy.empcloud.EmpControl required a bean of type 'com.hy.empcloud.EmpServi…
今天在JSP利用EL表达式取值报了 "javax.el.PropertyNotFoundException" 1 Caused by: org.apache.jasper.JasperException: 在 [33] 行处理 [/course-list.jsp] 时发生异常 2 3 30: </tr> 4 31: <c:forEach var="course" items="${courses}"> 5 32: <…
因公司测试环境的登录模式有2种,大佬们直接写了个脚本完成一键切换,看了其中的脚本文件,其中出现了send "sh out.sh\r":一直疑惑这里的sh out.sh的意思...查了资料才发现也是执行脚本,但与./执行脚本有些区别!!! 一.使用./执行脚本 前提:要求对应的.sh文件需有执行权限.如下图,需给文件赋予执行权限才能使用./来执行. 二.使用sh执行脚本 区别:.sh文件没有执行权限时,使用sh来执行.sh文件也可执行成功.…
公司服务器上的gitlab项目添加了ssh密钥,但是操作时却报错ssh: connect to git@gitlab.xxxxx.com:xxxxx.git port 22: Connection refused 经过研究发现gitlab不仅支持ssh也支持http链接获取项目: 将原来的ssh链接git@gitlab.xxxxx.com:xxxxx.git改成https的链接https://gitlab.xxxxxxxxx.com/xxxxxxxxx.git就行了 比如git clone ht…
在执行git clone命令报错 Unable to negotiate with xxx.xxx.xxx.xxx port 12345: no matching key exchange method found. Their offer: diffie-hellman-group1-sha1 Unable to negotiate with : no matching key exchange method found. Their offer: diffie-hellman-group1-…
git clone 报错 Unable to negotiate with xxx.xxx.xxx.xxx. port 12345: no matching cipher found. Their offer: aes128-cbc,3des-cbc,blowfish-cbc 解决: # sudo nano /etc/ssh/ssh_config 把以下代码放到指定位置, Ciphers aes128-ctr,aes192-ctr,aes256-ctr,aes128-cbc,3des-cbc,a…
在新UAT服务器上,需要将tempdb放置在SSD(固态硬盘)上.由于SSD(固态硬盘)特性,所以tempdb的文件只能放置在D盘下面,而不能是D盘下的某一个目录下面. ALTER  DATABASE tempdb MODIFY FILE(name='tempdev', filename='D:\tempdb.mdf') ;   GO   ALTER  DATABASE tempdb MODIFY FILE(name='templog', filename='D:\templog.ldf') ;…