Jenkins 安装之linux系统环境下安装

1.系统要求

1.1 jdk 1.8

jdk 最好是1.8 否则项目有可能部署不进去
安装目录

[root@izwz91h49n3mj8r232gqwez jdk1.8.0_172]# pwd
/opt/jdk1.8.0_172
[root@izwz91h49n3mj8r232gqwez jdk1.8.0_172]# 

2.Jenkins安装包

2.1.CSDN jar包

https://download.csdn.net/download/u014636209/10690731

2.2.官网的安装包

在这里插入图片描述
各个系统安装包
在这里插入图片描述

3.安装方式1:使用内置的容器命令安装 [我这里使用的Mac]

3.1.java -jar jenkins.war --httpPort=8080

由于是java开发,必须有jdk环境变量,以及可以直接使用java功能运行

[root@izwz91h49n3mj8r232gqwez opt]# java -jar jenkins.war --httpPort=8080
Running from: /opt/jenkins.war
webroot: $user.home/.jenkins
2020-02-17 02:22:45.846+0000 [id=1]     INFO    org.eclipse.jetty.util.log.Log#initialized: Logging initialized @894ms to org.eclipse.jetty.util.log.JavaUtilLog
2020-02-17 02:22:46.090+0000 [id=1]     INFO    winstone.Logger#logInternal: Beginning extraction from war file
2020-02-17 02:22:47.573+0000 [id=1]     WARNING o.e.j.s.handler.ContextHandler#setContextPath: Empty contextPath
2020-02-17 02:22:47.677+0000 [id=1]     INFO    org.eclipse.jetty.server.Server#doStart: jetty-9.4.z-SNAPSHOT; built: 2019-05-02T00:04:53.875Z; git: e1bc35120a6617ee3df052294e433f3a25ce7097; jvm 1.8.0_172-b11
2020-02-17 02:22:48.399+0000 [id=1]     INFO    o.e.j.w.StandardDescriptorProcessor#visitServlet: NO JSP Support for /, did not find org.eclipse.jetty.jsp.JettyJspServlet
2020-02-17 02:22:48.590+0000 [id=1]     INFO    o.e.j.s.s.DefaultSessionIdManager#doStart: DefaultSessionIdManager workerName=node0
2020-02-17 02:22:48.590+0000 [id=1]     INFO    o.e.j.s.s.DefaultSessionIdManager#doStart: No SessionScavenger set, using defaults
2020-02-17 02:22:48.597+0000 [id=1]     INFO    o.e.j.server.session.HouseKeeper#startScavenging: node0 Scavenging every 600000ms
2020-02-17 02:22:49.478+0000 [id=1]     INFO    hudson.WebAppMain#contextInitialized: Jenkins home directory: /root/.jenkins found at: $user.home/.jenkins
2020-02-17 02:22:49.834+0000 [id=1]     INFO    o.e.j.s.handler.ContextHandler#doStart: Started w.@7db534f2{Jenkins v2.204.2,/,file:///root/.jenkins/war/,AVAILABLE}{/root/.jenkins/war}
2020-02-17 02:22:49.949+0000 [id=1]     INFO    o.e.j.server.AbstractConnector#doStart: Started ServerConnector@305ffe9e{HTTP/1.1,[http/1.1]}{0.0.0.0:8080}
2020-02-17 02:22:49.949+0000 [id=1]     INFO    org.eclipse.jetty.server.Server#doStart: Started @4998ms
2020-02-17 02:22:49.972+0000 [id=20]    INFO    winstone.Logger#logInternal: Winstone Servlet Engine v4.0 running: controlPort=disabled
2020-02-17 02:22:51.793+0000 [id=26]    INFO    jenkins.InitReactorRunner$1#onAttained: Started initialization
2020-02-17 02:22:51.865+0000 [id=25]    INFO    jenkins.InitReactorRunner$1#onAttained: Listed all plugins
2020-02-17 02:22:54.368+0000 [id=26]    INFO    jenkins.InitReactorRunner$1#onAttained: Prepared all plugins
2020-02-17 02:22:54.387+0000 [id=26]    INFO    jenkins.InitReactorRunner$1#onAttained: Started all plugins
2020-02-17 02:22:54.413+0000 [id=25]    INFO    jenkins.InitReactorRunner$1#onAttained: Augmented all extensions
2020-02-17 02:22:55.789+0000 [id=25]    INFO    jenkins.InitReactorRunner$1#onAttained: Loaded all jobs
2020-02-17 02:22:55.860+0000 [id=39]    INFO    hudson.model.AsyncPeriodicWork#lambda$doRun$0: Started Download metadata
2020-02-17 02:22:55.900+0000 [id=39]    INFO    hudson.util.Retrier#start: Attempt #1 to do the action check updates server
2020-02-17 02:22:57.571+0000 [id=25]    INFO    o.s.c.s.AbstractApplicationContext#prepareRefresh: Refreshing org.springframework.web.context.support.StaticWebApplicationContext@3bb56f1b: display name [Root WebApplicationContext]; startup date [Mon Feb 17 10:22:57 CST 2020]; root of context hierarchy
2020-02-17 02:22:57.572+0000 [id=25]    INFO    o.s.c.s.AbstractApplicationContext#obtainFreshBeanFactory: Bean factory for application context [org.springframework.web.context.support.StaticWebApplicationContext@3bb56f1b]: org.springframework.beans.factory.support.DefaultListableBeanFactory@3e20119d
2020-02-17 02:22:57.599+0000 [id=25]    INFO    o.s.b.f.s.DefaultListableBeanFactory#preInstantiateSingletons: Pre-instantiating singletons in org.springframework.beans.factory.support.DefaultListableBeanFactory@3e20119d: defining beans [authenticationManager]; root of factory hierarchy
2020-02-17 02:22:57.954+0000 [id=25]    INFO    o.s.c.s.AbstractApplicationContext#prepareRefresh: Refreshing org.springframework.web.context.support.StaticWebApplicationContext@3fbbf7e6: display name [Root WebApplicationContext]; startup date [Mon Feb 17 10:22:57 CST 2020]; root of context hierarchy
2020-02-17 02:22:57.954+0000 [id=25]    INFO    o.s.c.s.AbstractApplicationContext#obtainFreshBeanFactory: Bean factory for application context [org.springframework.web.context.support.StaticWebApplicationContext@3fbbf7e6]: org.springframework.beans.factory.support.DefaultListableBeanFactory@140f46c
2020-02-17 02:22:57.955+0000 [id=25]    INFO    o.s.b.f.s.DefaultListableBeanFactory#preInstantiateSingletons: Pre-instantiating singletons in org.springframework.beans.factory.support.DefaultListableBeanFactory@140f46c: defining beans [filter,legacy]; root of factory hierarchy
2020-02-17 02:22:58.488+0000 [id=25]    INFO    jenkins.install.SetupWizard#init: 

