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]# 

1.2 tomcat 8

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

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

1.3 Jenkins 当前版本

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

1.4 linux系统

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

2.Jenkins安装

2.1 上传Jenkins.war包

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

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

2.2 解压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]# 

2.3 启动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

2.4 访问Jenkins首页

http://ip:port/jenkins

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

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

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

保存并完成

在这里插入图片描述

在这里插入图片描述

至此安装完成

猜你喜欢

转载自blog.csdn.net/u014636209/article/details/82935425