1、更新插件替換為國內鏡像插件源
替換原因:進入 Manage Jenkins -》 Manage Plugin,發現Updates tab頁沒數據,報There were errors checking the update sites: SocketTimeoutException: connect timed out錯誤(連接更新插件源超時)
問題分析:首先切換到Advanced tab頁,Advanced tab頁最下面有 Update Site 設置,看下當前Jenkins服務配置的更新插件源為:https://updates.jenkins.io/update-center.json,然后ssh到Jenkins服務所在服務器,驗證此服務器是否能連通當前配置的更新插件源,經測試網絡不通。
解決方案:將更新插件源替換為替換為服務器節點能夠連通的國內插件源:
https://mirrors.tuna.tsinghua.edu.cn/jenkins/updates/update-center.json
或者:
http://mirror.xmission.com/jenkins/updates/update-center.json
修改完后可以點擊Submit按鈕,然后點擊Check now檢查下,如果能重啟Jenkins服務的話點擊Submit按鈕后可以直接重啟下Jenkins服務。
2、maven流水線構建報以下錯誤
+ mvn clean deploy Error: missing `server' JVM at `/usr/lib/jvm/java-1.8.0-openjdk-1.8.0.232.b09-0.el7_7.i386/jre/lib/i386/server/libjvm.so'. Please install or use the JRE or JDK that contains these missing components. script returned exit code 4
據項目組開發人員反饋,上午流水線任務構建還正常,下午流水線構建就報上面錯誤了,期間并沒有修改過流水線配置、源碼里面并沒調整過JDK版本相關內容。
解決思路:經排查Jenkins Pod運行正常,maven打包容器也能拉取源碼,只不過執行mvn命令時報錯,所以基本可以排除Jenkins組件問題,于是網上搜索類似問題,找到類似問題文章:
adcfgclone.pl Error: missing `server' JVM at libjvm.so。
于是ssh到流水線打包節點,經排查操作系統正好是centos7.x,docker數據盤目錄掛載的數據盤文件系統格式正是XFS,切掛載點超過了1T。
解決方案:修改容器云打包節點到docker數據盤<1T的節點上,至此問題解決。
3、解決Jenkins流水線任務拉取代碼報git config File exists錯誤
錯誤信息:
returned status code 255: stdout: stderr: error: could not lock config file .git/config: File exists at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandIn(CliGitAPIImpl.java:2450) at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandIn(CliGitAPIImpl.java:2380) at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandIn(CliGitAPIImpl.java:2376) at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommand(CliGitAPIImpl.java:1923) at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommand(CliGitAPIImpl.java:1935) at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.setRemoteUrl(CliGitAPIImpl.java:1549) at hudson.plugins.git.GitAPI.setRemoteUrl(GitAPI.java:161) at jenkins.plugins.git.AbstractGitSCMSource.doRetrieve(AbstractGitSCMSource.java:357) at jenkins.plugins.git.AbstractGitSCMSource.doRetrieve(AbstractGitSCMSource.java:330) at jenkins.plugins.git.AbstractGitSCMSource.retrieve(AbstractGitSCMSource.java:396) at jenkins.scm.api.SCMSource.fetch(SCMSource.java:582) at org.jenkinsci.plugins.workflow.multibranch.SCMBinder.create(SCMBinder.java:100) at org.jenkinsci.plugins.workflow.job.WorkflowRun.run(WorkflowRun.java:310) at hudson.model.ResourceController.execute(ResourceController.java:99) at hudson.model.Executor.run(Executor.java:432) Finished: FAILURE
解決方案:
到Jenkins數據目錄查找,可以發現在Jenkins安裝目錄下有個caches目錄
/var/jenkins_home/caches/git-762b1469bb9de7658adbaec8d8b12877/.git/config ...... /var/jenkins_home/caches/git-6dff59f087b2f03588f3905a47012c3c/.git/config /var/jenkins_home/caches/git-259c3ec0c808380e583d66552ba73d06/.git/config /var/jenkins_home/caches/git-08f22672d5e50dba23f07dcd52f3100d/.git/config /var/jenkins_home/caches/git-ee60fb5e6f1859e7ee4717f127258a34/.git/config /var/jenkins_home/.config/jgit/config
在某個git-xxx目錄里面有.git/config文件和.git/config.lock文件,刪除config.lock文件即可
find / -name "config.lock" -type f rm xxx.xxx/config.lock
4、maven流水線構建報unable to allocate file descriptoe table - out of ....錯誤
錯誤信息:
解決方案:
1)先檢查Jenkins打包節點文件句柄數配置
ulimit-n
如果值過小,通過以下命令進行配置
ci節點配置limit: echo "* soft nofile 65535" >>/etc/security/limits.conf echo "* hard nofile 65535" >>/etc/security/limits.conf ulimit -n 65535
2)檢查Jenkins打包節點docker服務句柄數配置
docker服務配置文件配置limit
/usr/lib/systemd/system/docker.service --default-ulimit nofile=65535:65535
重啟docker服務
systemctl daemon-reload systemctl restart docker
鏈接:https://www.cnblogs.com/zhangmingcheng/p/16206435.html
-
服務器
+關注
關注
12文章
9020瀏覽量
85182 -
開源
+關注
關注
3文章
3247瀏覽量
42400 -
鏡像
+關注
關注
0文章
162瀏覽量
10697 -
jenkins
+關注
關注
0文章
28瀏覽量
5146
原文標題:Jenkins常見問題解決
文章出處:【微信號:magedu-Linux,微信公眾號:馬哥Linux運維】歡迎添加關注!文章轉載請注明出處。
發布評論請先 登錄
相關推薦
評論