*************************************************************
*************************************************************
*************************************************************

Jenkins initial setup is required. An admin user has been created and a password generated.
Please use the following password to proceed to installation:

1c8a365ae0274adbbaafe03e05efec57

This may also be found at: /root/.jenkins/secrets/initialAdminPassword

*************************************************************
*************************************************************
*************************************************************

2020-02-17 02:24:46.547+0000 [id=39]    INFO    hudson.model.UpdateSite#updateData: Obtained the latest update center data file for UpdateSource default
2020-02-17 02:24:48.638+0000 [id=39]    INFO    h.m.DownloadService$Downloadable#load: Obtained the updated data file for hudson.tasks.Maven.MavenInstaller
2020-02-17 02:24:48.638+0000 [id=39]    INFO    hudson.util.Retrier#start: Performed the action check updates server successfully at the attempt #1
2020-02-17 02:24:48.641+0000 [id=39]    INFO    hudson.model.AsyncPeriodicWork#lambda$doRun$0: Finished Download metadata. 112,763 ms
2020-02-17 02:24:51.307+0000 [id=25]    INFO    hudson.model.UpdateSite#updateData: Obtained the latest update center data file for UpdateSource default
2020-02-17 02:24:51.780+0000 [id=25]    INFO    jenkins.InitReactorRunner$1#onAttained: Completed initialization
2020-02-17 02:24:51.821+0000 [id=19]    INFO    hudson.WebAppMain$3#run: Jenkins is fully up and running

3.2.浏览页面

http://localhost:8080/jenkins

4.安装方式2:部署到Tomcat中安装

4.1 tomcat 8

tomcat必须是8 否则有可能项目部署不进去
安装目录

[root@izwz91h49n3mj8r232gqwez apache-tomcat-8.5.31]# pwd
/weblogic/tomcat/apache-tomcat-8.5.31

4.2 linux系统

我在阿里云上购买的linux服务器 ,系统版本是centos系统

4.3 上传Jenkins.war包

