logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

docker容器中配置Jenkins的sshkey

由于在项目中的Jenkins是配置在docker容器中,在配置Gerrit trigger时出现无法找到id.pub key文件的错误:"/var/jenkins_home/.ssh/id_rsa" is not a valid key file解决方案,重新生成key文件:ssh-keygen -m PEM

#linux
Jenkins启动节点时常见报错

1、Jenkins启动节点时报错Slave JVM has terminated. Exit code=126这个是由于Jenkins中的Java版本与节点服务器上面的不一致,需要在节点中配置Java地址:需要指定到java地址2、cat't find remoting.jar 无法生成remoting.jar1、安装Jenkins的目录需要在C盘目录下面,安装在其它目录可能...

windows bat执行python脚本

@echo offset pythonPath=C:\Users\Administrator\AppData\Local\Programs\Python\Python36\python.execd %WORKSPACE%\Build_script\python%pythonPath% test.py

#windows#python#开发语言
git使用中碰到的问题,持续更新

1、git删除远程分支git push origin :branch-name //origin前面必须有空格,表示push一个空分支到远程分支,即可删除远程分支。注意:这个操作需要拥有force push的权限2、清空git暂存区git reset HEAD //可以清空之前git add 的内容3、从windows上面上传项目到git服务器时出现问题:提示换行符不一致后来...

#git
Command “python setup.py egg_info“ failed with error code 1 in /tmp/pip-build-BiRqgr/decorator/

pip install下载工具时报错,出现:Complete output from command python setup.py egg_info:Traceback (most recent call last):File "<string>", line 1, in <module>File "/tmp/pip-build-BiRqgr/decorator/setu

#python
到底了