将安装包Jenkins.war包上传到下面的目录下面

[root@izwz91h49n3mj8r232gqwez webapps]# pwd
/weblogic/tomcat/apache-tomcat-8.5.31/webapps

4.4 解压war包

并且进行解压

[root@izwz91h49n3mj8r232gqwez webapps]# unzip jenkins_\(1\).war -d  jenkins
[root@izwz91h49n3mj8r232gqwez webapps]# ll
total 74072
drwxr-x--- 14 root root     4096 Oct  4 07:53 docs
drwxr-x---  6 root root     4096 Oct  4 07:53 examples
drwxr-x---  5 root root     4096 Oct  4 07:53 host-manager
drwxr-xr-x 11 root root     4096 Oct  4 08:02 jenkins
-rw-r--r--  1 root root 75820252 Oct  4 07:34 jenkins_(1).war
drwxr-x---  5 root root     4096 Oct  4 07:53 manager
drwxr-x---  3 root root     4096 Oct  4 07:53 ROOT
[root@izwz91h49n3mj8r232gqwez webapps]# 

4.5 启动tomcat服务器

[root@izwz91h49n3mj8r232gqwez bin]# pwd
/weblogic/tomcat/apache-tomcat-8.5.31/bin
[root@izwz91h49n3mj8r232gqwez bin]# ll
total 836
-rw-r----- 1 root root  34985 Apr 28 04:24 bootstrap.jar
-rw-r----- 1 root root  15900 Apr 28 04:24 catalina.bat
-rwxr-x--- 1 root root  23463 Apr 28 04:24 catalina.sh
-rw-r----- 1 root root   1664 Apr 28 04:26 catalina-tasks.xml
-rw-r----- 1 root root  25145 Apr 28 04:24 commons-daemon.jar
-rw-r----- 1 root root 207125 Apr 28 04:24 commons-daemon-native.tar.gz
-rw-r----- 1 root root   2040 Apr 28 04:24 configtest.bat
-rwxr-x--- 1 root root   1922 Apr 28 04:24 configtest.sh
-rwxr-x--- 1 root root   8509 Apr 28 04:24 daemon.sh
-rw-r----- 1 root root   2091 Apr 28 04:24 digest.bat
-rwxr-x--- 1 root root   1965 Apr 28 04:24 digest.sh
-rw-r----- 1 root root   3574 Apr 28 04:24 setclasspath.bat
-rwxr-x--- 1 root root   3680 Apr 28 04:24 setclasspath.sh
-rw-r----- 1 root root   2020 Apr 28 04:24 shutdown.bat
-rwxr-x--- 1 root root   1902 Apr 28 04:24 shutdown.sh
-rw-r----- 1 root root   2022 Apr 28 04:24 startup.bat
-rwxr-x--- 1 root root   1904 Apr 28 04:24 startup.sh
-rw-r----- 1 root root  49336 Apr 28 04:24 tomcat-juli.jar
-rw-r----- 1 root root 405109 Apr 28 04:24 tomcat-native.tar.gz
-rw-r----- 1 root root   4574 Apr 28 04:24 tool-wrapper.bat
-rwxr-x--- 1 root root   5483 Apr 28 04:24 tool-wrapper.sh
-rw-r----- 1 root root   2026 Apr 28 04:24 version.bat
-rwxr-x--- 1 root root   1908 Apr 28 04:24 version.sh
[root@izwz91h49n3mj8r232gqwez bin]# sh startup.sh 

启动日志如下:

04-Oct-2018 08:04:25.947 INFO [Finalizing set up] jenkins.install.SetupWizard.init 

*************************************************************
*************************************************************
*************************************************************

Jenkins initial setup is required. An admin user has been created and a password generated.
Please use the following password to proceed to installation:

eb633c9157f0496da959db6cfaaca48d

This may also be found at: /root/.jenkins/secrets/initialAdminPassword

*************************************************************
*************************************************************
*************************************************************

04-Oct-2018 08:04:39.829 INFO [Download metadata thread] hudson.model.UpdateSite.updateData Obtained the latest update center data file for UpdateSource default
04-Oct-2018 08:04:39.833 INFO [Finalizing set up] hudson.model.UpdateSite.updateData Obtained the latest update center data file for UpdateSource default
04-Oct-2018 08:04:40.524 INFO [pool-6-thread-1] jenkins.InitReactorRunner$1.onAttained Completed initialization
04-Oct-2018 08:04:40.682 INFO [Jenkins initialization thread] hudson.WebAppMain$3.run Jenkins is fully up and running
04-Oct-2018 08:04:41.232 INFO [Download metadata thread] hudson.model.DownloadService$Downloadable.load Obtained the updated data file for hudson.tasks.Maven.MavenInstaller

04-Oct-2018 08:08:56.308 WARNING [http-nio-8083-exec-1] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/images/16x16/search.png] to the cache for web application [/jenkins] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
04-Oct-2018 08:08:56.308 WARNING [http-nio-8083-exec-1] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/images/16x16/nobuilt.png] to the cache for web application [/jenkins] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
04-Oct-2018 08:08:56.308 WARNING [http-nio-8083-exec-1] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/images/16x16/notepad.gif] to the cache for web application [/jenkins] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
04-Oct-2018 08:08:56.309 WARNING [http-nio-8083-exec-1] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/images/16x16/aborted.png] to the cache for web application [/jenkins] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
04-Oct-2018 08:08:56.309 WARNING [http-nio-8083-exec-1] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/images/16x16/star-gold.gif] to the cache for web application [/jenkins] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
04-Oct-2018 08:08:56.309 WARNING [http-nio-8083-exec-1] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/images/16x16/user.png] to the cache for web application [/jenkins] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
04-Oct-2018 08:08:56.309 WARNING [http-nio-8083-exec-1] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/images/16x16/clock_anime.gif] to the cache for web application [/jenkins] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
04-Oct-2018 08:08:56.314 WARNING [http-nio-8083-exec-1] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/images/16x16/go-next.png] to the cache for web application [/jenkins] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
04-Oct-2018 08:08:56.314 WARNING [http-nio-8083-exec-1] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/images/16x16/warning.gif] to the cache for web application [/jenkins] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
04-Oct-2018 08:08:56.314 WARNING [http-nio-8083-exec-1] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/images/16x16/plugin.png] to the cache for web application [/jenkins] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
04-Oct-2018 08:08:56.314 WARNING [http-nio-8083-exec-1] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/images/16x16/folder-error.gif] to the cache for web application [/jenkins] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
04-Oct-2018 08:08:56.314 WARNING [http-nio-8083-exec-1] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/images/16x16/collapse.png] to the cache for web application [/jenkins] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
04-Oct-2018 08:08:56.315 WARNING [http-nio-8083-exec-1] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/images/16x16/save.gif] to the cache for web application [/jenkins] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
04-Oct-2018 08:08:56.315 WARNING [http-nio-8083-exec-1] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/images/16x16/nobuilt.gif] to the cache for web application [/jenkins] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
04-Oct-2018 08:08:56.315 WARNING [http-nio-8083-exec-1] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/images/16x16/aborted.gif] to the cache for web application [/jenkins] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
04-Oct-2018 08:08:56.315 WARNING [http-nio-8083-exec-1] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/images/16x16/text.gif] to the cache for web application [/jenkins] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
04-Oct-2018 08:08:56.315 WARNING [http-nio-8083-exec-1] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/images/16x16/health-00to19.png] to the cache for web application [/jenkins] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
04-Oct-2018 08:08:56.315 WARNING [http-nio-8083-exec-1] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/images/16x16/notepad.png] to the cache for web application [/jenkins] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
04-Oct-2018 08:08:56.315 WARNING [http-nio-8083-exec-1] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/images/16x16/computer.png] to the cache for web application [/jenkins] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
04-Oct-2018 08:08:56.316 WARNING [http-nio-8083-exec-1] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/images/16x16/computer-x.png] to the cache for web application [/jenkins] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
04-Oct-2018 08:08:56.316 WARNING [http-nio-8083-exec-1] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/images/16x16/text-error.png] to the cache for web application [/jenkins] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
04-Oct-2018 08:08:56.316 WARNING [http-nio-8083-exec-1] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/images/16x16/document_edit.gif] to the cache for web application [/jenkins] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
04-Oct-2018 08:08:56.316 WARNING [http-nio-8083-exec-1] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/images/16x16/health-20to39.gif] to the cache for web application [/jenkins] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
04-Oct-2018 08:08:56.316 WARNING [http-nio-8083-exec-1] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/images/16x16/grey.png] to the cache for web application [/jenkins] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
04-Oct-2018 08:08:56.316 WARNING [http-nio-8083-exec-1] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/images/16x16/folder-open.png] to the cache for web application [/jenkins] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
04-Oct-2018 08:08:56.317 WARNING [http-nio-8083-exec-1] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/images/16x16/blue_anime.gif] to the cache for web application [/jenkins] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
04-Oct-2018 08:08:56.317 WARNING [http-nio-8083-exec-1] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/images/16x16/edit-select-all.gif] to the cache for web application [/jenkins] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
04-Oct-2018 08:08:56.317 WARNING [http-nio-8083-exec-1] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/images/16x16/document_add.png] to the cache for web application [/jenkins] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
04-Oct-2018 08:08:56.317 WARNING [http-nio-8083-exec-1] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/images/16x16/folder.png] to the cache for web application [/jenkins] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
04-Oct-2018 08:08:56.317 WARNING [http-nio-8083-exec-1] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/images/16x16/blue.gif] to the cache for web application [/jenkins] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
04-Oct-2018 08:08:56.317 WARNING [http-nio-8083-exec-1] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/images/16x16/fingerprint.gif] to the cache for web application [/jenkins] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
04-Oct-2018 08:08:56.317 WARNING [http-nio-8083-exec-1] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/images/16x16/empty.png] to the cache for web application [/jenkins] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
04-Oct-2018 08:08:56.318 WARNING [http-nio-8083-exec-1] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/images/16x16/gear2.gif] to the cache for web application [/jenkins] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
04-Oct-2018 08:08:56.318 WARNING [http-nio-8083-exec-1] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/images/16x16/error.png] to the cache for web application [/jenkins] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
04-Oct-2018 08:08:56.318 WARNING [http-nio-8083-exec-1] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/images/16x16/green_anime.gif] to the cache for web application [/jenkins] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
04-Oct-2018 08:08:56.318 WARNING [http-nio-8083-exec-1] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/images/16x16/person.gif] to the cache for web application [/jenkins] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
04-Oct-2018 08:08:56.318 WARNING [http-nio-8083-exec-1] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/images/16x16/yellow_anime.gif] to the cache for web application [/jenkins] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
04-Oct-2018 08:08:56.318 WARNING [http-nio-8083-exec-1] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/images/16x16/package.gif] to the cache for web application [/jenkins] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
04-Oct-2018 08:08:56.318 WARNING [http-nio-8083-exec-1] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/images/16x16/stop.gif] to the cache for web application [/jenkins] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
04-Oct-2018 08:08:56.319 WARNING [http-nio-8083-exec-1] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/images/16x16/disabled_anime.gif] to the cache for web application [/jenkins] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
04-Oct-2018 08:08:56.319 WARNING [http-nio-8083-exec-1] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/images/16x16/setting.png] to the cache for web application [/jenkins] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
04-Oct-2018 08:08:56.319 WARNING [http-nio-8083-exec-1] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/images/16x16/redo.png] to the cache for web application [/jenkins] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
04-Oct-2018 08:08:56.319 WARNING [http-nio-8083-exec-1] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/images/16x16/empty.gif] to the cache for web application [/jenkins] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
04-Oct-2018 08:08:56.319 WARNING [http-nio-8083-exec-1] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/images/16x16/star.png] to the cache for web application [/jenkins] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
04-Oct-2018 08:08:56.319 WARNING [http-nio-8083-exec-1] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/images/16x16/star-gold.png] to the cache for web application [/jenkins] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
04-Oct-2018 08:08:56.320 WARNING [http-nio-8083-exec-1] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/images/16x16/health-40to59.gif] to the cache for web application [/jenkins] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
04-Oct-2018 08:08:56.320 WARNING [http-nio-8083-exec-1] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/images/16x16/folder.gif] to the cache for web application [/jenkins] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
04-Oct-2018 08:08:56.320 WARNING [http-nio-8083-exec-1] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/images/16x16/search.gif] to the cache for web application [/jenkins] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
04-Oct-2018 08:08:56.320 WARNING [http-nio-8083-exec-1] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/images/16x16/warning.png] to the cache for web application [/jenkins] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
04-Oct-2018 08:08:56.320 WARNING [http-nio-8083-exec-1] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/images/16x16/document_delete.gif] to the cache for web application [/jenkins] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
04-Oct-2018 08:08:56.320 WARNING [http-nio-8083-exec-1] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/images/16x16/go_up.png] to the cache for web application [/jenkins] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
04-Oct-2018 08:08:56.320 WARNING [http-nio-8083-exec-1] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/images/16x16/hourglass.gif] to the cache for web application [/jenkins] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
04-Oct-2018 08:08:56.321 WARNING [http-nio-8083-exec-1] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/images/16x16/health-80plus.png] to the cache for web application [/jenkins] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
04-Oct-2018 08:08:56.321 WARNING [http-nio-8083-exec-1] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/images/16x16/edit-delete.gif] to the cache for web application [/jenkins] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
04-Oct-2018 08:08:56.321 WARNING [http-nio-8083-exec-1] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/images/16x16/text.png] to the cache for web application [/jenkins] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
04-Oct-2018 08:08:56.321 WARNING [http-nio-8083-exec-1] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/images/16x16/orange-square.png] to the cache for web application [/jenkins] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
04-Oct-2018 08:08:56.321 WARNING [http-nio-8083-exec-1] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/images/16x16/red_anime.gif] to the cache for web application [/jenkins] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
04-Oct-2018 08:08:56.321 WARNING [http-nio-8083-exec-1] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/images/16x16/disabled.gif] to the cache for web application [/jenkins] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
04-Oct-2018 08:08:56.322 WARNING [http-nio-8083-exec-1] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/images/16x16/expand.png] to the cache for web application [/jenkins] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
04-Oct-2018 08:08:56.322 WARNING [http-nio-8083-exec-1] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/images/16x16/health-60to79.png] to the cache for web application [/jenkins] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
04-Oct-2018 08:08:56.322 WARNING [http-nio-8083-exec-1] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/images/16x16/terminal.gif] to the cache for web application [/jenkins] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
04-Oct-2018 08:08:56.322 WARNING [http-nio-8083-exec-1] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/images/16x16/clock.gif] to the cache for web application [/jenkins] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
04-Oct-2018 08:08:56.341 WARNING [http-nio-8083-exec-1] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/images/48x48/user.png] to the cache for web application [/jenkins] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
04-Oct-2018 08:08:56.341 WARNING [http-nio-8083-exec-1] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/images/48x48/error.png] to the cache for web application [/jenkins] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
04-Oct-2018 08:08:56.341 WARNING [http-nio-8083-exec-1] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/images/48x48/fingerprint.gif] to the cache for web application [/jenkins] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
04-Oct-2018 08:08:56.341 WARNING [http-nio-8083-exec-1] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/images/48x48/computer-x.gif] to the cache for web application [/jenkins] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
04-Oct-2018 08:08:56.341 WARNING [http-nio-8083-exec-1] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/images/48x48/red_anime.gif] to the cache for web application [/jenkins] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
04-Oct-2018 08:08:56.342 WARNING [http-nio-8083-exec-1] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/images/48x48/attribute.png] to the cache for web application [/jenkins] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
04-Oct-2018 08:08:56.342 WARNING [http-nio-8083-exec-1] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/images/48x48/accept.png] to the cache for web application [/jenkins] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
04-Oct-2018 08:08:56.342 WARNING [http-nio-8083-exec-1] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/images/48x48/star-gold.gif] to the cache for web application [/jenkins] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
04-Oct-2018 08:08:56.342 WARNING [http-nio-8083-exec-1] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/images/48x48/copy.png] to the cache for web application [/jenkins] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
04-Oct-2018 08:08:56.342 WARNING [http-nio-8083-exec-1] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/images/48x48/terminal.png] to the cache for web application [/jenkins] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
04-Oct-2018 08:08:56.342 WARNING [http-nio-8083-exec-1] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/images/48x48/health-40to59.gif] to the cache for web application [/jenkins] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
04-Oct-2018 08:08:56.343 WARNING [http-nio-8083-exec-1] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/images/48x48/network.gif] to the cache for web application [/jenkins] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
04-Oct-2018 08:08:56.343 WARNING [http-nio-8083-exec-1] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/images/48x48/notepad.gif] to the cache for web application [/jenkins] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
04-Oct-2018 08:08:56.343 WARNING [http-nio-8083-exec-1] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/images/48x48/refresh.gif] to the cache for web application [/jenkins] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
04-Oct-2018 08:08:56.343 WARNING [http-nio-8083-exec-1] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/images/48x48/graph.png] to the cache for web application [/jenkins] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
04-Oct-2018 08:08:56.343 WARNING [http-nio-8083-exec-1] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/images/48x48/aborted_anime.gif] to the cache for web application [/jenkins] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
04-Oct-2018 08:08:56.343 WARNING [http-nio-8083-exec-1] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/images/48x48/disabled_anime.gif] to the cache for web application [/jenkins] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
04-Oct-2018 08:08:56.343 WARNING [http-nio-8083-exec-1] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/images/48x48/computer-flash.gif] to the cache for web application [/jenkins] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
04-Oct-2018 08:08:56.344 WARNING [http-nio-8083-exec-1] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/images/48x48/health-00to19.gif] to the cache for web application [/jenkins] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
04-Oct-2018 08:08:56.344 WARNING [http-nio-8083-exec-1] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/images/48x48/search.png] to the cache for web application [/jenkins] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
04-Oct-2018 08:08:56.344 WARNING [http-nio-8083-exec-1] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/images/48x48/help.gif] to the cache for web application [/jenkins] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
04-Oct-2018 08:08:56.344 WARNING [http-nio-8083-exec-1] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/images/48x48/warning.png] to the cache for web application [/jenkins] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
04-Oct-2018 08:08:56.344 WARNING [http-nio-8083-exec-1] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/images/48x48/secure.png] to the cache for web application [/jenkins] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
04-Oct-2018 08:08:56.344 WARNING [http-nio-8083-exec-1] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/images/48x48/yellow.png] to the cache for web application [/jenkins] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
04-Oct-2018 08:08:56.344 WARNING [http-nio-8083-exec-1] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/images/48x48/disabled.gif] to the cache for web application [/jenkins] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
04-Oct-2018 08:08:56.345 WARNING [http-nio-8083-exec-1] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/images/48x48/redo.png] to the cache for web application [/jenkins] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
04-Oct-2018 08:08:56.345 WARNING [http-nio-8083-exec-1] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/images/48x48/folder.gif] to the cache for web application [/jenkins] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
04-Oct-2018 08:08:56.345 WARNING [http-nio-8083-exec-1] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/images/48x48/red.png] to the cache for web application [/jenkins] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
04-Oct-2018 08:08:56.345 WARNING [http-nio-8083-exec-1] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/images/48x48/grey_anime.gif] to the cache for web application [/jenkins] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
04-Oct-2018 08:08:56.345 WARNING [http-nio-8083-exec-1] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/images/48x48/empty.gif] to the cache for web application [/jenkins] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
04-Oct-2018 08:08:56.345 WARNING [http-nio-8083-exec-1] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/images/48x48/monitor.gif] to the cache for web application [/jenkins] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
04-Oct-2018 08:08:56.346 WARNING [http-nio-8083-exec-1] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/images/48x48/clipboard.gif] to the cache for web application [/jenkins] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
04-Oct-2018 08:08:56.346 WARNING [http-nio-8083-exec-1] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/images/48x48/user.gif] to the cache for web application [/jenkins] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
04-Oct-2018 08:08:56.346 WARNING [http-nio-8083-exec-1] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/images/48x48/green_anime.gif] to the cache for web application [/jenkins] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
04-Oct-2018 08:08:56.346 WARNING [http-nio-8083-exec-1] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/images/48x48/package.gif] to the cache for web application [/jenkins] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
04-Oct-2018 08:08:56.346 WARNING [http-nio-8083-exec-1] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/images/48x48/document.gif] to the cache for web application [/jenkins] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
04-Oct-2018 08:08:56.346 WARNING [http-nio-8083-exec-1] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/images/48x48/health-80plus.png] to the cache for web application [/jenkins] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache

04-Oct-2018 08:08:58.660 WARNING [Handling GET /jenkins/adjuncts/38c5bcc7/org/kohsuke/stapler/bind.js from 112.38.110.168 : http-nio-8083-exec-10] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/org/kohsuke/stapler/framework/adjunct/AdjunctManager/index.default.groovy] to the cache for web application [/jenkins] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
04-Oct-2018 08:08:58.660 WARNING [Handling GET /jenkins/adjuncts/38c5bcc7/org/kohsuke/stapler/bind.js from 112.38.110.168 : http-nio-8083-exec-10] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/org/kohsuke/stapler/framework/adjunct/AdjunctManager/index.jelly] to the cache for web application [/jenkins] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
04-Oct-2018 08:08:58.661 WARNING [Handling GET /jenkins/adjuncts/38c5bcc7/org/kohsuke/stapler/bind.js from 112.38.110.168 : http-nio-8083-exec-10] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/org/kohsuke/stapler/framework/adjunct/AdjunctManager/index.default.jelly] to the cache for web application [/jenkins] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
04-Oct-2018 08:08:58.661 WARNING [Handling GET /jenkins/adjuncts/38c5bcc7/org/kohsuke/stapler/bind.js from 112.38.110.168 : http-nio-8083-exec-10] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/side-files/org/kohsuke/stapler/framework/adjunct/AdjunctManager/index.html] to the cache for web application [/jenkins] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
04-Oct-2018 08:08:58.734 WARNING [Handling GET /jenkins/adjuncts/38c5bcc7/org/kohsuke/stapler/bind.js from 112.38.110.168 : http-nio-8083-exec-10] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/org/kohsuke/stapler/.adjunct] to the cache for web application [/jenkins] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
04-Oct-2018 08:08:58.734 WARNING [Handling GET /jenkins/adjuncts/38c5bcc7/org/kohsuke/stapler/bind.js from 112.38.110.168 : http-nio-8083-exec-10] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/org/kohsuke/stapler/bind.js] to the cache for web application [/jenkins] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
04-Oct-2018 08:09:00.761 WARNING [Handling GET /jenkins/static/38c5bcc7/assets/jquery-detached/jsmodules/jquery2.js from 112.38.110.168 : http-nio-8083-exec-8] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/jenkins/model/AssetManager/index.groovy] to the cache for web application [/jenkins] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
04-Oct-2018 08:09:00.762 WARNING [Handling GET /jenkins/static/38c5bcc7/assets/jquery-detached/jsmodules/jquery2.js from 112.38.110.168 : http-nio-8083-exec-8] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/jenkins/model/AssetManager/index.default.groovy] to the cache for web application [/jenkins] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
04-Oct-2018 08:09:00.762 WARNING [Handling GET /jenkins/static/38c5bcc7/assets/jquery-detached/jsmodules/jquery2.js from 112.38.110.168 : http-nio-8083-exec-8] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/jenkins/model/AssetManager/index.jelly] to the cache for web application [/jenkins] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
04-Oct-2018 08:09:00.763 WARNING [Handling GET /jenkins/static/38c5bcc7/assets/jquery-detached/jsmodules/jquery2.js from 112.38.110.168 : http-nio-8083-exec-8] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/jenkins/model/AssetManager/index.default.jelly] to the cache for web application [/jenkins] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
04-Oct-2018 08:09:00.763 WARNING [Handling GET /jenkins/static/38c5bcc7/assets/jquery-detached/jsmodules/jquery2.js from 112.38.110.168 : http-nio-8083-exec-8] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/jenkins/model/AssetManager/index.groovy] to the cache for web application [/jenkins] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
04-Oct-2018 08:09:00.770 WARNING [Handling GET /jenkins/static/38c5bcc7/assets/jquery-detached/jsmodules/jquery2.js from 112.38.110.168 : http-nio-8083-exec-8] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/jenkins/model/AssetManager/index.default.groovy] to the cache for web application [/jenkins] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
04-Oct-2018 08:09:00.771 WARNING [Handling GET /jenkins/static/38c5bcc7/assets/jquery-detached/jsmodules/jquery2.js from 112.38.110.168 : http-nio-8083-exec-8] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/jenkins/model/AssetManager/index.jelly] to the cache for web application [/jenkins] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
04-Oct-2018 08:09:00.771 WARNING [Handling GET /jenkins/static/38c5bcc7/assets/jquery-detached/jsmodules/jquery2.js from 112.38.110.168 : http-nio-8083-exec-8] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/jenkins/model/AssetManager/index.default.jelly] to the cache for web application [/jenkins] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
04-Oct-2018 08:09:00.771 WARNING [Handling GET /jenkins/static/38c5bcc7/assets/jquery-detached/jsmodules/jquery2.js from 112.38.110.168 : http-nio-8083-exec-8] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/side-files/jenkins/model/AssetManager/index.html] to the cache for web application [/jenkins] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
04-Oct-2018 08:09:00.773 WARNING [Handling GET /jenkins/static/38c5bcc7/assets/jquery-detached/jsmodules/jquery2.js from 112.38.110.168 : http-nio-8083-exec-8] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/assets/jquery-detached/jsmodules/jquery2.js] to the cache for web application [/jenkins] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache

4.6 访问Jenkins首页

http://ip:port/jenkins

http://xxx.xxx.xxx.xxx:8083/jenkins/
在这里插入图片描述

贴进去启动过程中打印出来的密码
在这里插入图片描述

继续
在这里插入图片描述
安装默认推荐的插件
在这里插入图片描述

保存并完成

在这里插入图片描述

在这里插入图片描述

至此安装完成

5.安装方式3:docker安装

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

东山富哥

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值