TeamCity agent cannot upgrade because of exception occurred

I have teamcity server running on Windows and I try to start agent on Ubuntu (version 22.04) in docker by instruction: https://hub.docker.com/r/jetbrains/teamcity-agent/.

I used the simple command:

docker run -e SERVER_URL="..." -v /home/buildAgent:/data/teamcity_agent/conf jetbrains/teamcity-agent

but I received error: JAVA not found. I installed JAVA. Now I use the next command:

docker run -e JAVA_HOME=/opt/java/openjdk/bin/java -e TEAMCITY_JRE=/opt/java/openjdk/bin/java -e SERVER_URL="..."  -v /home/buildAgent:/data/teamcity_agent/conf -d --name agent jetbrains/teamcity-agent

and agent cannot upgrade. Agent logs (last lines):

[2024-03-06 11:14:20,358]   INFO - .ProcessTreeTerminatorImplBase - Collecting processes from PIDs current process
[2024-03-06 11:14:20,359]   INFO - .ProcessTreeTerminatorImplBase - Will use command 'sh -c echo $$ && ps awwxo pid,ppid,command | tee'.
[2024-03-06 11:14:20,389]   INFO - .ProcessTreeTerminatorImplBase - Will use command 'sh -c echo $$ && ps awwxo pid,ppid,command | tee'.
[2024-03-06 11:14:20,420]   INFO - ses.ProcessTreeTerminatorLinux - Second thread id is 321
[2024-03-06 11:14:20,421]   INFO - ses.ProcessTreeTerminatorLinux - Thread is Process thread model: false
[2024-03-06 11:14:20,421]   INFO - .ProcessTreeTerminatorImplBase - Current process PID 321
[2024-03-06 11:14:20,422]   INFO - .ProcessTreeTerminatorImplBase - No processes to kill
[2024-03-06 11:14:20,422]   INFO -    jetbrains.buildServer.AGENT - Exit for upgrade
[2024-03-06 11:14:20,423]   INFO - ent.impl.upgrade.AgentExitCode - Agent exited. Upgrade process

Logs of upgrade.log file with exception (last lines):

[2024-03-06 11:14:25,509]   INFO - ver.agent.upgrade.AgentUpgrade - Finish upgrade at 2024-03-06 11:14:25.509
[2024-03-06 11:14:25,509]   INFO - r.agent.upgrade.UpgradeRunBase - Run command line (arguments separated with '|'): /bin/sh|./agent.sh|start| (at /opt/buildagent/bin)
[2024-03-06 11:14:25,514]   INFO - .agent.run.ProcessOutputLogger - Starting TeamCity build agent...
[2024-03-06 11:14:25,970]   INFO - .agent.run.ProcessOutputLogger - Java not found. Cannot start TeamCity agent. Please ensure JDK or JRE is installed and JAVA_HOME environment variable points to it.
[2024-03-06 11:14:25,970]   INFO - r.agent.upgrade.UpgradeRunBase - Process exited with code: 1
[2024-03-06 11:14:25,971]  ERROR - r.agent.upgrade.UpgradeRunBase - Failed to start upgrade process. Return code was 1 is not equal to zero.
[2024-03-06 11:14:25,970]   WARN - .agent.run.ProcessOutputLogger -
[2024-03-06 11:14:25,972]  ERROR - r.agent.upgrade.UpgradeRunBase - Failed to start agent after upgrade: java.io.IOException: Failed to start upgrade process. Return code was 1 is not equal to zero.
java.io.IOException: Failed to start upgrade process. Return code was 1 is not equal to zero.
       at jetbrains.buildServer.agent.upgrade.UpgradeRunBase.runCmdLine(UpgradeRunBase.java:104) ~[launcher.jar:117072]
       at jetbrains.buildServer.agent.upgrade.RunShUpgrade.startAgain(RunShUpgrade.java:36) ~[launcher.jar:117072]
       at jetbrains.buildServer.agent.upgrade.UpgradeRunBase.run(UpgradeRunBase.java:51) ~[launcher.jar:117072]
       at jetbrains.buildServer.agent.upgrade.UpgradeMode$5.run(UpgradeMode.java:133) ~[launcher.jar:117072]
       at jetbrains.buildServer.agent.upgrade.Upgrade2$1.lockHeld(Upgrade2.java:57) ~[launcher.jar:117072]
       at jetbrains.buildServer.agent.upgrade.Upgrade2$1.lockHeld(Upgrade2.java:55) ~[launcher.jar:117072]
       at jetbrains.buildServer.agent.lock.impl.misc.MockLock.assumeLocked(MockLock.java:22) ~[launcher.jar:117072]
       at jetbrains.buildServer.agent.lock.impl.misc.MockLock.tryLock(MockLock.java:14) ~[launcher.jar:117072]
       at jetbrains.buildServer.agent.upgrade.Upgrade2.main3(Upgrade2.java:54) ~[launcher.jar:117072]
       at jetbrains.buildServer.agent.upgrade.Upgrade2.main2(Upgrade2.java:27) ~[launcher.jar:117072]
       at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?]
       at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) ~[?:?]
       at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?]
       at java.lang.reflect.Method.invoke(Method.java:568) ~[?:?]
       at jetbrains.buildServer.agent.ClazzLoader.call(ClazzLoader.java:59) ~[launcher.jar:117072]
       at jetbrains.buildServer.agent.ClazzLoader.callMain2(ClazzLoader.java:19) ~[launcher.jar:117072]
       at jetbrains.buildServer.agent.upgrade.Upgrade.main(Upgrade.java:16) ~[launcher.jar:117072]

I don't understand why Java not found because I set JAVA_HOME variable. Could anybody help?

 

0
11 comments
Hi,

There is no need to set environment variables for the Docker container. 
Could you provide the full output when you start the container with a command from the documentation? This command should be enough to start the container and connect the build agent with the server, so I need to check at what point of the startup the error is encountered.

Best regards,
Anton
0

Ok, I have started container with documentation command. 

Full output:

/run-services.sh
/services/run-docker.sh
/run-agent.sh
File buildAgent.properties was found in /data/teamcity_agent/conf. Will start the agent using it.
Starting TeamCity build agent...
Java executable is found: '/opt/java/openjdk/bin/java'
Starting TeamCity Build Agent Launcher...
Agent home directory is /opt/buildagent
Done [372], see log at /opt/buildagent/logs/teamcity-agent.log
.....



[2024-03-19 06:21:59,955]   INFO - s.buildServer.agent.AgentMain2 - ===========================================================
[2024-03-19 06:21:59,967]   INFO - s.buildServer.agent.AgentMain2 - TeamCity Build Agent 2023.11.4 (build 147586)
[2024-03-19 06:21:59,978]   INFO - s.buildServer.agent.AgentMain2 - OS: Linux, version 5.15.0-97-generic, amd64, Current user: buildagent, Time zone: GMT (UTC)
[2024-03-19 06:21:59,978]   INFO - s.buildServer.agent.AgentMain2 - Java: 17.0.7, OpenJDK 64-Bit Server VM (17.0.7+7-LTS, mixed mode, sharing), OpenJDK Runtime Environment (17.0.7+7-LTS), Amazon.com Inc.; JVM parameters: -ea -XX:+DisableAttachMechanism --add-opens=java.base/java.lang=ALL-UNNAMED -XX:+IgnoreUnrecognizedVMOptions -Xmx384m -Dteamcity_logs=../logs/ -Dlog4j2.configurationFile=file:../conf/teamcity-agent-log4j2.xml
[2024-03-19 06:21:59,979]   INFO - s.buildServer.agent.AgentMain2 - Agent home is "/opt/buildagent"
[2024-03-19 06:21:59,979]   INFO - s.buildServer.agent.AgentMain2 - Starting...
[2024-03-19 06:22:01,248]   INFO -    jetbrains.buildServer.AGENT - Calculating CPU benchmark index...
[2024-03-19 06:22:01,492]   INFO - dAgentConfigurationInitializer - Loading build agent configuration from /data/teamcity_agent/conf/buildAgent.properties
[2024-03-19 06:22:01,554]   INFO - s.buildServer.agent.AgentMain2 - Working dir: /opt/buildagent/work
[2024-03-19 06:22:01,554]   INFO - s.buildServer.agent.AgentMain2 - Temp dir: /opt/buildagent/temp
[2024-03-19 06:22:01,564]   INFO - rver.plugins.PluginManagerImpl - ===========================================================
[2024-03-19 06:22:01,565]   INFO - rver.plugins.PluginManagerImpl - Plugins initialization started...
[2024-03-19 06:22:01,565]   INFO - rver.plugins.PluginManagerImpl - Scanning plugins folders
[2024-03-19 06:22:01,567]   INFO - .plugins.files.JarSearcherBase - Scanning plugin folder: /opt/buildagent/plugins
[2024-03-19 06:22:01,847]   INFO - .plugins.files.JarSearcherBase - Scanning plugin folder: /opt/buildagent/tools
[2024-03-19 06:22:01,874]   INFO - rver.plugins.PluginManagerImpl - Found 58 non bundled plugins: [agentSystemInfo, amazonEC2, ant, ant-net-tasks, antPlugin, aws-core-agent, cloud-vmware-agent, commandLineRunner, coveragePlugin, crashDetector, deploy-runner-agent, docker-support, dotnet, dotnetPlugin, dotNetRunners, duplicatePlugin, environment-fetcher-agent, file-content-replacer, file-to-build-log-streaming-plugin-agent, fxcop, gant, gantPlugin, golang-agent, gradle-runner, idea-runner, inspectionPlugin, java-dowser, jetbrains.git, jps, junitPlugin, jvm-update, kotlin-script-runner-agent-147586, mavenPlugin, mercurial, meta-runner, nodejs-agent-147586, nuget-agent, perfmon-agent, perforce-agent, plugin-agent, python-agent-147586, qodana, rake-runner, remoteAccess, s3-artifact-storage-agent, sbt-runner-agent, ssh-manager, stacktracesPlugin, svnAgent, swabra, teamcity-agent-terminal-plugin-agent, teamcity-kubernetes-plugin-agent, teamcity-parallel-tests-agent, testNGPlugin, tfs-agent, visualstudiotest-agent, xcode-runner, xml-report-plugin]
[2024-03-19 06:22:01,874]   INFO - rver.plugins.PluginManagerImpl - Found 0 bundled plugins: []
[2024-03-19 06:22:01,884]   INFO - les.ExecutableAttributesSetter - Setting executable bit for: /opt/buildagent/tools/gant/bin/gant
[2024-03-19 06:22:01,884]   INFO - les.ExecutableAttributesSetter - Setting executable bit for: /opt/buildagent/tools/gant/bin/startGroovy
[2024-03-19 06:22:01,885]   INFO - les.ExecutableAttributesSetter - Setting executable bit for: /opt/buildagent/plugins/ant/bin/ant
[2024-03-19 06:22:01,885]   INFO - les.ExecutableAttributesSetter - Setting executable bit for: /opt/buildagent/plugins/ant/bin/antRun
[2024-03-19 06:22:01,885]   INFO - les.ExecutableAttributesSetter - Setting executable bit for: /opt/buildagent/plugins/ant/bin/ant.bat
[2024-03-19 06:22:01,885]   INFO - les.ExecutableAttributesSetter - Setting executable bit for: /opt/buildagent/plugins/ant/bin/ant.cmd
[2024-03-19 06:22:01,885]   INFO - les.ExecutableAttributesSetter - Setting executable bit for: /opt/buildagent/plugins/ant/bin/antenv.cmd
[2024-03-19 06:22:01,886]   INFO - les.ExecutableAttributesSetter - Setting executable bit for: /opt/buildagent/plugins/ant/bin/envset.cmd
[2024-03-19 06:22:01,886]   INFO - les.ExecutableAttributesSetter - Setting executable bit for: /opt/buildagent/plugins/ant/bin/lcp.bat
[2024-03-19 06:22:01,886]   INFO - les.ExecutableAttributesSetter - Setting executable bit for: /opt/buildagent/plugins/ant/bin/runrc.cmd
[2024-03-19 06:22:01,886]   INFO - les.ExecutableAttributesSetter - Setting executable bit for: /opt/buildagent/plugins/ant/bin/antRun.pl
[2024-03-19 06:22:01,886]   INFO - les.ExecutableAttributesSetter - Setting executable bit for: /opt/buildagent/plugins/ant/bin/complete-ant-cmd.pl
[2024-03-19 06:22:01,886]   INFO - les.ExecutableAttributesSetter - Setting executable bit for: /opt/buildagent/plugins/ant/bin/runant.pl
[2024-03-19 06:22:01,887]   INFO - les.ExecutableAttributesSetter - Setting executable bit for: /opt/buildagent/plugins/ant/bin/runant.py
[2024-03-19 06:22:01,890]   INFO - rver.plugins.PluginsCollection - Load shared classloader for 19 plugins [agentSystemInfo, ant, commandLineRunner, crashDetector, dotnetPlugin, dotNetRunners, environment-fetcher-agent, file-content-replacer, fxcop, gradle-runner, java-dowser, jetbrains.git, mercurial, remoteAccess, ssh-manager, stacktracesPlugin, swabra, visualstudiotest-agent, xml-report-plugin]
[2024-03-19 06:22:01,932]   INFO - rver.plugins.PluginsCollection - Load standalone classloaders for 36 plugins [amazonEC2, antPlugin, aws-core-agent, cloud-vmware-agent, coveragePlugin, deploy-runner-agent, docker-support, dotnet, duplicatePlugin, file-to-build-log-streaming-plugin-agent, gantPlugin, golang-agent, idea-runner, inspectionPlugin, junitPlugin, jvm-update, kotlin-script-runner-agent-147586, mavenPlugin, meta-runner, nodejs-agent-147586, nuget-agent, perfmon-agent, perforce-agent, plugin-agent, python-agent-147586, qodana, rake-runner, s3-artifact-storage-agent, sbt-runner-agent, svnAgent, teamcity-agent-terminal-plugin-agent, teamcity-kubernetes-plugin-agent, teamcity-parallel-tests-agent, testNGPlugin, tfs-agent, xcode-runner]
[2024-03-19 06:22:02,268]   INFO - gers.vcs.git.MirrorManagerImpl - No mapping file found at /opt/buildagent/system/git/map, create a new one
[2024-03-19 06:22:02,269]   INFO - gers.vcs.git.MirrorManagerImpl - Restore mapping from existing repositories
[2024-03-19 06:22:02,271]   INFO - gers.vcs.git.MirrorManagerImpl - No existing repositories found
[2024-03-19 06:22:02,630]   INFO - KubeAgentConfigurationProvider - Initializing Kube Provider...
[2024-03-19 06:22:03,516]   INFO - .vmware.VMWarePropertiesReader - VSphere plugin initializing...
[2024-03-19 06:22:03,525]   INFO - .vmware.VMWarePropertiesReader - Unable to locate vmware-rpctool. Looks like not a VMWare VM or VWWare tools are not installed
[2024-03-19 06:22:04,630]   INFO - t.golang.BuildMessagesListener - Init the Golang plugin
[2024-03-19 06:22:05,375]   INFO - rver.plugins.PluginManagerImpl - Plugins initialization completed (58 plugins loaded): [agentSystemInfo, amazonEC2, ant, ant-net-tasks, antPlugin, aws-core-agent, cloud-vmware-agent, commandLineRunner, coveragePlugin, crashDetector, deploy-runner-agent, docker-support, dotnet, dotnetPlugin, dotNetRunners, duplicatePlugin, environment-fetcher-agent, file-content-replacer, file-to-build-log-streaming-plugin-agent, fxcop, gant, gantPlugin, golang-agent, gradle-runner, idea-runner, inspectionPlugin, java-dowser, jetbrains.git, jps, junitPlugin, jvm-update, kotlin-script-runner-agent-147586, mavenPlugin, mercurial, meta-runner, nodejs-agent-147586, nuget-agent, perfmon-agent, perforce-agent, plugin-agent, python-agent-147586, qodana, rake-runner, remoteAccess, s3-artifact-storage-agent, sbt-runner-agent, ssh-manager, stacktracesPlugin, svnAgent, swabra, teamcity-agent-terminal-plugin-agent, teamcity-kubernetes-plugin-agent, teamcity-parallel-tests-agent, testNGPlugin, tfs-agent, visualstudiotest-agent, xcode-runner, xml-report-plugin]
[2024-03-19 06:22:05,377]   INFO - rver.plugins.PluginManagerImpl - ===========================================================
[2024-03-19 06:22:05,413]   INFO -    jetbrains.buildServer.AGENT - Build Agent version: 147586, plugins signature: 147586-md5-e591f8e9d52a453550ac64a1135b9daa
[2024-03-19 06:22:05,547]   INFO - ggers.vcs.mercurial.HgDetector - Detect installed mercurial at path hg, provide it as a property teamcity.hg.agent.path
[2024-03-19 06:22:05,548]   INFO - dAgentConfigurationInitializer - Loading build agent configuration from /data/teamcity_agent/conf/buildAgent.properties
[2024-03-19 06:22:07,261]   INFO -    jetbrains.buildServer.AGENT - CPU benchmark index is set to 653
[2024-03-19 06:22:08,584]   INFO - n.AmazonInstanceMetadataReader - Amazon is not available. Amazon EC2 integration is not active: Failed to connect to http://169.254.169.254/latest/api/token. The host did not accept the connection within timeout of 3000 ms
[2024-03-19 06:22:08,585]   INFO - KubeAgentConfigurationProvider - TeamCity Server URL was not provided. The instance wasn't started using TeamCity Kube integration.
[2024-03-19 06:22:08,609]   INFO -    jetbrains.buildServer.AGENT - Start build agent
[2024-03-19 06:22:08,618]   INFO -    jetbrains.buildServer.AGENT - Agent Web server started on port 9090
[2024-03-19 06:22:08,619]   INFO -    jetbrains.buildServer.AGENT - Start probing plugins for the configuration parameters to store
[2024-03-19 06:22:08,632]   WARN - r.mono.MonoPropertiesExtension - Failed to start pkg-config. Cannot run program "pkg-config": error=2, No such file or directory
[2024-03-19 06:22:08,633]   INFO - r.mono.MonoPropertiesExtension - Can't get mono version through pkg-config. Try "pkg-config --modversion mono" from the console
[2024-03-19 06:22:08,634]   INFO - r.mono.MonoPropertiesExtension - Check PKG_CONFIG_PATH if mono was installed to non-standard prefix (not /usr or /usr/local)
[2024-03-19 06:22:08,647]   INFO - r.mono.MonoPropertiesExtension - Mono not found
[2024-03-19 06:22:08,683]   INFO - .agent.AgentStartupGitDetector - Detected git at /usr/bin/git
[2024-03-19 06:22:08,833]   INFO - ent.javaDowser.JavaDowserAgent - JavaDowser: Found 1 java installations:
        17/64/amd64 (17.0.7) at /opt/java/openjdk (JDK) [200]
[2024-03-19 06:22:09,040]   INFO - rains.buildServer.AGENT.DOCKER - Docker client is available: 20.10.12
[2024-03-19 06:22:09,041]   INFO - rains.buildServer.AGENT.DOCKER - Docker server is not available. Check whether docker daemon exists and it is up and running.
[2024-03-19 06:22:09,041]   INFO - rains.buildServer.AGENT.DOCKER - Failed to locate a running Podman container engine.
[2024-03-19 06:22:09,041]   INFO - ialProviderPropertiesExtension - Found .NET credential provider DotNetCredentialProvider4.0.0_Path at /opt/buildagent/plugins/nuget-agent/bin/credential-plugin/net46/CredentialProvider.TeamCity.exe
[2024-03-19 06:22:09,044]   INFO - ialProviderPropertiesExtension - Found .NET credential provider DotNetCredentialProvider1.0.0_Path at /opt/buildagent/plugins/nuget-agent/bin/credential-plugin/netcoreapp1.0/CredentialProvider.TeamCity.dll
[2024-03-19 06:22:09,044]   INFO - ialProviderPropertiesExtension - Found .NET credential provider DotNetCredentialProvider2.0.0_Path at /opt/buildagent/plugins/nuget-agent/bin/credential-plugin/netcoreapp2.0/CredentialProvider.TeamCity.dll
[2024-03-19 06:22:09,044]   INFO - ialProviderPropertiesExtension - Found .NET credential provider DotNetCredentialProvider3.0.0_Path at /opt/buildagent/plugins/nuget-agent/bin/credential-plugin/netcoreapp3.0/CredentialProvider.TeamCity.dll
[2024-03-19 06:22:09,045]   INFO - ialProviderPropertiesExtension - Found .NET credential provider DotNetCredentialProvider5.0.0_Path at /opt/buildagent/plugins/nuget-agent/bin/credential-plugin/net5.0/CredentialProvider.TeamCity.dll
[2024-03-19 06:22:09,045]   INFO - ialProviderPropertiesExtension - Found .NET credential provider DotNetCredentialProvider6.0.0_Path at /opt/buildagent/plugins/nuget-agent/bin/credential-plugin/net6.0/CredentialProvider.TeamCity.dll
[2024-03-19 06:22:09,047]   INFO - t.resolver.AgentPythonResolver - Python 2.x executable found at /usr/bin/python2
[2024-03-19 06:22:09,048]   INFO - Server.powershell.agent.DETECT - Detecting PowerShell using RegistryPowerShellDetector
[2024-03-19 06:22:09,048]   INFO - Server.powershell.agent.DETECT - RegistryPowerShellDetector is only available on Windows
[2024-03-19 06:22:09,048]   INFO - Server.powershell.agent.DETECT - Detecting PowerShell using CommandLinePowerShellDetector
[2024-03-19 06:22:09,050]   INFO - Server.powershell.agent.DETECT - No PowerShell detected. If it is installed in non-standard location, please provide install locations in teamcity.powershell.detector.search.paths agent property (with ';' as a separator)
[2024-03-19 06:22:09,065]   INFO - .agent.impl.OsArchBitsDetector - Detecting via "getconf LONG_BIT", exit code: 0, output: 64
[2024-03-19 06:22:09,066]   INFO - .agent.impl.OsArchBitsDetector - "teamcity.agent.os.arch.bits" detected as "64"
[2024-03-19 06:22:09,066]   INFO - rver.agent.PropertiesExtension - Start: Fetched agent properties
[2024-03-19 06:22:09,112]   INFO - rver.agent.PropertiesExtension - DotNetCLI_Path="/usr/share/dotnet/dotnet".
[2024-03-19 06:22:09,121]   INFO - rver.agent.PropertiesExtension - DotNetCoreRuntime6.0_Path="/usr/share/dotnet/shared/Microsoft.NETCore.App/6.0.21".
[2024-03-19 06:22:09,122]   INFO - rver.agent.PropertiesExtension - DotNetCoreRuntime6.0.21_Path="/usr/share/dotnet/shared/Microsoft.NETCore.App/6.0.21".
[2024-03-19 06:22:09,146]   INFO - ileBasedDotnetWorkloadProvider - .NET workloads are not found in directory "/usr/share/dotnet/metadata/workloads". The directory does not exist
[2024-03-19 06:22:09,290]   INFO - .agent.CommandLineExecutorImpl - <--- "/usr/share/dotnet/dotnet --version" exits with code: 0
[2024-03-19 06:22:09,291]   INFO - rver.agent.PropertiesExtension - DotNetCLI="6.0.413".
[2024-03-19 06:22:09,291]   INFO - rver.agent.PropertiesExtension - DotNetCoreSDK6.0_Path="/usr/share/dotnet/sdk/6.0.413".
[2024-03-19 06:22:09,291]   INFO - rver.agent.PropertiesExtension - DotNetCoreSDK6.0.413_Path="/usr/share/dotnet/sdk/6.0.413".
[2024-03-19 06:22:09,295]   INFO - rver.agent.PropertiesExtension - Finish: Fetched agent properties (228 ms)
[2024-03-19 06:22:09,296]   INFO - t.resolver.AgentPythonResolver - Python 3.x executable found at /usr/bin/python3
[2024-03-19 06:22:09,300]   INFO -    jetbrains.buildServer.AGENT - Stop probing plugins for the configuration parameters to store
[2024-03-19 06:22:09,311]   INFO - agent.impl.AgentPortFileWriter - Writing agent runtime file to /opt/buildagent/logs/buildAgent.xmlRpcPort
[2024-03-19 06:22:09,311]   INFO - agent.impl.AgentPortFileWriter - Launcher version is 147586
[2024-03-19 06:22:09,312]   INFO - agent.impl.AgentPortFileWriter - Writing agent runtime file to /opt/buildagent/logs/buildAgent.xmlRpcPort :DONE!
[2024-03-19 06:22:09,338]   INFO - nstall.PackagesInstallerRunner - NuGet requires .NET Framework (x86) 4.0 and higher or Mono 3.2 and higher to be installed.
[2024-03-19 06:22:09,339]   INFO - t.agent.runner.pack.PackRunner - NuGet requires .NET Framework (x86) 4.0 and higher or Mono 3.2 and higher to be installed.
[2024-03-19 06:22:09,339]   INFO - .publish.PackagesPublishRunner - NuGet requires .NET Framework (x86) 4.0 and higher or Mono 3.2 and higher to be installed.
[2024-03-19 06:22:09,339]   INFO - ent.DotNetRunnersCompatibility - jetbrains.dotNetGenericRunner runner can work only under Windows or on any other OS with installed mono runtime
[2024-03-19 06:22:09,339]   INFO - nner.agent.MSpecServiceFactory - MSpec runner is only available under windows
[2024-03-19 06:22:09,347]   INFO - ent.DotNetRunnersCompatibility - MSBuild runner can work only under Windows or on any other OS with installed mono runtime
[2024-03-19 06:22:09,351]   INFO - ent.DotNetRunnersCompatibility - NAnt runner can work only under Windows or on any other OS with installed mono runtime
[2024-03-19 06:22:09,352]   INFO - ent.DotNetRunnersCompatibility - NUnit runner can work only under Windows or on any other OS with installed mono runtime
[2024-03-19 06:22:09,353]   INFO - ent.DotNetRunnersCompatibility - sln2003 runner can work only under Windows or on any other OS with installed mono runtime
[2024-03-19 06:22:09,353]   INFO - ent.DotNetRunnersCompatibility - VS.Solution runner can work only under Windows or on any other OS with installed mono runtime
[2024-03-19 06:22:09,347]   INFO - Server.powershell.agent.DETECT - Agent has been initialized from cache, registering powershells from configuration
[2024-03-19 06:22:09,357]   INFO -    jetbrains.buildServer.AGENT - Build agent started
[2024-03-19 06:22:09,361]   INFO - buildServer.AGENT.registration - Registering on server via URL "http://deleted": AgentDetails{Name='ip_178.177.36.241', AgentId=null, BuildId=null, AgentOwnAddress='null', AlternativeAddresses=[], Port=9090, Version='147586', PluginsVersion='147586-md5-e591f8e9d52a453550ac64a1135b9daa', AvailableRunners=[Ant, cargo-deploy-runner, csharpScript, DockerCommand, dotnet, dotnet-tools-dupfinder, dotnet-tools-inspectcode, Duplicator, ftp-deploy-runner, gradle-runner, Inspection, jetbrains_powershell, JPS, kotlinScript, Maven2, nodejs-runner, python-runner, Qodana, rake-runner, SBT, simpleRunner, smb-deploy-runner, ssh-deploy-runner, ssh-exec-runner], AvailableVcs=[tfs, jetbrains.git, mercurial, svn, perforce], AuthorizationToken='046e7f10215d75e5a3b7294cc1ecfe0f', PingCode='31dG1CiL6OdUvfyE9PdbRqW2qbgOrqPU'}
[2024-03-19 06:22:09,571]   INFO - buildServer.AGENT.registration - Server supports the following communication protocols: [polling]
[2024-03-19 06:22:09,572]   INFO - buildServer.AGENT.registration - Trying to register on server using 'polling' protocol.
[2024-03-19 06:22:09,731]   INFO - ldServer.AGENT.PollingProtocol - Start polling server for commands
[2024-03-19 06:22:09,738]   INFO - buildServer.AGENT.registration - Registered on server with id 73 and authorization token '046e7f10215d75e5a3b7294cc1ecfe0f'
[2024-03-19 06:22:09,739]   INFO - buildServer.AGENT.registration - If this is the first time this agent registered on the server make sure it is authorized by administrator in the server web UI.
[2024-03-19 06:22:09,742]   INFO - ldServer.AGENT.PollingProtocol - New command is received from server "testLocal" {id = 1157}
[2024-03-19 06:22:09,807]   INFO - r.artifacts.impl.HttpDiskCache - Cleaning up items with life time in cache greater than 172800 seconds
[2024-03-19 06:22:09,808]   INFO - r.artifacts.impl.HttpDiskCache - Finished cleaning up expired items, 0 items removed
[2024-03-19 06:22:09,984]   INFO - dDirectoryBasedCleanupRegistry - Removing files from /opt/buildagent/temp/.old
[2024-03-19 06:22:09,985]   INFO - dDirectoryBasedCleanupRegistry - Removing files from /opt/buildagent/work/.old
[2024-03-19 06:22:10,023]   INFO - l.directories.DirectoryMapImpl - Cleaning up old checkout directories. Default lifetime = 192 hour(s)
[2024-03-19 06:22:10,257]   INFO - ldServer.AGENT.PollingProtocol - New command is received from server "upgrade" {id = 1158}
[2024-03-19 06:22:10,261]   INFO -    jetbrains.buildServer.AGENT - Upgrade call received from the server
[2024-03-19 06:22:10,264]   INFO -    jetbrains.buildServer.AGENT - Will upgrade when become idle
[2024-03-19 06:22:10,266]   INFO -    jetbrains.buildServer.AGENT - Wait for build agent registration to finish
[2024-03-19 06:22:10,266]   INFO -    jetbrains.buildServer.AGENT - Registration of build agent is finished.
[2024-03-19 06:22:10,277]   INFO -    jetbrains.buildServer.AGENT - Downloading http://deleted/update/teamcity-agent.xml ==> /opt/buildagent/temp/nbIP2KqMRfXb4YfO7hUs5LW45QUAsaBP
[2024-03-19 06:22:10,288]   INFO -    jetbrains.buildServer.AGENT - An agent restart is necessary for this upgrade; will restart once all preparations are complete
[2024-03-19 06:22:10,289]   INFO -    jetbrains.buildServer.AGENT - Stop command was not performed. No build to stop with reason: agent shutdown
[2024-03-19 06:22:10,289]   INFO -    jetbrains.buildServer.AGENT - Starting agent shutdown sequence, reason: Restart agent, failed to download upgrade from server
[2024-03-19 06:22:10,291]   INFO - gent.impl.DiskSpaceCleanerImpl - Try to ensure 3 GB free space under directory /opt/buildagent/update before upgrade. Currently available 32.15 GB
[2024-03-19 06:22:10,291]   INFO -    jetbrains.buildServer.AGENT - Upgrade mode: jetbrains.buildServer.agent.impl.upgrade.modes.AgentOnlyUpgradeMode
[2024-03-19 06:22:10,291]   INFO -    jetbrains.buildServer.AGENT - Downloading http://deleted/update/buildAgent.zip ==> /opt/buildagent/update/buildAgent.zip
[2024-03-19 06:22:10,298]   INFO - agent.impl.AgentPortFileWriter - Delete agent runtime file from /opt/buildagent/logs/buildAgent.xmlRpcPort
[2024-03-19 06:22:10,299]   INFO - ldServer.AGENT.PollingProtocol - Stop polling server for commands
[2024-03-19 06:22:10,301]   INFO -    jetbrains.buildServer.AGENT - Unregistering from the server. Agent id: 73
[2024-03-19 06:22:10,302]   INFO -    jetbrains.buildServer.AGENT - Before unregistering from the server.
[2024-03-19 06:22:10,420]   INFO -    jetbrains.buildServer.AGENT - Unregistered from the server.
[2024-03-19 06:22:10,423]   INFO -    jetbrains.buildServer.AGENT - Shutdown agent WebServer start
[2024-03-19 06:22:10,423]   INFO -    jetbrains.buildServer.AGENT - Shutdown agent WebServer finish
[2024-03-19 06:22:10,423]   INFO -    jetbrains.buildServer.AGENT - Shutdown agent finish
[2024-03-19 06:22:10,866]   INFO -    jetbrains.buildServer.AGENT - The file /opt/buildagent/update/buildAgent.zip has been downloaded successfully, file hash: SHA-10NR7V8LMark20gZIPp6GmJAqT0s=
[2024-03-19 06:22:10,884]   INFO -    jetbrains.buildServer.AGENT - Downloading http://deleted/update/plugins/agentSystemInfo.zip ==> /opt/buildagent/update/plugins/agentSystemInfo.zip
[2024-03-19 06:22:10,914]   INFO -    jetbrains.buildServer.AGENT - The file /opt/buildagent/update/plugins/agentSystemInfo.zip has been downloaded successfully, file hash: SHA-1gpIpMdrskBE0nbv14WuQVqNMzGY=
[2024-03-19 06:22:10,914]   INFO -    jetbrains.buildServer.AGENT - Downloading http://deleted/update/plugins/amazonEC2.zip ==> /opt/buildagent/update/plugins/amazonEC2.zip
[2024-03-19 06:22:10,937]   INFO -    jetbrains.buildServer.AGENT - The file /opt/buildagent/update/plugins/amazonEC2.zip has been downloaded successfully, file hash: SHA-1Inqu5o0qC4Kq7CfLDoabGo+fVX0=
[2024-03-19 06:22:10,938]   INFO -    jetbrains.buildServer.AGENT - Downloading http://deleted/update/plugins/ant-net-tasks.zip ==> /opt/buildagent/update/plugins/ant-net-tasks.zip
[2024-03-19 06:22:10,983]   INFO -    jetbrains.buildServer.AGENT - The file /opt/buildagent/update/plugins/ant-net-tasks.zip has been downloaded successfully, file hash: SHA-1NZNUNjqbU7/dYThaIl0LPXe/vos=
[2024-03-19 06:22:10,983]   INFO -    jetbrains.buildServer.AGENT - Downloading http://deleted/update/plugins/ant.zip ==> /opt/buildagent/update/plugins/ant.zip
[2024-03-19 06:22:11,074]   INFO -    jetbrains.buildServer.AGENT - The file /opt/buildagent/update/plugins/ant.zip has been downloaded successfully, file hash: SHA-100Pzbx1RAJgj6s0Sapu5uhhrMvQ=
[2024-03-19 06:22:11,074]   INFO -    jetbrains.buildServer.AGENT - Downloading http://deleted/update/plugins/antPlugin.zip ==> /opt/buildagent/update/plugins/antPlugin.zip
[2024-03-19 06:22:11,103]   INFO -    jetbrains.buildServer.AGENT - The file /opt/buildagent/update/plugins/antPlugin.zip has been downloaded successfully, file hash: SHA-1xwTSLDiw8vU/R+YnWX+W5C7jU3o=
[2024-03-19 06:22:11,104]   INFO -    jetbrains.buildServer.AGENT - Downloading http://deleted/update/plugins/aws-core-agent.zip ==> /opt/buildagent/update/plugins/aws-core-agent.zip
[2024-03-19 06:22:11,310]   INFO -    jetbrains.buildServer.AGENT - The file /opt/buildagent/update/plugins/aws-core-agent.zip has been downloaded successfully, file hash: SHA-1CkgvLzd/UpHYQtuJHp4unJ+0SvA=
[2024-03-19 06:22:11,310]   INFO -    jetbrains.buildServer.AGENT - Downloading http://deleted/update/plugins/cloud-vmware-agent.zip ==> /opt/buildagent/update/plugins/cloud-vmware-agent.zip
[2024-03-19 06:22:11,333]   INFO -    jetbrains.buildServer.AGENT - The file /opt/buildagent/update/plugins/cloud-vmware-agent.zip has been downloaded successfully, file hash: SHA-1UJvqiVsJbLGNfSjMRQckQx1uB24=
[2024-03-19 06:22:11,333]   INFO -    jetbrains.buildServer.AGENT - Downloading http://deleted/update/plugins/coveragePlugin.zip ==> /opt/buildagent/update/plugins/coveragePlugin.zip
[2024-03-19 06:22:11,401]   INFO -    jetbrains.buildServer.AGENT - The file /opt/buildagent/update/plugins/coveragePlugin.zip has been downloaded successfully, file hash: SHA-1Z69HiMC+JSGhHAZb4DPTJ8g+oFA=
[2024-03-19 06:22:11,401]   INFO -    jetbrains.buildServer.AGENT - Downloading http://deleted/update/plugins/crashDetector.zip ==> /opt/buildagent/update/plugins/crashDetector.zip
[2024-03-19 06:22:11,422]   INFO -    jetbrains.buildServer.AGENT - The file /opt/buildagent/update/plugins/crashDetector.zip has been downloaded successfully, file hash: SHA-1OQGlXuW89LG/y+zmbAKq0Wo4qfA=
[2024-03-19 06:22:11,422]   INFO -    jetbrains.buildServer.AGENT - Downloading http://deleted/update/plugins/deploy-runner-agent.zip ==> /opt/buildagent/update/plugins/deploy-runner-agent.zip
[2024-03-19 06:22:11,722]   INFO -    jetbrains.buildServer.AGENT - The file /opt/buildagent/update/plugins/deploy-runner-agent.zip has been downloaded successfully, file hash: SHA-1+1KS1iSHBgr8Y4qdL9FFR+YcUaM=
[2024-03-19 06:22:11,722]   INFO -    jetbrains.buildServer.AGENT - Downloading http://deleted/update/plugins/docker-support.zip ==> /opt/buildagent/update/plugins/docker-support.zip
[2024-03-19 06:22:11,964]   INFO -    jetbrains.buildServer.AGENT - The file /opt/buildagent/update/plugins/docker-support.zip has been downloaded successfully, file hash: SHA-1O9co1rxa/Tqv1W39HpXzeO3rL6Y=
[2024-03-19 06:22:11,964]   INFO -    jetbrains.buildServer.AGENT - Downloading http://deleted/update/plugins/dotNetPlugin.zip ==> /opt/buildagent/update/plugins/dotNetPlugin.zip
[2024-03-19 06:22:12,455]   INFO -    jetbrains.buildServer.AGENT - The file /opt/buildagent/update/plugins/dotNetPlugin.zip has been downloaded successfully, file hash: SHA-1ceBy2el9uyxVd5wuIHfSNcg3dyk=
[2024-03-19 06:22:12,455]   INFO -    jetbrains.buildServer.AGENT - Downloading http://deleted/update/plugins/dotNetRunners.zip ==> /opt/buildagent/update/plugins/dotNetRunners.zip
[2024-03-19 06:22:12,496]   INFO -    jetbrains.buildServer.AGENT - The file /opt/buildagent/update/plugins/dotNetRunners.zip has been downloaded successfully, file hash: SHA-1J44RNjbkr57+G+i76PZ5CYtxebE=
[2024-03-19 06:22:12,496]   INFO -    jetbrains.buildServer.AGENT - Downloading http://deleted/update/plugins/dotnet.zip ==> /opt/buildagent/update/plugins/dotnet.zip
[2024-03-19 06:22:12,648]   INFO -    jetbrains.buildServer.AGENT - The file /opt/buildagent/update/plugins/dotnet.zip has been downloaded successfully, file hash: SHA-1bWdYzFYJHrzblRYlh6GyNEzPB58=
[2024-03-19 06:22:12,648]   INFO -    jetbrains.buildServer.AGENT - Downloading http://deleted/update/plugins/duplicatePlugin.zip ==> /opt/buildagent/update/plugins/duplicatePlugin.zip
[2024-03-19 06:22:12,672]   INFO -    jetbrains.buildServer.AGENT - The file /opt/buildagent/update/plugins/duplicatePlugin.zip has been downloaded successfully, file hash: SHA-1hEh63V2Q1Dkqv1adc0oGFbtxIqQ=
[2024-03-19 06:22:12,672]   INFO -    jetbrains.buildServer.AGENT - Downloading http://deleted/update/plugins/environment-fetcher-agent.jar ==> /opt/buildagent/update/plugins/environment-fetcher-agent.jar
[2024-03-19 06:22:12,689]   INFO -    jetbrains.buildServer.AGENT - The file /opt/buildagent/update/plugins/environment-fetcher-agent.jar has been downloaded successfully, file hash: SHA-1BRaeeVQdRkLwnod5QFRg4kYehjY=
[2024-03-19 06:22:12,689]   INFO -    jetbrains.buildServer.AGENT - Downloading http://deleted/update/plugins/file-content-replacer.zip ==> /opt/buildagent/update/plugins/file-content-replacer.zip
[2024-03-19 06:22:12,715]   INFO -    jetbrains.buildServer.AGENT - The file /opt/buildagent/update/plugins/file-content-replacer.zip has been downloaded successfully, file hash: SHA-17ke8zYKJT41M1ERlspZUwVyCv0E=
[2024-03-19 06:22:12,716]   INFO -    jetbrains.buildServer.AGENT - Downloading http://deleted/update/plugins/fxcop.zip ==> /opt/buildagent/update/plugins/fxcop.zip
[2024-03-19 06:22:12,742]   INFO -    jetbrains.buildServer.AGENT - The file /opt/buildagent/update/plugins/fxcop.zip has been downloaded successfully, file hash: SHA-1C5E932P/J4cUaeG7oqusBDLFwj0=
[2024-03-19 06:22:12,743]   INFO -    jetbrains.buildServer.AGENT - Downloading http://deleted/update/plugins/gant.zip ==> /opt/buildagent/update/plugins/gant.zip
[2024-03-19 06:22:12,901]   INFO -    jetbrains.buildServer.AGENT - The file /opt/buildagent/update/plugins/gant.zip has been downloaded successfully, file hash: SHA-1vBQDX6a74wHNcE+/XPcKVIPm/aQ=
[2024-03-19 06:22:12,902]   INFO -    jetbrains.buildServer.AGENT - Downloading http://deleted/update/plugins/gantPlugin.zip ==> /opt/buildagent/update/plugins/gantPlugin.zip
[2024-03-19 06:22:12,927]   INFO -    jetbrains.buildServer.AGENT - The file /opt/buildagent/update/plugins/gantPlugin.zip has been downloaded successfully, file hash: SHA-1LpgvqJt7Ur0ULd2yyojUDLUANug=
[2024-03-19 06:22:12,928]   INFO -    jetbrains.buildServer.AGENT - Downloading http://deleted/update/plugins/golang-agent.zip ==> /opt/buildagent/update/plugins/golang-agent.zip
[2024-03-19 06:22:13,013]   INFO -    jetbrains.buildServer.AGENT - The file /opt/buildagent/update/plugins/golang-agent.zip has been downloaded successfully, file hash: SHA-1F1ZjXTRMv4jSQGIbtnoYlltNP1U=
[2024-03-19 06:22:13,014]   INFO -    jetbrains.buildServer.AGENT - Downloading http://deleted/update/plugins/gradle-runner.zip ==> /opt/buildagent/update/plugins/gradle-runner.zip
[2024-03-19 06:22:13,039]   INFO -    jetbrains.buildServer.AGENT - The file /opt/buildagent/update/plugins/gradle-runner.zip has been downloaded successfully, file hash: SHA-1O2hRQ5TF28ZODcv3LZTqB1m58nE=
[2024-03-19 06:22:13,042]   INFO -    jetbrains.buildServer.AGENT - Downloading http://deleted/update/plugins/idea-runner.zip ==> /opt/buildagent/update/plugins/idea-runner.zip
[2024-03-19 06:22:13,084]   INFO -    jetbrains.buildServer.AGENT - The file /opt/buildagent/update/plugins/idea-runner.zip has been downloaded successfully, file hash: SHA-1YIjGNh91pGNMabrEtG9iAwyqOD8=
[2024-03-19 06:22:13,084]   INFO -    jetbrains.buildServer.AGENT - Downloading http://deleted/update/plugins/inspectionPlugin.zip ==> /opt/buildagent/update/plugins/inspectionPlugin.zip
[2024-03-19 06:22:13,115]   INFO -    jetbrains.buildServer.AGENT - The file /opt/buildagent/update/plugins/inspectionPlugin.zip has been downloaded successfully, file hash: SHA-1+GFQd03P71l6WqrBIHUKzQrhC30=
[2024-03-19 06:22:13,116]   INFO -    jetbrains.buildServer.AGENT - Downloading http://deleted/update/plugins/java-dowser.zip ==> /opt/buildagent/update/plugins/java-dowser.zip
[2024-03-19 06:22:13,125]   INFO -    jetbrains.buildServer.AGENT - The file /opt/buildagent/update/plugins/java-dowser.zip has been downloaded successfully, file hash: SHA-1AmtMBAme5sxSR9wYyanwlfNbjp0=
[2024-03-19 06:22:13,125]   INFO -    jetbrains.buildServer.AGENT - Downloading http://deleted/update/plugins/jetbrains.git.zip ==> /opt/buildagent/update/plugins/jetbrains.git.zip
[2024-03-19 06:22:13,313]   INFO -    jetbrains.buildServer.AGENT - The file /opt/buildagent/update/plugins/jetbrains.git.zip has been downloaded successfully, file hash: SHA-1H2dy2LwgC1eS1yHvw/AyF5OmtDI=
[2024-03-19 06:22:13,313]   INFO -    jetbrains.buildServer.AGENT - Downloading http://deleted/update/plugins/jps.zip ==> /opt/buildagent/update/plugins/jps.zip
[2024-03-19 06:22:14,291]   INFO -    jetbrains.buildServer.AGENT - The file /opt/buildagent/update/plugins/jps.zip has been downloaded successfully, file hash: SHA-1JkaAreIxBrjJuPY3xOmqkKHExlQ=
[2024-03-19 06:22:14,292]   INFO -    jetbrains.buildServer.AGENT - Downloading http://deleted/update/plugins/junitPlugin.zip ==> /opt/buildagent/update/plugins/junitPlugin.zip
[2024-03-19 06:22:14,319]   INFO -    jetbrains.buildServer.AGENT - The file /opt/buildagent/update/plugins/junitPlugin.zip has been downloaded successfully, file hash: SHA-1VSBOtMbG4Ar9vU/H/eLWgxi/e9w=
[2024-03-19 06:22:14,320]   INFO -    jetbrains.buildServer.AGENT - Downloading http://deleted/update/plugins/jvm-update.zip ==> /opt/buildagent/update/plugins/jvm-update.zip
[2024-03-19 06:22:14,339]   INFO -    jetbrains.buildServer.AGENT - The file /opt/buildagent/update/plugins/jvm-update.zip has been downloaded successfully, file hash: SHA-1SGyPM9UT6tmVVV/8VotwT1Bfko0=
[2024-03-19 06:22:14,339]   INFO -    jetbrains.buildServer.AGENT - Downloading http://deleted/update/plugins/mavenPlugin.zip ==> /opt/buildagent/update/plugins/mavenPlugin.zip
[2024-03-19 06:22:14,631]   INFO -    jetbrains.buildServer.AGENT - The file /opt/buildagent/update/plugins/mavenPlugin.zip has been downloaded successfully, file hash: SHA-1haGRJwiFfDtSaQBb1C0QKmVB2zo=
[2024-03-19 06:22:14,631]   INFO -    jetbrains.buildServer.AGENT - Downloading http://deleted/update/plugins/mercurial.zip ==> /opt/buildagent/update/plugins/mercurial.zip
[2024-03-19 06:22:14,666]   INFO -    jetbrains.buildServer.AGENT - The file /opt/buildagent/update/plugins/mercurial.zip has been downloaded successfully, file hash: SHA-1FFI/56lCWnmejaWGFzdtWatgtZU=
[2024-03-19 06:22:14,666]   INFO -    jetbrains.buildServer.AGENT - Downloading http://deleted/update/plugins/meta-runner.zip ==> /opt/buildagent/update/plugins/meta-runner.zip
[2024-03-19 06:22:14,681]   INFO -    jetbrains.buildServer.AGENT - The file /opt/buildagent/update/plugins/meta-runner.zip has been downloaded successfully, file hash: SHA-1gMXdW8EjyR4azmSDuUooFofnLVM=
[2024-03-19 06:22:14,681]   INFO -    jetbrains.buildServer.AGENT - Downloading http://deleted/update/plugins/nuget-agent.zip ==> /opt/buildagent/update/plugins/nuget-agent.zip
[2024-03-19 06:22:14,924]   INFO -    jetbrains.buildServer.AGENT - The file /opt/buildagent/update/plugins/nuget-agent.zip has been downloaded successfully, file hash: SHA-1DCpPlpgq0BLLwb2LbJGPZS9+mGY=
[2024-03-19 06:22:14,925]   INFO -    jetbrains.buildServer.AGENT - Downloading http://deleted/update/plugins/perfmon-agent.zip ==> /opt/buildagent/update/plugins/perfmon-agent.zip
[2024-03-19 06:22:14,965]   INFO -    jetbrains.buildServer.AGENT - The file /opt/buildagent/update/plugins/perfmon-agent.zip has been downloaded successfully, file hash: SHA-17BlT3fz+ok0zpWv7rhWrd1C53X4=
[2024-03-19 06:22:14,966]   INFO -    jetbrains.buildServer.AGENT - Downloading http://deleted/update/plugins/perforce-agent.zip ==> /opt/buildagent/update/plugins/perforce-agent.zip
[2024-03-19 06:22:14,989]   INFO -    jetbrains.buildServer.AGENT - The file /opt/buildagent/update/plugins/perforce-agent.zip has been downloaded successfully, file hash: SHA-1CtJKMG/IyOG2r7ajxgPL0gJd968=
[2024-03-19 06:22:14,990]   INFO -    jetbrains.buildServer.AGENT - Downloading http://deleted/update/plugins/plugin-agent.zip ==> /opt/buildagent/update/plugins/plugin-agent.zip
[2024-03-19 06:22:15,010]   INFO -    jetbrains.buildServer.AGENT - The file /opt/buildagent/update/plugins/plugin-agent.zip has been downloaded successfully, file hash: SHA-1CfmGBLhbA+pGaDgA4rG+hdZa69M=
[2024-03-19 06:22:15,011]   INFO -    jetbrains.buildServer.AGENT - Downloading http://deleted/update/plugins/qodana.zip ==> /opt/buildagent/update/plugins/qodana.zip
[2024-03-19 06:22:15,275]   INFO -    jetbrains.buildServer.AGENT - The file /opt/buildagent/update/plugins/qodana.zip has been downloaded successfully, file hash: SHA-10JeiGZwm+wFEDTK+As/7lKTcGFE=
[2024-03-19 06:22:15,275]   INFO -    jetbrains.buildServer.AGENT - Downloading http://deleted/update/plugins/rake-runner.zip ==> /opt/buildagent/update/plugins/rake-runner.zip
[2024-03-19 06:22:15,308]   INFO -    jetbrains.buildServer.AGENT - The file /opt/buildagent/update/plugins/rake-runner.zip has been downloaded successfully, file hash: SHA-1wrUtliXQRAlLDPlUjPjmCgWoy3I=
[2024-03-19 06:22:15,308]   INFO -    jetbrains.buildServer.AGENT - Downloading http://deleted/update/plugins/remoteAccess.zip ==> /opt/buildagent/update/plugins/remoteAccess.zip
[2024-03-19 06:22:15,335]   INFO -    jetbrains.buildServer.AGENT - The file /opt/buildagent/update/plugins/remoteAccess.zip has been downloaded successfully, file hash: SHA-1bP75VveLT1rPLJVpOBwPKKFfWFU=
[2024-03-19 06:22:15,336]   INFO -    jetbrains.buildServer.AGENT - Downloading http://deleted/update/plugins/s3-artifact-storage-agent.zip ==> /opt/buildagent/update/plugins/s3-artifact-storage-agent.zip
[2024-03-19 06:22:15,599]   INFO -    jetbrains.buildServer.AGENT - The file /opt/buildagent/update/plugins/s3-artifact-storage-agent.zip has been downloaded successfully, file hash: SHA-1qTOjGrQvXL6fwyP4ivbFWxCBJAY=
[2024-03-19 06:22:15,599]   INFO -    jetbrains.buildServer.AGENT - Downloading http://deleted/update/plugins/sbt-runner-agent.zip ==> /opt/buildagent/update/plugins/sbt-runner-agent.zip
[2024-03-19 06:22:15,669]   INFO -    jetbrains.buildServer.AGENT - The file /opt/buildagent/update/plugins/sbt-runner-agent.zip has been downloaded successfully, file hash: SHA-1606A2qWougOIuJXp+OW5Kui9gas=
[2024-03-19 06:22:15,669]   INFO -    jetbrains.buildServer.AGENT - Downloading http://deleted/update/plugins/stacktracesPlugin.zip ==> /opt/buildagent/update/plugins/stacktracesPlugin.zip
[2024-03-19 06:22:15,769]   INFO -    jetbrains.buildServer.AGENT - The file /opt/buildagent/update/plugins/stacktracesPlugin.zip has been downloaded successfully, file hash: SHA-1yrFuJf8XF8yrYm3MjCcQ4Z1UFbA=
[2024-03-19 06:22:15,769]   INFO -    jetbrains.buildServer.AGENT - Downloading http://deleted/update/plugins/svnAgent.zip ==> /opt/buildagent/update/plugins/svnAgent.zip
[2024-03-19 06:22:15,980]   INFO -    jetbrains.buildServer.AGENT - The file /opt/buildagent/update/plugins/svnAgent.zip has been downloaded successfully, file hash: SHA-15UEykW4CsAyr2JIqZJ7Q6bcIqOU=
[2024-03-19 06:22:15,980]   INFO -    jetbrains.buildServer.AGENT - Downloading http://deleted/update/plugins/swabra.zip ==> /opt/buildagent/update/plugins/swabra.zip
[2024-03-19 06:22:16,013]   INFO -    jetbrains.buildServer.AGENT - The file /opt/buildagent/update/plugins/swabra.zip has been downloaded successfully, file hash: SHA-1TLOlgAmgszfhiaEQGAoI23vJb0c=
[2024-03-19 06:22:16,013]   INFO -    jetbrains.buildServer.AGENT - Downloading http://deleted/update/plugins/teamcity-kubernetes-plugin-agent.zip ==> /opt/buildagent/update/plugins/teamcity-kubernetes-plugin-agent.zip
[2024-03-19 06:22:16,039]   INFO -    jetbrains.buildServer.AGENT - The file /opt/buildagent/update/plugins/teamcity-kubernetes-plugin-agent.zip has been downloaded successfully, file hash: SHA-1i3N8Ic3qVu2JY2gBY681wrxcNJU=
[2024-03-19 06:22:16,039]   INFO -    jetbrains.buildServer.AGENT - Downloading http://deleted/update/plugins/teamcity-parallel-tests-agent.zip ==> /opt/buildagent/update/plugins/teamcity-parallel-tests-agent.zip
[2024-03-19 06:22:16,059]   INFO -    jetbrains.buildServer.AGENT - The file /opt/buildagent/update/plugins/teamcity-parallel-tests-agent.zip has been downloaded successfully, file hash: SHA-11R/1AxCEnbSblyrYB0ab+OA0hhQ=
[2024-03-19 06:22:16,059]   INFO -    jetbrains.buildServer.AGENT - Downloading http://deleted/update/plugins/testNGPlugin.zip ==> /opt/buildagent/update/plugins/testNGPlugin.zip
[2024-03-19 06:22:16,083]   INFO -    jetbrains.buildServer.AGENT - The file /opt/buildagent/update/plugins/testNGPlugin.zip has been downloaded successfully, file hash: SHA-1EqVq1GM1/iDXw5zIWGudPwHsGvk=
[2024-03-19 06:22:16,083]   INFO -    jetbrains.buildServer.AGENT - Downloading http://deleted/update/plugins/tfs-agent.zip ==> /opt/buildagent/update/plugins/tfs-agent.zip
[2024-03-19 06:22:16,393]   INFO -    jetbrains.buildServer.AGENT - The file /opt/buildagent/update/plugins/tfs-agent.zip has been downloaded successfully, file hash: SHA-1iU0wMI9tiUj//5JzeslbMscgT3E=
[2024-03-19 06:22:16,393]   INFO -    jetbrains.buildServer.AGENT - Downloading http://deleted/update/plugins/visualstudiotest-agent.zip ==> /opt/buildagent/update/plugins/visualstudiotest-agent.zip
[2024-03-19 06:22:16,432]   INFO -    jetbrains.buildServer.AGENT - The file /opt/buildagent/update/plugins/visualstudiotest-agent.zip has been downloaded successfully, file hash: SHA-17vRQZLwjc3rpAc+Q1ZzZse1eLa8=
[2024-03-19 06:22:16,433]   INFO -    jetbrains.buildServer.AGENT - Downloading http://deleted/update/plugins/xcode-runner.zip ==> /opt/buildagent/update/plugins/xcode-runner.zip
[2024-03-19 06:22:16,472]   INFO -    jetbrains.buildServer.AGENT - The file /opt/buildagent/update/plugins/xcode-runner.zip has been downloaded successfully, file hash: SHA-1l5L9leejch5Q3eZV5alorPbVxpk=
[2024-03-19 06:22:16,472]   INFO -    jetbrains.buildServer.AGENT - Downloading http://deleted/update/plugins/xml-report-plugin.zip ==> /opt/buildagent/update/plugins/xml-report-plugin.zip
[2024-03-19 06:22:16,507]   INFO -    jetbrains.buildServer.AGENT - The file /opt/buildagent/update/plugins/xml-report-plugin.zip has been downloaded successfully, file hash: SHA-1YYyLMDFbpi7Se/s2C+YX8cERhIY=
[2024-03-19 06:22:16,507]   INFO -    jetbrains.buildServer.AGENT - Downloading http://deleted/update/plugins/commandLineRunner.jar ==> /opt/buildagent/update/plugins/commandLineRunner.jar
[2024-03-19 06:22:16,535]   INFO -    jetbrains.buildServer.AGENT - The file /opt/buildagent/update/plugins/commandLineRunner.jar has been downloaded successfully, file hash: SHA-15oTPKPOoAZhmJuPsGLAwJx4zaG4=
[2024-03-19 06:22:16,535]   INFO -    jetbrains.buildServer.AGENT - Downloading http://deleted/update/plugins/kotlin-script-runner-agent-117072.zip ==> /opt/buildagent/update/plugins/kotlin-script-runner-agent-117072.zip
[2024-03-19 06:22:16,595]   INFO -    jetbrains.buildServer.AGENT - The file /opt/buildagent/update/plugins/kotlin-script-runner-agent-117072.zip has been downloaded successfully, file hash: SHA-1kB0YzGJaPRHV0qTP9HYeUlSL8XE=
[2024-03-19 06:22:16,595]   INFO -    jetbrains.buildServer.AGENT - Downloading http://deleted/update/plugins/nodejs-agent-117072.zip ==> /opt/buildagent/update/plugins/nodejs-agent-117072.zip
[2024-03-19 06:22:16,650]   INFO -    jetbrains.buildServer.AGENT - The file /opt/buildagent/update/plugins/nodejs-agent-117072.zip has been downloaded successfully, file hash: SHA-1SfscPSYiFMS8vueI5utRlMyXNUw=
[2024-03-19 06:22:16,650]   INFO -    jetbrains.buildServer.AGENT - Downloading http://deleted/update/plugins/python-agent-117072.zip ==> /opt/buildagent/update/plugins/python-agent-117072.zip
[2024-03-19 06:22:16,732]   INFO -    jetbrains.buildServer.AGENT - The file /opt/buildagent/update/plugins/python-agent-117072.zip has been downloaded successfully, file hash: SHA-1246SojC/qP34NC6uw7Gs26MigR8=
[2024-03-19 06:22:16,732]   INFO -    jetbrains.buildServer.AGENT - Downloading http://deleted/update/plugins/ssh-manager.jar ==> /opt/buildagent/update/plugins/ssh-manager.jar
[2024-03-19 06:22:16,751]   INFO -    jetbrains.buildServer.AGENT - The file /opt/buildagent/update/plugins/ssh-manager.jar has been downloaded successfully, file hash: SHA-1hKitE1cxv/+amu3U15wZCAlUySc=
[2024-03-19 06:22:17,266]   INFO - rocesses.ProcessTreeTerminator - Using jetbrains.buildServer.processes.ProcessTreeTerminatorLinux
[2024-03-19 06:22:17,267]   INFO - .ProcessTreeTerminatorImplBase - Collecting processes from PIDs current process
[2024-03-19 06:22:17,267]   INFO - .ProcessTreeTerminatorImplBase - Will use command 'sh -c echo $$ && ps awwxo pid,ppid,command | tee'.
[2024-03-19 06:22:17,300]   INFO - .ProcessTreeTerminatorImplBase - Will use command 'sh -c echo $$ && ps awwxo pid,ppid,command | tee'.
[2024-03-19 06:22:17,329]   INFO - ses.ProcessTreeTerminatorLinux - Second thread id is 401
[2024-03-19 06:22:17,330]   INFO - ses.ProcessTreeTerminatorLinux - Thread is Process thread model: false
[2024-03-19 06:22:17,334]   INFO - .ProcessTreeTerminatorImplBase - Current process PID 401
[2024-03-19 06:22:17,335]   INFO - .ProcessTreeTerminatorImplBase - No processes to kill
[2024-03-19 06:22:17,338]   INFO -    jetbrains.buildServer.AGENT - Exit for upgrade
[2024-03-19 06:22:17,340]   INFO - ent.impl.upgrade.AgentExitCode - Agent exited. Upgrade process

Full upgrade.log from /opt/buildagent/logs:

[2024-03-19 06:22:21,113]  DEBUG - dServer.agent.lock.LockManager - Lock file: /opt/buildagent/logs/buildAgent.properties.lock
[2024-03-19 06:22:21,116]  DEBUG - dServer.agent.lock.LockManager - Using no lock
[2024-03-19 06:22:21,118]   INFO - r.agent.upgrade.UpgradeRunBase - =====================================================
[2024-03-19 06:22:21,118]   INFO - r.agent.upgrade.UpgradeRunBase - Start agent upgrade.
[2024-03-19 06:22:21,118]   INFO - r.agent.upgrade.UpgradeRunBase - Agent home folder: /opt/buildagent
[2024-03-19 06:22:21,118]   INFO - r.agent.upgrade.UpgradeRunBase - Run command line (arguments separated with '|'): /bin/sh|./agent.sh|stop|kill| (at /opt/buildagent/bin)
[2024-03-19 06:22:21,132]   INFO - .agent.run.ProcessOutputLogger - Stopping TeamCity build agent...
[2024-03-19 06:22:21,132]   INFO - .agent.run.ProcessOutputLogger - Stopping buildAgent [372]
[2024-03-19 06:22:22,151]   INFO - .agent.run.ProcessOutputLogger - Stopped
[2024-03-19 06:22:22,154]   INFO - r.agent.upgrade.UpgradeRunBase - Process exited with code: 0
[2024-03-19 06:22:22,153]   WARN - .agent.run.ProcessOutputLogger - rm: cannot remove '../logs/buildAgent.pid': No such file or directory
[2024-03-19 06:22:22,171]   INFO - er.agent.upgrade.UpdateChecker - Update files check succeeded
[2024-03-19 06:22:22,180]   INFO - ver.agent.upgrade.AgentUpgrade - Start upgrade at 2024-03-19 06:22:22.172
[2024-03-19 06:22:22,187]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/update/do.not.touch
[2024-03-19 06:22:22,188]   INFO - ver.agent.upgrade.AgentUpgrade - Remove update action: NoBackupUpgradeFolder [plugins] due to do.not.touch settings
[2024-03-19 06:22:22,188]   INFO - ver.agent.upgrade.AgentUpgrade - Remove update action: NoBackupUpgradeFolder [tools] due to do.not.touch settings
[2024-03-19 06:22:22,188]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/conf/teamcity-upgrade-error.log
[2024-03-19 06:22:22,188]   INFO - ver.agent.upgrade.AgentUpgrade - ===> Backup current agent
[2024-03-19 06:22:22,189]  DEBUG - er.agent.upgrade.UpgradeFolder - UpgradeFolder: AgentRootFilesFolder [.] --> backup
[2024-03-19 06:22:22,189]  DEBUG - buildServer.agent.LauncherUtil - Failed to read /opt/buildagent/update/teamcity-agent.xml.move. Failed to read /opt/buildagent/update/teamcity-agent.xml.move. /opt/buildagent/update/teamcity-agent.xml.move (No such file or directory)
[2024-03-19 06:22:22,189]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent to /opt/buildagent/backup
[2024-03-19 06:22:22,190]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/conf to /opt/buildagent/backup/conf
[2024-03-19 06:22:22,190]  DEBUG - buildServer.agent.LauncherUtil - Skipped copy from /opt/buildagent/conf to /opt/buildagent/backup/conf
[2024-03-19 06:22:22,190]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/service.properties to /opt/buildagent/backup/service.properties
[2024-03-19 06:22:22,190]  DEBUG - buildServer.agent.LauncherUtil - Skipped copy from /opt/buildagent/service.properties to /opt/buildagent/backup/service.properties
[2024-03-19 06:22:22,190]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/contrib to /opt/buildagent/backup/contrib
[2024-03-19 06:22:22,190]  DEBUG - buildServer.agent.LauncherUtil - Skipped copy from /opt/buildagent/contrib to /opt/buildagent/backup/contrib
[2024-03-19 06:22:22,191]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/plugins to /opt/buildagent/backup/plugins
[2024-03-19 06:22:22,191]  DEBUG - buildServer.agent.LauncherUtil - Skipped copy from /opt/buildagent/plugins to /opt/buildagent/backup/plugins
[2024-03-19 06:22:22,191]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/BUILD_147586 to /opt/buildagent/backup/BUILD_147586
[2024-03-19 06:22:22,191]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/README.md to /opt/buildagent/backup/README.md
[2024-03-19 06:22:22,191]  DEBUG - buildServer.agent.LauncherUtil - Skipped copy from /opt/buildagent/README.md to /opt/buildagent/backup/README.md
[2024-03-19 06:22:22,191]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/lib to /opt/buildagent/backup/lib
[2024-03-19 06:22:22,192]  DEBUG - buildServer.agent.LauncherUtil - Skipped copy from /opt/buildagent/lib to /opt/buildagent/backup/lib
[2024-03-19 06:22:22,192]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/launcher to /opt/buildagent/backup/launcher
[2024-03-19 06:22:22,192]  DEBUG - buildServer.agent.LauncherUtil - Skipped copy from /opt/buildagent/launcher to /opt/buildagent/backup/launcher
[2024-03-19 06:22:22,192]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/tools to /opt/buildagent/backup/tools
[2024-03-19 06:22:22,192]  DEBUG - buildServer.agent.LauncherUtil - Skipped copy from /opt/buildagent/tools to /opt/buildagent/backup/tools
[2024-03-19 06:22:22,192]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/system to /opt/buildagent/backup/system
[2024-03-19 06:22:22,192]  DEBUG - buildServer.agent.LauncherUtil - Skipped copy from /opt/buildagent/system to /opt/buildagent/backup/system
[2024-03-19 06:22:22,192]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/bin to /opt/buildagent/backup/bin
[2024-03-19 06:22:22,192]  DEBUG - buildServer.agent.LauncherUtil - Skipped copy from /opt/buildagent/bin to /opt/buildagent/backup/bin
[2024-03-19 06:22:22,193]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/update to /opt/buildagent/backup/update
[2024-03-19 06:22:22,193]  DEBUG - buildServer.agent.LauncherUtil - Skipped copy from /opt/buildagent/update to /opt/buildagent/backup/update
[2024-03-19 06:22:22,193]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/backup to /opt/buildagent/backup/backup
[2024-03-19 06:22:22,193]  DEBUG - buildServer.agent.LauncherUtil - Skipped copy from /opt/buildagent/backup to /opt/buildagent/backup/backup
[2024-03-19 06:22:22,193]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/logs to /opt/buildagent/backup/logs
[2024-03-19 06:22:22,193]  DEBUG - buildServer.agent.LauncherUtil - Skipped copy from /opt/buildagent/logs to /opt/buildagent/backup/logs
[2024-03-19 06:22:22,193]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/work to /opt/buildagent/backup/work
[2024-03-19 06:22:22,193]  DEBUG - buildServer.agent.LauncherUtil - Skipped copy from /opt/buildagent/work to /opt/buildagent/backup/work
[2024-03-19 06:22:22,193]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/temp to /opt/buildagent/backup/temp
[2024-03-19 06:22:22,193]  DEBUG - buildServer.agent.LauncherUtil - Skipped copy from /opt/buildagent/temp to /opt/buildagent/backup/temp
[2024-03-19 06:22:22,194]  DEBUG - er.agent.upgrade.UpgradeFolder - UpgradeFolder: FilesOnlyUpgradeFolder [bin] --> backup
[2024-03-19 06:22:22,194]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/bin to /opt/buildagent/backup/bin
[2024-03-19 06:22:22,194]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/bin/service.install.bat to /opt/buildagent/backup/bin/service.install.bat
[2024-03-19 06:22:22,195]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/bin/service.start.bat to /opt/buildagent/backup/bin/service.start.bat
[2024-03-19 06:22:22,195]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/bin/installJava.bat to /opt/buildagent/backup/bin/installJava.bat
[2024-03-19 06:22:22,195]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/bin/service.uninstall.bat to /opt/buildagent/backup/bin/service.uninstall.bat
[2024-03-19 06:22:22,196]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/bin/install.sh to /opt/buildagent/backup/bin/install.sh
[2024-03-19 06:22:22,196]  DEBUG - buildServer.agent.LauncherUtil - Set executable bit for /opt/buildagent/backup/bin/install.sh
[2024-03-19 06:22:22,197]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/bin/agent.bat to /opt/buildagent/backup/bin/agent.bat
[2024-03-19 06:22:22,197]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/bin/service.stop.bat to /opt/buildagent/backup/bin/service.stop.bat
[2024-03-19 06:22:22,198]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/bin/changeAgentProps.bat to /opt/buildagent/backup/bin/changeAgentProps.bat
[2024-03-19 06:22:22,198]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/bin/jetbrains.teamcity.BuildAgent.plist to /opt/buildagent/backup/bin/jetbrains.teamcity.BuildAgent.plist
[2024-03-19 06:22:22,198]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/bin/mac.launchd.sh to /opt/buildagent/backup/bin/mac.launchd.sh
[2024-03-19 06:22:22,199]  DEBUG - buildServer.agent.LauncherUtil - Set executable bit for /opt/buildagent/backup/bin/mac.launchd.sh
[2024-03-19 06:22:22,200]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/bin/agent.sh to /opt/buildagent/backup/bin/agent.sh
[2024-03-19 06:22:22,200]  DEBUG - buildServer.agent.LauncherUtil - Set executable bit for /opt/buildagent/backup/bin/agent.sh
[2024-03-19 06:22:22,201]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/bin/jetbrains.teamcity.BuildAgentUpgrade.plist.dist to /opt/buildagent/backup/bin/jetbrains.teamcity.BuildAgentUpgrade.plist.dist
[2024-03-19 06:22:22,202]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/bin/findJava.sh to /opt/buildagent/backup/bin/findJava.sh
[2024-03-19 06:22:22,202]  DEBUG - buildServer.agent.LauncherUtil - Set executable bit for /opt/buildagent/backup/bin/findJava.sh
[2024-03-19 06:22:22,203]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/bin/findJava.bat to /opt/buildagent/backup/bin/findJava.bat
[2024-03-19 06:22:22,203]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/bin/generateNewServiceName.bat to /opt/buildagent/backup/bin/generateNewServiceName.bat
[2024-03-19 06:22:22,204]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/bin/install.bat to /opt/buildagent/backup/bin/install.bat
[2024-03-19 06:22:22,204]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/bin/uninstall.bat to /opt/buildagent/backup/bin/uninstall.bat
[2024-03-19 06:22:22,204]  DEBUG - er.agent.upgrade.UpgradeFolder - UpgradeFolder: SimpleUpgradeFolder [lib] --> backup
[2024-03-19 06:22:22,204]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/lib to /opt/buildagent/backup/lib
[2024-03-19 06:22:22,204]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/lib/spring-instrument.jar to /opt/buildagent/backup/lib/spring-instrument.jar
[2024-03-19 06:22:22,205]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/lib/common.jar to /opt/buildagent/backup/lib/common.jar
[2024-03-19 06:22:22,206]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/lib/plugin-model-common.jar to /opt/buildagent/backup/lib/plugin-model-common.jar
[2024-03-19 06:22:22,207]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/lib/agent-core.jar to /opt/buildagent/backup/lib/agent-core.jar
[2024-03-19 06:22:22,209]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/lib/spring-tx.jar to /opt/buildagent/backup/lib/spring-tx.jar
[2024-03-19 06:22:22,209]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/lib/net.sf.trove4j.trove4j.jar to /opt/buildagent/backup/lib/net.sf.trove4j.trove4j.jar
[2024-03-19 06:22:22,212]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/lib/patches.jar to /opt/buildagent/backup/lib/patches.jar
[2024-03-19 06:22:22,212]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/lib/patches-impl.jar to /opt/buildagent/backup/lib/patches-impl.jar
[2024-03-19 06:22:22,213]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/lib/spring-scripting-groovy.jar to /opt/buildagent/backup/lib/spring-scripting-groovy.jar
[2024-03-19 06:22:22,213]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/lib/idea-settings.jar to /opt/buildagent/backup/lib/idea-settings.jar
[2024-03-19 06:22:22,213]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/lib/agent-launcher-obsolete.jar to /opt/buildagent/backup/lib/agent-launcher-obsolete.jar
[2024-03-19 06:22:22,214]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/lib/jackson-core.jar to /opt/buildagent/backup/lib/jackson-core.jar
[2024-03-19 06:22:22,214]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/lib/build-version.jar to /opt/buildagent/backup/lib/build-version.jar
[2024-03-19 06:22:22,215]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/lib/log4j-api.jar to /opt/buildagent/backup/lib/log4j-api.jar
[2024-03-19 06:22:22,215]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/lib/jackson-dataformat-xml.jar to /opt/buildagent/backup/lib/jackson-dataformat-xml.jar
[2024-03-19 06:22:22,215]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/lib/xz.jar to /opt/buildagent/backup/lib/xz.jar
[2024-03-19 06:22:22,216]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/lib/log4j-core.jar to /opt/buildagent/backup/lib/log4j-core.jar
[2024-03-19 06:22:22,218]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/lib/spring-beans.jar to /opt/buildagent/backup/lib/spring-beans.jar
[2024-03-19 06:22:22,219]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/lib/utils.jar to /opt/buildagent/backup/lib/utils.jar
[2024-03-19 06:22:22,219]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/lib/jaxen.jar to /opt/buildagent/backup/lib/jaxen.jar
[2024-03-19 06:22:22,219]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/lib/freemarker.jar to /opt/buildagent/backup/lib/freemarker.jar
[2024-03-19 06:22:22,221]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/lib/woodstox-core.jar to /opt/buildagent/backup/lib/woodstox-core.jar
[2024-03-19 06:22:22,223]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/lib/common-runtime.jar to /opt/buildagent/backup/lib/common-runtime.jar
[2024-03-19 06:22:22,223]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/lib/jackson-module-jaxb-annotations.jar to /opt/buildagent/backup/lib/jackson-module-jaxb-annotations.jar
[2024-03-19 06:22:22,224]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/lib/jackson-dataformat-yaml.jar to /opt/buildagent/backup/lib/jackson-dataformat-yaml.jar
[2024-03-19 06:22:22,224]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/lib/messages.jar to /opt/buildagent/backup/lib/messages.jar
[2024-03-19 06:22:22,224]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/lib/httpmime.jar to /opt/buildagent/backup/lib/httpmime.jar
[2024-03-19 06:22:22,224]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/lib/commons-collections.jar to /opt/buildagent/backup/lib/commons-collections.jar
[2024-03-19 06:22:22,225]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/lib/spring-aspects.jar to /opt/buildagent/backup/lib/spring-aspects.jar
[2024-03-19 06:22:22,225]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/lib/joda-time.jar to /opt/buildagent/backup/lib/joda-time.jar
[2024-03-19 06:22:22,226]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/lib/spring-aop.jar to /opt/buildagent/backup/lib/spring-aop.jar
[2024-03-19 06:22:22,227]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/lib/commons-httpclient.jar to /opt/buildagent/backup/lib/commons-httpclient.jar
[2024-03-19 06:22:22,227]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/lib/jackson-module-parameter-names.jar to /opt/buildagent/backup/lib/jackson-module-parameter-names.jar
[2024-03-19 06:22:22,227]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/lib/commons-io.jar to /opt/buildagent/backup/lib/commons-io.jar
[2024-03-19 06:22:22,228]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/lib/xercesImpl.jar to /opt/buildagent/backup/lib/xercesImpl.jar
[2024-03-19 06:22:22,230]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/lib/agent-configurator.jar to /opt/buildagent/backup/lib/agent-configurator.jar
[2024-03-19 06:22:22,230]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/lib/idea-obsolete-openapi.jar to /opt/buildagent/backup/lib/idea-obsolete-openapi.jar
[2024-03-19 06:22:22,231]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/lib/jackson-datatype-jsr310.jar to /opt/buildagent/backup/lib/jackson-datatype-jsr310.jar
[2024-03-19 06:22:22,232]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/lib/spring-context.jar to /opt/buildagent/backup/lib/spring-context.jar
[2024-03-19 06:22:22,233]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/lib/commons-beanutils.jar to /opt/buildagent/backup/lib/commons-beanutils.jar
[2024-03-19 06:22:22,234]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/lib/common-tools.jar to /opt/buildagent/backup/lib/common-tools.jar
[2024-03-19 06:22:22,234]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/lib/common-vcs.jar to /opt/buildagent/backup/lib/common-vcs.jar
[2024-03-19 06:22:22,234]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/lib/coverage-report.jar to /opt/buildagent/backup/lib/coverage-report.jar
[2024-03-19 06:22:22,235]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/lib/spring-core.jar to /opt/buildagent/backup/lib/spring-core.jar
[2024-03-19 06:22:22,236]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/lib/common-jackson.jar to /opt/buildagent/backup/lib/common-jackson.jar
[2024-03-19 06:22:22,237]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/lib/jdk-searcher.jar to /opt/buildagent/backup/lib/jdk-searcher.jar
[2024-03-19 06:22:22,237]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/lib/jetps.zip to /opt/buildagent/backup/lib/jetps.zip
[2024-03-19 06:22:22,237]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/lib/connections-api-common.jar to /opt/buildagent/backup/lib/connections-api-common.jar
[2024-03-19 06:22:22,237]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/lib/jdom.jar to /opt/buildagent/backup/lib/jdom.jar
[2024-03-19 06:22:22,238]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/lib/launcher.jar to /opt/buildagent/backup/lib/launcher.jar
[2024-03-19 06:22:22,238]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/lib/ehcache-core.jar to /opt/buildagent/backup/lib/ehcache-core.jar
[2024-03-19 06:22:22,239]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/lib/xml-rpc-wrapper.jar to /opt/buildagent/backup/lib/xml-rpc-wrapper.jar
[2024-03-19 06:22:22,239]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/lib/stax2-api.jar to /opt/buildagent/backup/lib/stax2-api.jar
[2024-03-19 06:22:22,248]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/lib/common-graph.jar to /opt/buildagent/backup/lib/common-graph.jar
[2024-03-19 06:22:22,248]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/lib/spring-context-support.jar to /opt/buildagent/backup/lib/spring-context-support.jar
[2024-03-19 06:22:22,248]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/lib/httpcore.jar to /opt/buildagent/backup/lib/httpcore.jar
[2024-03-19 06:22:22,249]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/lib/serviceMessages.jar to /opt/buildagent/backup/lib/serviceMessages.jar
[2024-03-19 06:22:22,249]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/lib/agent-launcher-common.jar to /opt/buildagent/backup/lib/agent-launcher-common.jar
[2024-03-19 06:22:22,250]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/lib/spring-expression.jar to /opt/buildagent/backup/lib/spring-expression.jar
[2024-03-19 06:22:22,250]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/lib/commons-logging.jar to /opt/buildagent/backup/lib/commons-logging.jar
[2024-03-19 06:22:22,250]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/lib/xmlrpc.jar to /opt/buildagent/backup/lib/xmlrpc.jar
[2024-03-19 06:22:22,251]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/lib/spring-scripting to /opt/buildagent/backup/lib/spring-scripting
[2024-03-19 06:22:22,251]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/lib/spring-scripting/spring-scripting-groovy.jar to /opt/buildagent/backup/lib/spring-scripting/spring-scripting-groovy.jar
[2024-03-19 06:22:22,251]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/lib/spring-scripting/spring-scripting-jruby.jar to /opt/buildagent/backup/lib/spring-scripting/spring-scripting-jruby.jar
[2024-03-19 06:22:22,251]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/lib/spring-scripting/spring-scripting-bsh.jar to /opt/buildagent/backup/lib/spring-scripting/spring-scripting-bsh.jar
[2024-03-19 06:22:22,252]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/lib/launcher-api.jar to /opt/buildagent/backup/lib/launcher-api.jar
[2024-03-19 06:22:22,252]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/lib/jackson-databind.jar to /opt/buildagent/backup/lib/jackson-databind.jar
[2024-03-19 06:22:22,254]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/lib/buildAgent-updates-applying-obsolete.jar to /opt/buildagent/backup/lib/buildAgent-updates-applying-obsolete.jar
[2024-03-19 06:22:22,254]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/lib/agent-upgrade.jar to /opt/buildagent/backup/lib/agent-upgrade.jar
[2024-03-19 06:22:22,255]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/lib/httpclient.jar to /opt/buildagent/backup/lib/httpclient.jar
[2024-03-19 06:22:22,255]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/lib/coverage-java-agent-common.jar to /opt/buildagent/backup/lib/coverage-java-agent-common.jar
[2024-03-19 06:22:22,256]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/lib/spring-jdbc.jar to /opt/buildagent/backup/lib/spring-jdbc.jar
[2024-03-19 06:22:22,256]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/lib/log4j-1.2-api.jar to /opt/buildagent/backup/lib/log4j-1.2-api.jar
[2024-03-19 06:22:22,257]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/lib/common-impl.jar to /opt/buildagent/backup/lib/common-impl.jar
[2024-03-19 06:22:22,258]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/lib/gson.jar to /opt/buildagent/backup/lib/gson.jar
[2024-03-19 06:22:22,258]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/lib/common-step-conditions.jar to /opt/buildagent/backup/lib/common-step-conditions.jar
[2024-03-19 06:22:22,258]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/lib/runtime-util.jar to /opt/buildagent/backup/lib/runtime-util.jar
[2024-03-19 06:22:22,259]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/lib/xpp3.jar to /opt/buildagent/backup/lib/xpp3.jar
[2024-03-19 06:22:22,259]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/lib/patches-low.jar to /opt/buildagent/backup/lib/patches-low.jar
[2024-03-19 06:22:22,259]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/lib/cloud-shared-core.jar to /opt/buildagent/backup/lib/cloud-shared-core.jar
[2024-03-19 06:22:22,259]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/lib/server-logging.jar to /opt/buildagent/backup/lib/server-logging.jar
[2024-03-19 06:22:22,260]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/lib/duplicator-util.jar to /opt/buildagent/backup/lib/duplicator-util.jar
[2024-03-19 06:22:22,260]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/lib/agent-upgrade-common.jar to /opt/buildagent/backup/lib/agent-upgrade-common.jar
[2024-03-19 06:22:22,260]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/lib/com.github.adedayo.intellij.sdk.trove4j.jar to /opt/buildagent/backup/lib/com.github.adedayo.intellij.sdk.trove4j.jar
[2024-03-19 06:22:22,261]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/lib/snakeyaml.jar to /opt/buildagent/backup/lib/snakeyaml.jar
[2024-03-19 06:22:22,262]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/lib/slf4j-api.jar to /opt/buildagent/backup/lib/slf4j-api.jar
[2024-03-19 06:22:22,262]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/lib/commons-codec.jar to /opt/buildagent/backup/lib/commons-codec.jar
[2024-03-19 06:22:22,263]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/lib/spring-scripting-jruby.jar to /opt/buildagent/backup/lib/spring-scripting-jruby.jar
[2024-03-19 06:22:22,263]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/lib/jackson-annotations.jar to /opt/buildagent/backup/lib/jackson-annotations.jar
[2024-03-19 06:22:22,264]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/lib/logging.jar to /opt/buildagent/backup/lib/logging.jar
[2024-03-19 06:22:22,264]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/lib/xml-apis.jar to /opt/buildagent/backup/lib/xml-apis.jar
[2024-03-19 06:22:22,264]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/lib/agent-openapi.jar to /opt/buildagent/backup/lib/agent-openapi.jar
[2024-03-19 06:22:22,265]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/lib/inspections-util.jar to /opt/buildagent/backup/lib/inspections-util.jar
[2024-03-19 06:22:22,265]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/lib/jakarta.xml.bind-api.jar to /opt/buildagent/backup/lib/jakarta.xml.bind-api.jar
[2024-03-19 06:22:22,265]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/lib/service-utils.jar to /opt/buildagent/backup/lib/service-utils.jar
[2024-03-19 06:22:22,266]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/lib/log4j-slf4j-impl.jar to /opt/buildagent/backup/lib/log4j-slf4j-impl.jar
[2024-03-19 06:22:22,266]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/lib/oauth-integration-agent.jar to /opt/buildagent/backup/lib/oauth-integration-agent.jar
[2024-03-19 06:22:22,266]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/lib/xstream.jar to /opt/buildagent/backup/lib/xstream.jar
[2024-03-19 06:22:22,267]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/lib/common-spring.jar to /opt/buildagent/backup/lib/common-spring.jar
[2024-03-19 06:22:22,268]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/lib/spring-scripting-bsh.jar to /opt/buildagent/backup/lib/spring-scripting-bsh.jar
[2024-03-19 06:22:22,268]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/lib/nuget-utils.jar to /opt/buildagent/backup/lib/nuget-utils.jar
[2024-03-19 06:22:22,268]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/lib/annotations.jar to /opt/buildagent/backup/lib/annotations.jar
[2024-03-19 06:22:22,268]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/lib/app-wrapper.jar to /opt/buildagent/backup/lib/app-wrapper.jar
[2024-03-19 06:22:22,269]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/lib/jackson-datatype-jdk8.jar to /opt/buildagent/backup/lib/jackson-datatype-jdk8.jar
[2024-03-19 06:22:22,269]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/lib/commons-compress.jar to /opt/buildagent/backup/lib/commons-compress.jar
[2024-03-19 06:22:22,270]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/lib/agentInstaller-UI.jar to /opt/buildagent/backup/lib/agentInstaller-UI.jar
[2024-03-19 06:22:22,270]  DEBUG - er.agent.upgrade.UpgradeFolder - UpgradeFolder: LauncherFolder [launcher] --> backup
[2024-03-19 06:22:22,270]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/launcher to /opt/buildagent/backup/launcher
[2024-03-19 06:22:22,271]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/launcher/conf to /opt/buildagent/backup/launcher/conf
[2024-03-19 06:22:22,271]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/launcher/conf/wrapper.conf to /opt/buildagent/backup/launcher/conf/wrapper.conf
[2024-03-19 06:22:22,271]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/launcher/lib to /opt/buildagent/backup/launcher/lib
[2024-03-19 06:22:22,271]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/launcher/lib/libwrapper-solaris-sparc-64.so to /opt/buildagent/backup/launcher/lib/libwrapper-solaris-sparc-64.so
[2024-03-19 06:22:22,271]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/launcher/lib/libwrapper-linux-x86-64.so to /opt/buildagent/backup/launcher/lib/libwrapper-linux-x86-64.so
[2024-03-19 06:22:22,271]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/launcher/lib/libwrapper-solaris-x86-32.so to /opt/buildagent/backup/launcher/lib/libwrapper-solaris-x86-32.so
[2024-03-19 06:22:22,272]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/launcher/lib/libwrapper-macosx-universal-32.jnilib to /opt/buildagent/backup/launcher/lib/libwrapper-macosx-universal-32.jnilib
[2024-03-19 06:22:22,272]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/launcher/lib/libwrapper-solaris-sparc-32.so to /opt/buildagent/backup/launcher/lib/libwrapper-solaris-sparc-32.so
[2024-03-19 06:22:22,272]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/launcher/lib/launcher.jar to /opt/buildagent/backup/launcher/lib/launcher.jar
[2024-03-19 06:22:22,272]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/launcher/lib/wrapper-windows-x86-64.dll to /opt/buildagent/backup/launcher/lib/wrapper-windows-x86-64.dll
[2024-03-19 06:22:22,273]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/launcher/lib/libwrapper-macosx-ppc-32.jnilib to /opt/buildagent/backup/launcher/lib/libwrapper-macosx-ppc-32.jnilib
[2024-03-19 06:22:22,273]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/launcher/lib/wrapper.jar to /opt/buildagent/backup/launcher/lib/wrapper.jar
[2024-03-19 06:22:22,273]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/launcher/lib/log4j-api-2.17.2.jar to /opt/buildagent/backup/launcher/lib/log4j-api-2.17.2.jar
[2024-03-19 06:22:22,274]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/launcher/lib/wrapper-windows-x86-32.dll to /opt/buildagent/backup/launcher/lib/wrapper-windows-x86-32.dll
[2024-03-19 06:22:22,274]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/launcher/lib/log4j-core-2.17.2.jar to /opt/buildagent/backup/launcher/lib/log4j-core-2.17.2.jar
[2024-03-19 06:22:22,276]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/launcher/lib/libwrapper-linux-x86-32.so to /opt/buildagent/backup/launcher/lib/libwrapper-linux-x86-32.so
[2024-03-19 06:22:22,277]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/launcher/lib/log4j-1.2-api-2.17.2.jar to /opt/buildagent/backup/launcher/lib/log4j-1.2-api-2.17.2.jar
[2024-03-19 06:22:22,277]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/launcher/lib/libwrapper-linux-ppc-64.so to /opt/buildagent/backup/launcher/lib/libwrapper-linux-ppc-64.so
[2024-03-19 06:22:22,278]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/launcher/lib/buildAgent-updates-applying.jar to /opt/buildagent/backup/launcher/lib/buildAgent-updates-applying.jar
[2024-03-19 06:22:22,278]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/launcher/lib/agent-launcher.jar to /opt/buildagent/backup/launcher/lib/agent-launcher.jar
[2024-03-19 06:22:22,278]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/launcher/lib/annotations.jar to /opt/buildagent/backup/launcher/lib/annotations.jar
[2024-03-19 06:22:22,278]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/launcher/JavaServiceWrapperLicense.txt to /opt/buildagent/backup/launcher/JavaServiceWrapperLicense.txt
[2024-03-19 06:22:22,278]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/launcher/bin to /opt/buildagent/backup/launcher/bin
[2024-03-19 06:22:22,278]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/launcher/bin/TeamCityAgentService-solaris-sparc-32 to /opt/buildagent/backup/launcher/bin/TeamCityAgentService-solaris-sparc-32
[2024-03-19 06:22:22,279]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/launcher/bin/TeamCityAgentService-linux-x86-64 to /opt/buildagent/backup/launcher/bin/TeamCityAgentService-linux-x86-64
[2024-03-19 06:22:22,279]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/launcher/bin/TeamCityAgentService-windows-x86-32.exe to /opt/buildagent/backup/launcher/bin/TeamCityAgentService-windows-x86-32.exe
[2024-03-19 06:22:22,280]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/launcher/bin/TeamCityAgentService-linux-x86-32 to /opt/buildagent/backup/launcher/bin/TeamCityAgentService-linux-x86-32
[2024-03-19 06:22:22,280]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/launcher/bin/TeamCityAgentService-macosx-ppc-32 to /opt/buildagent/backup/launcher/bin/TeamCityAgentService-macosx-ppc-32
[2024-03-19 06:22:22,280]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/launcher/bin/TeamCityAgentService-windows-x86-64.exe to /opt/buildagent/backup/launcher/bin/TeamCityAgentService-windows-x86-64.exe
[2024-03-19 06:22:22,281]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/launcher/bin/TeamCityAgentService-solaris-sparc-64 to /opt/buildagent/backup/launcher/bin/TeamCityAgentService-solaris-sparc-64
[2024-03-19 06:22:22,281]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/launcher/bin/TeamCityAgentService-linux-ppc-64 to /opt/buildagent/backup/launcher/bin/TeamCityAgentService-linux-ppc-64
[2024-03-19 06:22:22,281]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/launcher/bin/TeamCityAgentService-solaris-x86-32 to /opt/buildagent/backup/launcher/bin/TeamCityAgentService-solaris-x86-32
[2024-03-19 06:22:22,282]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/launcher/bin/TeamCityAgentService-macosx-universal-32 to /opt/buildagent/backup/launcher/bin/TeamCityAgentService-macosx-universal-32
[2024-03-19 06:22:22,282]   INFO - ver.agent.upgrade.AgentUpgrade - ===> Upgrade agent
[2024-03-19 06:22:22,282]  DEBUG - er.agent.upgrade.UpgradeFolder - UpgradeFolder: AgentRootFilesFolder [.] --> upgrade
[2024-03-19 06:22:22,283]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent
[2024-03-19 06:22:22,283]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/conf
[2024-03-19 06:22:22,283]  DEBUG - buildServer.agent.LauncherUtil - Skipped delete /opt/buildagent/conf
[2024-03-19 06:22:22,283]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/service.properties
[2024-03-19 06:22:22,283]  DEBUG - buildServer.agent.LauncherUtil - Skipped delete /opt/buildagent/service.properties
[2024-03-19 06:22:22,283]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/contrib
[2024-03-19 06:22:22,283]  DEBUG - buildServer.agent.LauncherUtil - Skipped delete /opt/buildagent/contrib
[2024-03-19 06:22:22,283]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/plugins
[2024-03-19 06:22:22,283]  DEBUG - buildServer.agent.LauncherUtil - Skipped delete /opt/buildagent/plugins
[2024-03-19 06:22:22,283]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/BUILD_147586
[2024-03-19 06:22:22,283]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/README.md
[2024-03-19 06:22:22,283]  DEBUG - buildServer.agent.LauncherUtil - Skipped delete /opt/buildagent/README.md
[2024-03-19 06:22:22,283]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/lib
[2024-03-19 06:22:22,283]  DEBUG - buildServer.agent.LauncherUtil - Skipped delete /opt/buildagent/lib
[2024-03-19 06:22:22,284]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/launcher
[2024-03-19 06:22:22,284]  DEBUG - buildServer.agent.LauncherUtil - Skipped delete /opt/buildagent/launcher
[2024-03-19 06:22:22,284]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/tools
[2024-03-19 06:22:22,284]  DEBUG - buildServer.agent.LauncherUtil - Skipped delete /opt/buildagent/tools
[2024-03-19 06:22:22,284]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/system
[2024-03-19 06:22:22,284]  DEBUG - buildServer.agent.LauncherUtil - Skipped delete /opt/buildagent/system
[2024-03-19 06:22:22,284]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/bin
[2024-03-19 06:22:22,284]  DEBUG - buildServer.agent.LauncherUtil - Skipped delete /opt/buildagent/bin
[2024-03-19 06:22:22,284]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/update
[2024-03-19 06:22:22,284]  DEBUG - buildServer.agent.LauncherUtil - Skipped delete /opt/buildagent/update
[2024-03-19 06:22:22,284]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup
[2024-03-19 06:22:22,284]  DEBUG - buildServer.agent.LauncherUtil - Skipped delete /opt/buildagent/backup
[2024-03-19 06:22:22,284]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/logs
[2024-03-19 06:22:22,284]  DEBUG - buildServer.agent.LauncherUtil - Skipped delete /opt/buildagent/logs
[2024-03-19 06:22:22,284]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/work
[2024-03-19 06:22:22,284]  DEBUG - buildServer.agent.LauncherUtil - Skipped delete /opt/buildagent/work
[2024-03-19 06:22:22,284]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/temp
[2024-03-19 06:22:22,285]  DEBUG - buildServer.agent.LauncherUtil - Skipped delete /opt/buildagent/temp
[2024-03-19 06:22:22,285]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/update to /opt/buildagent
[2024-03-19 06:22:22,285]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/update/conf to /opt/buildagent/conf
[2024-03-19 06:22:22,285]  DEBUG - buildServer.agent.LauncherUtil - Skipped copy from /opt/buildagent/update/conf to /opt/buildagent/conf
[2024-03-19 06:22:22,285]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/update/service.properties to /opt/buildagent/service.properties
[2024-03-19 06:22:22,285]  DEBUG - buildServer.agent.LauncherUtil - Skipped copy from /opt/buildagent/update/service.properties to /opt/buildagent/service.properties
[2024-03-19 06:22:22,285]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/update/contrib to /opt/buildagent/contrib
[2024-03-19 06:22:22,285]  DEBUG - buildServer.agent.LauncherUtil - Skipped copy from /opt/buildagent/update/contrib to /opt/buildagent/contrib
[2024-03-19 06:22:22,285]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/update/README.md to /opt/buildagent/README.md
[2024-03-19 06:22:22,285]  DEBUG - buildServer.agent.LauncherUtil - Skipped copy from /opt/buildagent/update/README.md to /opt/buildagent/README.md
[2024-03-19 06:22:22,285]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/update/lib to /opt/buildagent/lib
[2024-03-19 06:22:22,285]  DEBUG - buildServer.agent.LauncherUtil - Skipped copy from /opt/buildagent/update/lib to /opt/buildagent/lib
[2024-03-19 06:22:22,285]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/update/launcher to /opt/buildagent/launcher
[2024-03-19 06:22:22,286]  DEBUG - buildServer.agent.LauncherUtil - Skipped copy from /opt/buildagent/update/launcher to /opt/buildagent/launcher
[2024-03-19 06:22:22,286]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/update/BUILD_117072 to /opt/buildagent/BUILD_117072
[2024-03-19 06:22:22,286]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/update/bin to /opt/buildagent/bin
[2024-03-19 06:22:22,286]  DEBUG - buildServer.agent.LauncherUtil - Skipped copy from /opt/buildagent/update/bin to /opt/buildagent/bin
[2024-03-19 06:22:22,286]  DEBUG - buildServer.agent.LauncherUtil - Failed to read /opt/buildagent/update/teamcity-agent.xml.move. Failed to read /opt/buildagent/update/teamcity-agent.xml.move. /opt/buildagent/update/teamcity-agent.xml.move (No such file or directory)
[2024-03-19 06:22:22,286]   INFO - t.upgrade.AgentRootFilesFolder - Version file: /opt/buildagent/update/teamcity-agent.xml
[2024-03-19 06:22:22,286]   INFO - t.upgrade.AgentRootFilesFolder - Version file dest path: null
[2024-03-19 06:22:22,286]   WARN - t.upgrade.AgentRootFilesFolder - Version file does not exist
[2024-03-19 06:22:22,286]  DEBUG - er.agent.upgrade.UpgradeFolder - UpgradeFolder: FilesOnlyUpgradeFolder [bin] --> upgrade
[2024-03-19 06:22:22,287]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/bin
[2024-03-19 06:22:22,287]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/bin/service.install.bat
[2024-03-19 06:22:22,287]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/bin/service.start.bat
[2024-03-19 06:22:22,287]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/bin/installJava.bat
[2024-03-19 06:22:22,288]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/bin/service.uninstall.bat
[2024-03-19 06:22:22,288]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/bin/install.sh
[2024-03-19 06:22:22,288]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/bin/agent.bat
[2024-03-19 06:22:22,288]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/bin/service.stop.bat
[2024-03-19 06:22:22,288]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/bin/changeAgentProps.bat
[2024-03-19 06:22:22,288]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/bin/jetbrains.teamcity.BuildAgent.plist
[2024-03-19 06:22:22,288]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/bin/mac.launchd.sh
[2024-03-19 06:22:22,288]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/bin/agent.sh
[2024-03-19 06:22:22,288]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/bin/jetbrains.teamcity.BuildAgentUpgrade.plist.dist
[2024-03-19 06:22:22,288]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/bin/findJava.sh
[2024-03-19 06:22:22,288]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/bin/findJava.bat
[2024-03-19 06:22:22,289]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/bin/generateNewServiceName.bat
[2024-03-19 06:22:22,289]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/bin/install.bat
[2024-03-19 06:22:22,289]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/bin/uninstall.bat
[2024-03-19 06:22:22,289]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/update/bin to /opt/buildagent/bin
[2024-03-19 06:22:22,289]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/update/bin/service.install.bat to /opt/buildagent/bin/service.install.bat
[2024-03-19 06:22:22,289]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/update/bin/service.start.bat to /opt/buildagent/bin/service.start.bat
[2024-03-19 06:22:22,290]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/update/bin/installJava.bat to /opt/buildagent/bin/installJava.bat
[2024-03-19 06:22:22,290]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/update/bin/service.uninstall.bat to /opt/buildagent/bin/service.uninstall.bat
[2024-03-19 06:22:22,290]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/update/bin/install.sh to /opt/buildagent/bin/install.sh
[2024-03-19 06:22:22,290]  DEBUG - buildServer.agent.LauncherUtil - Set executable bit for /opt/buildagent/bin/install.sh
[2024-03-19 06:22:22,292]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/update/bin/agent.bat to /opt/buildagent/bin/agent.bat
[2024-03-19 06:22:22,292]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/update/bin/service.stop.bat to /opt/buildagent/bin/service.stop.bat
[2024-03-19 06:22:22,293]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/update/bin/changeAgentProps.bat to /opt/buildagent/bin/changeAgentProps.bat
[2024-03-19 06:22:22,293]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/update/bin/jetbrains.teamcity.BuildAgent.plist to /opt/buildagent/bin/jetbrains.teamcity.BuildAgent.plist
[2024-03-19 06:22:22,293]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/update/bin/mac.launchd.sh to /opt/buildagent/bin/mac.launchd.sh
[2024-03-19 06:22:22,293]  DEBUG - buildServer.agent.LauncherUtil - Set executable bit for /opt/buildagent/bin/mac.launchd.sh
[2024-03-19 06:22:22,297]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/update/bin/agent.sh to /opt/buildagent/bin/agent.sh
[2024-03-19 06:22:22,297]  DEBUG - buildServer.agent.LauncherUtil - Set executable bit for /opt/buildagent/bin/agent.sh
[2024-03-19 06:22:22,299]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/update/bin/jetbrains.teamcity.BuildAgentUpgrade.plist.dist to /opt/buildagent/bin/jetbrains.teamcity.BuildAgentUpgrade.plist.dist
[2024-03-19 06:22:22,299]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/update/bin/findJava.sh to /opt/buildagent/bin/findJava.sh
[2024-03-19 06:22:22,299]  DEBUG - buildServer.agent.LauncherUtil - Set executable bit for /opt/buildagent/bin/findJava.sh
[2024-03-19 06:22:22,300]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/update/bin/findJava.bat to /opt/buildagent/bin/findJava.bat
[2024-03-19 06:22:22,300]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/update/bin/generateNewServiceName.bat to /opt/buildagent/bin/generateNewServiceName.bat
[2024-03-19 06:22:22,300]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/update/bin/install.bat to /opt/buildagent/bin/install.bat
[2024-03-19 06:22:22,301]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/update/bin/uninstall.bat to /opt/buildagent/bin/uninstall.bat
[2024-03-19 06:22:22,301]  DEBUG - er.agent.upgrade.UpgradeFolder - UpgradeFolder: SimpleUpgradeFolder [lib] --> upgrade
[2024-03-19 06:22:22,301]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/lib
[2024-03-19 06:22:22,302]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/lib/spring-instrument.jar
[2024-03-19 06:22:22,302]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/lib/common.jar
[2024-03-19 06:22:22,302]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/lib/plugin-model-common.jar
[2024-03-19 06:22:22,302]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/lib/agent-core.jar
[2024-03-19 06:22:22,302]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/lib/spring-tx.jar
[2024-03-19 06:22:22,302]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/lib/net.sf.trove4j.trove4j.jar
[2024-03-19 06:22:22,302]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/lib/patches.jar
[2024-03-19 06:22:22,302]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/lib/patches-impl.jar
[2024-03-19 06:22:22,302]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/lib/spring-scripting-groovy.jar
[2024-03-19 06:22:22,302]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/lib/idea-settings.jar
[2024-03-19 06:22:22,302]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/lib/agent-launcher-obsolete.jar
[2024-03-19 06:22:22,303]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/lib/jackson-core.jar
[2024-03-19 06:22:22,303]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/lib/build-version.jar
[2024-03-19 06:22:22,303]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/lib/log4j-api.jar
[2024-03-19 06:22:22,303]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/lib/jackson-dataformat-xml.jar
[2024-03-19 06:22:22,303]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/lib/xz.jar
[2024-03-19 06:22:22,303]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/lib/log4j-core.jar
[2024-03-19 06:22:22,303]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/lib/spring-beans.jar
[2024-03-19 06:22:22,303]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/lib/utils.jar
[2024-03-19 06:22:22,303]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/lib/jaxen.jar
[2024-03-19 06:22:22,303]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/lib/freemarker.jar
[2024-03-19 06:22:22,303]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/lib/woodstox-core.jar
[2024-03-19 06:22:22,303]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/lib/common-runtime.jar
[2024-03-19 06:22:22,303]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/lib/jackson-module-jaxb-annotations.jar
[2024-03-19 06:22:22,303]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/lib/jackson-dataformat-yaml.jar
[2024-03-19 06:22:22,303]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/lib/messages.jar
[2024-03-19 06:22:22,303]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/lib/httpmime.jar
[2024-03-19 06:22:22,304]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/lib/commons-collections.jar
[2024-03-19 06:22:22,304]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/lib/spring-aspects.jar
[2024-03-19 06:22:22,304]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/lib/joda-time.jar
[2024-03-19 06:22:22,304]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/lib/spring-aop.jar
[2024-03-19 06:22:22,304]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/lib/commons-httpclient.jar
[2024-03-19 06:22:22,304]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/lib/jackson-module-parameter-names.jar
[2024-03-19 06:22:22,304]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/lib/commons-io.jar
[2024-03-19 06:22:22,304]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/lib/xercesImpl.jar
[2024-03-19 06:22:22,304]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/lib/agent-configurator.jar
[2024-03-19 06:22:22,304]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/lib/idea-obsolete-openapi.jar
[2024-03-19 06:22:22,304]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/lib/jackson-datatype-jsr310.jar
[2024-03-19 06:22:22,304]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/lib/spring-context.jar
[2024-03-19 06:22:22,304]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/lib/commons-beanutils.jar
[2024-03-19 06:22:22,305]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/lib/common-tools.jar
[2024-03-19 06:22:22,305]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/lib/common-vcs.jar
[2024-03-19 06:22:22,305]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/lib/coverage-report.jar
[2024-03-19 06:22:22,305]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/lib/spring-core.jar
[2024-03-19 06:22:22,305]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/lib/common-jackson.jar
[2024-03-19 06:22:22,305]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/lib/jdk-searcher.jar
[2024-03-19 06:22:22,305]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/lib/jetps.zip
[2024-03-19 06:22:22,305]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/lib/connections-api-common.jar
[2024-03-19 06:22:22,305]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/lib/jdom.jar
[2024-03-19 06:22:22,305]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/lib/launcher.jar
[2024-03-19 06:22:22,305]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/lib/ehcache-core.jar
[2024-03-19 06:22:22,305]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/lib/xml-rpc-wrapper.jar
[2024-03-19 06:22:22,305]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/lib/stax2-api.jar
[2024-03-19 06:22:22,305]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/lib/common-graph.jar
[2024-03-19 06:22:22,305]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/lib/spring-context-support.jar
[2024-03-19 06:22:22,305]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/lib/httpcore.jar
[2024-03-19 06:22:22,305]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/lib/serviceMessages.jar
[2024-03-19 06:22:22,306]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/lib/agent-launcher-common.jar
[2024-03-19 06:22:22,306]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/lib/spring-expression.jar
[2024-03-19 06:22:22,306]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/lib/commons-logging.jar
[2024-03-19 06:22:22,306]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/lib/xmlrpc.jar
[2024-03-19 06:22:22,306]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/lib/spring-scripting
[2024-03-19 06:22:22,306]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/lib/spring-scripting/spring-scripting-groovy.jar
[2024-03-19 06:22:22,306]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/lib/spring-scripting/spring-scripting-jruby.jar
[2024-03-19 06:22:22,306]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/lib/spring-scripting/spring-scripting-bsh.jar
[2024-03-19 06:22:22,306]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/lib/launcher-api.jar
[2024-03-19 06:22:22,306]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/lib/jackson-databind.jar
[2024-03-19 06:22:22,307]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/lib/buildAgent-updates-applying-obsolete.jar
[2024-03-19 06:22:22,307]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/lib/agent-upgrade.jar
[2024-03-19 06:22:22,307]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/lib/httpclient.jar
[2024-03-19 06:22:22,307]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/lib/coverage-java-agent-common.jar
[2024-03-19 06:22:22,308]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/lib/spring-jdbc.jar
[2024-03-19 06:22:22,308]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/lib/log4j-1.2-api.jar
[2024-03-19 06:22:22,308]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/lib/common-impl.jar
[2024-03-19 06:22:22,308]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/lib/gson.jar
[2024-03-19 06:22:22,308]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/lib/common-step-conditions.jar
[2024-03-19 06:22:22,309]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/lib/runtime-util.jar
[2024-03-19 06:22:22,309]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/lib/xpp3.jar
[2024-03-19 06:22:22,309]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/lib/patches-low.jar
[2024-03-19 06:22:22,309]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/lib/cloud-shared-core.jar
[2024-03-19 06:22:22,309]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/lib/server-logging.jar
[2024-03-19 06:22:22,309]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/lib/duplicator-util.jar
[2024-03-19 06:22:22,309]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/lib/agent-upgrade-common.jar
[2024-03-19 06:22:22,309]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/lib/com.github.adedayo.intellij.sdk.trove4j.jar
[2024-03-19 06:22:22,309]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/lib/snakeyaml.jar
[2024-03-19 06:22:22,309]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/lib/slf4j-api.jar
[2024-03-19 06:22:22,309]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/lib/commons-codec.jar
[2024-03-19 06:22:22,310]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/lib/spring-scripting-jruby.jar
[2024-03-19 06:22:22,310]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/lib/jackson-annotations.jar
[2024-03-19 06:22:22,310]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/lib/logging.jar
[2024-03-19 06:22:22,310]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/lib/xml-apis.jar
[2024-03-19 06:22:22,310]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/lib/agent-openapi.jar
[2024-03-19 06:22:22,310]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/lib/inspections-util.jar
[2024-03-19 06:22:22,310]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/lib/jakarta.xml.bind-api.jar
[2024-03-19 06:22:22,310]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/lib/service-utils.jar
[2024-03-19 06:22:22,310]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/lib/log4j-slf4j-impl.jar
[2024-03-19 06:22:22,310]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/lib/oauth-integration-agent.jar
[2024-03-19 06:22:22,311]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/lib/xstream.jar
[2024-03-19 06:22:22,311]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/lib/common-spring.jar
[2024-03-19 06:22:22,311]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/lib/spring-scripting-bsh.jar
[2024-03-19 06:22:22,311]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/lib/nuget-utils.jar
[2024-03-19 06:22:22,311]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/lib/annotations.jar
[2024-03-19 06:22:22,311]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/lib/app-wrapper.jar
[2024-03-19 06:22:22,311]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/lib/jackson-datatype-jdk8.jar
[2024-03-19 06:22:22,311]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/lib/commons-compress.jar
[2024-03-19 06:22:22,311]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/lib/agentInstaller-UI.jar
[2024-03-19 06:22:22,311]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/update/lib to /opt/buildagent/lib
[2024-03-19 06:22:22,312]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/update/lib/common.jar to /opt/buildagent/lib/common.jar
[2024-03-19 06:22:22,314]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/update/lib/patches.jar to /opt/buildagent/lib/patches.jar
[2024-03-19 06:22:22,314]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/update/lib/patches-impl.jar to /opt/buildagent/lib/patches-impl.jar
[2024-03-19 06:22:22,315]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/update/lib/xpp3-1.1.4c.jar to /opt/buildagent/lib/xpp3-1.1.4c.jar
[2024-03-19 06:22:22,315]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/update/lib/coverage-agent-common.jar to /opt/buildagent/lib/coverage-agent-common.jar
[2024-03-19 06:22:22,315]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/update/lib/xml-apis-1.4.01.jar to /opt/buildagent/lib/xml-apis-1.4.01.jar
[2024-03-19 06:22:22,316]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/update/lib/agent.jar to /opt/buildagent/lib/agent.jar
[2024-03-19 06:22:22,317]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/update/lib/idea-settings.jar to /opt/buildagent/lib/idea-settings.jar
[2024-03-19 06:22:22,317]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/update/lib/jackson-core.jar to /opt/buildagent/lib/jackson-core.jar
[2024-03-19 06:22:22,318]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/update/lib/jackson-dataformat-xml.jar to /opt/buildagent/lib/jackson-dataformat-xml.jar
[2024-03-19 06:22:22,318]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/update/lib/freemarker.jar to /opt/buildagent/lib/freemarker.jar
[2024-03-19 06:22:22,320]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/update/lib/cloud-shared.jar to /opt/buildagent/lib/cloud-shared.jar
[2024-03-19 06:22:22,320]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/update/lib/util.jar to /opt/buildagent/lib/util.jar
[2024-03-19 06:22:22,320]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/update/lib/woodstox-core.jar to /opt/buildagent/lib/woodstox-core.jar
[2024-03-19 06:22:22,322]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/update/lib/common-runtime.jar to /opt/buildagent/lib/common-runtime.jar
[2024-03-19 06:22:22,322]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/update/lib/gson-2.9.0.jar to /opt/buildagent/lib/gson-2.9.0.jar
[2024-03-19 06:22:22,323]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/update/lib/jackson-module-jaxb-annotations.jar to /opt/buildagent/lib/jackson-module-jaxb-annotations.jar
[2024-03-19 06:22:22,323]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/update/lib/jackson-dataformat-yaml.jar to /opt/buildagent/lib/jackson-dataformat-yaml.jar
[2024-03-19 06:22:22,323]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/update/lib/trove-3.0.3.jar to /opt/buildagent/lib/trove-3.0.3.jar
[2024-03-19 06:22:22,325]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/update/lib/messages.jar to /opt/buildagent/lib/messages.jar
[2024-03-19 06:22:22,326]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/update/lib/joda-time.jar to /opt/buildagent/lib/joda-time.jar
[2024-03-19 06:22:22,326]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/update/lib/coverage-report-1.0.jar to /opt/buildagent/lib/coverage-report-1.0.jar
[2024-03-19 06:22:22,327]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/update/lib/jackson-module-parameter-names.jar to /opt/buildagent/lib/jackson-module-parameter-names.jar
[2024-03-19 06:22:22,327]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/update/lib/xercesImpl.jar to /opt/buildagent/lib/xercesImpl.jar
[2024-03-19 06:22:22,328]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/update/lib/agent-configurator.jar to /opt/buildagent/lib/agent-configurator.jar
[2024-03-19 06:22:22,329]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/update/lib/trove4j.jar to /opt/buildagent/lib/trove4j.jar
[2024-03-19 06:22:22,329]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/update/lib/jackson-datatype-jsr310.jar to /opt/buildagent/lib/jackson-datatype-jsr310.jar
[2024-03-19 06:22:22,329]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/update/lib/log4j-slf4j-impl-2.17.2.jar to /opt/buildagent/lib/log4j-slf4j-impl-2.17.2.jar
[2024-03-19 06:22:22,330]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/update/lib/agent-installer-ui.jar to /opt/buildagent/lib/agent-installer-ui.jar
[2024-03-19 06:22:22,330]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/update/lib/jdk-searcher.jar to /opt/buildagent/lib/jdk-searcher.jar
[2024-03-19 06:22:22,330]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/update/lib/spring.jar to /opt/buildagent/lib/spring.jar
[2024-03-19 06:22:22,335]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/update/lib/ehcache-1.7.2.jar to /opt/buildagent/lib/ehcache-1.7.2.jar
[2024-03-19 06:22:22,335]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/update/lib/jdom.jar to /opt/buildagent/lib/jdom.jar
[2024-03-19 06:22:22,336]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/update/lib/launcher.jar to /opt/buildagent/lib/launcher.jar
[2024-03-19 06:22:22,336]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/update/lib/xml-rpc-wrapper.jar to /opt/buildagent/lib/xml-rpc-wrapper.jar
[2024-03-19 06:22:22,336]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/update/lib/stax2-api.jar to /opt/buildagent/lib/stax2-api.jar
[2024-03-19 06:22:22,337]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/update/lib/commons-collections-3.2.2.jar to /opt/buildagent/lib/commons-collections-3.2.2.jar
[2024-03-19 06:22:22,337]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/update/lib/serviceMessages.jar to /opt/buildagent/lib/serviceMessages.jar
[2024-03-19 06:22:22,338]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/update/lib/commons-logging.jar to /opt/buildagent/lib/commons-logging.jar
[2024-03-19 06:22:22,338]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/update/lib/spring-scripting to /opt/buildagent/lib/spring-scripting
[2024-03-19 06:22:22,338]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/update/lib/spring-scripting/spring-scripting-groovy.jar to /opt/buildagent/lib/spring-scripting/spring-scripting-groovy.jar
[2024-03-19 06:22:22,338]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/update/lib/spring-scripting/spring-scripting-jruby.jar to /opt/buildagent/lib/spring-scripting/spring-scripting-jruby.jar
[2024-03-19 06:22:22,339]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/update/lib/spring-scripting/spring-scripting-bsh.jar to /opt/buildagent/lib/spring-scripting/spring-scripting-bsh.jar
[2024-03-19 06:22:22,339]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/update/lib/launcher-api.jar to /opt/buildagent/lib/launcher-api.jar
[2024-03-19 06:22:22,339]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/update/lib/jackson-databind.jar to /opt/buildagent/lib/jackson-databind.jar
[2024-03-19 06:22:22,340]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/update/lib/agent-upgrade.jar to /opt/buildagent/lib/agent-upgrade.jar
[2024-03-19 06:22:22,341]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/update/lib/log4j-api-2.17.2.jar to /opt/buildagent/lib/log4j-api-2.17.2.jar
[2024-03-19 06:22:22,341]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/update/lib/common-impl.jar to /opt/buildagent/lib/common-impl.jar
[2024-03-19 06:22:22,342]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/update/lib/commons-compress-1.21.jar to /opt/buildagent/lib/commons-compress-1.21.jar
[2024-03-19 06:22:22,343]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/update/lib/xstream-1.4.11.1-custom.jar to /opt/buildagent/lib/xstream-1.4.11.1-custom.jar
[2024-03-19 06:22:22,344]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/update/lib/runtime-util.jar to /opt/buildagent/lib/runtime-util.jar
[2024-03-19 06:22:22,344]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/update/lib/commons-beanutils-core.jar to /opt/buildagent/lib/commons-beanutils-core.jar
[2024-03-19 06:22:22,344]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/update/lib/openapi.jar to /opt/buildagent/lib/openapi.jar
[2024-03-19 06:22:22,346]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/update/lib/server-logging.jar to /opt/buildagent/lib/server-logging.jar
[2024-03-19 06:22:22,346]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/update/lib/duplicator-util.jar to /opt/buildagent/lib/duplicator-util.jar
[2024-03-19 06:22:22,346]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/update/lib/commons-io-1.3.2.jar to /opt/buildagent/lib/commons-io-1.3.2.jar
[2024-03-19 06:22:22,347]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/update/lib/snakeyaml.jar to /opt/buildagent/lib/snakeyaml.jar
[2024-03-19 06:22:22,347]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/update/lib/jaxen-1.1.1.jar to /opt/buildagent/lib/jaxen-1.1.1.jar
[2024-03-19 06:22:22,348]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/update/lib/log4j-core-2.17.2.jar to /opt/buildagent/lib/log4j-core-2.17.2.jar
[2024-03-19 06:22:22,349]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/update/lib/commons-codec.jar to /opt/buildagent/lib/commons-codec.jar
[2024-03-19 06:22:22,350]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/update/lib/commons-httpclient-3.1.jar to /opt/buildagent/lib/commons-httpclient-3.1.jar
[2024-03-19 06:22:22,350]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/update/lib/jackson-annotations.jar to /opt/buildagent/lib/jackson-annotations.jar
[2024-03-19 06:22:22,351]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/update/lib/log4j-1.2-api-2.17.2.jar to /opt/buildagent/lib/log4j-1.2-api-2.17.2.jar
[2024-03-19 06:22:22,351]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/update/lib/logging.jar to /opt/buildagent/lib/logging.jar
[2024-03-19 06:22:22,351]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/update/lib/agent-openapi.jar to /opt/buildagent/lib/agent-openapi.jar
[2024-03-19 06:22:22,352]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/update/lib/inspections-util.jar to /opt/buildagent/lib/inspections-util.jar
[2024-03-19 06:22:22,352]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/update/lib/jakarta.xml.bind-api.jar to /opt/buildagent/lib/jakarta.xml.bind-api.jar
[2024-03-19 06:22:22,352]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/update/lib/slf4j-api-1.7.36.jar to /opt/buildagent/lib/slf4j-api-1.7.36.jar
[2024-03-19 06:22:22,352]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/update/lib/buildAgent-updates-applying.jar to /opt/buildagent/lib/buildAgent-updates-applying.jar
[2024-03-19 06:22:22,353]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/update/lib/resources_en.jar to /opt/buildagent/lib/resources_en.jar
[2024-03-19 06:22:22,353]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/update/lib/oauth-integration-agent.jar to /opt/buildagent/lib/oauth-integration-agent.jar
[2024-03-19 06:22:22,353]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/update/lib/nuget-utils.jar to /opt/buildagent/lib/nuget-utils.jar
[2024-03-19 06:22:22,353]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/update/lib/agent-launcher.jar to /opt/buildagent/lib/agent-launcher.jar
[2024-03-19 06:22:22,353]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/update/lib/annotations.jar to /opt/buildagent/lib/annotations.jar
[2024-03-19 06:22:22,354]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/update/lib/app-wrapper.jar to /opt/buildagent/lib/app-wrapper.jar
[2024-03-19 06:22:22,354]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/update/lib/xz-1.8.jar to /opt/buildagent/lib/xz-1.8.jar
[2024-03-19 06:22:22,355]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/update/lib/jackson-datatype-jdk8.jar to /opt/buildagent/lib/jackson-datatype-jdk8.jar
[2024-03-19 06:22:22,355]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/update/lib/xmlrpc-2.0.1.jar to /opt/buildagent/lib/xmlrpc-2.0.1.jar
[2024-03-19 06:22:22,355]  DEBUG - er.agent.upgrade.UpgradeFolder - UpgradeFolder: LauncherFolder [launcher] --> upgrade
[2024-03-19 06:22:22,355]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/launcher
[2024-03-19 06:22:22,355]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/launcher/conf
[2024-03-19 06:22:22,355]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/launcher/conf/wrapper.conf
[2024-03-19 06:22:22,355]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/launcher/lib
[2024-03-19 06:22:22,356]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/launcher/lib/libwrapper-solaris-sparc-64.so
[2024-03-19 06:22:22,356]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/launcher/lib/libwrapper-linux-x86-64.so
[2024-03-19 06:22:22,356]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/launcher/lib/libwrapper-solaris-x86-32.so
[2024-03-19 06:22:22,356]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/launcher/lib/libwrapper-macosx-universal-32.jnilib
[2024-03-19 06:22:22,356]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/launcher/lib/libwrapper-solaris-sparc-32.so
[2024-03-19 06:22:22,356]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/launcher/lib/launcher.jar
[2024-03-19 06:22:22,357]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/launcher/lib/wrapper-windows-x86-64.dll
[2024-03-19 06:22:22,357]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/launcher/lib/libwrapper-macosx-ppc-32.jnilib
[2024-03-19 06:22:22,357]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/launcher/lib/wrapper.jar
[2024-03-19 06:22:22,357]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/launcher/lib/log4j-api-2.17.2.jar
[2024-03-19 06:22:22,357]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/launcher/lib/wrapper-windows-x86-32.dll
[2024-03-19 06:22:22,357]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/launcher/lib/log4j-core-2.17.2.jar
[2024-03-19 06:22:22,357]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/launcher/lib/libwrapper-linux-x86-32.so
[2024-03-19 06:22:22,357]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/launcher/lib/log4j-1.2-api-2.17.2.jar
[2024-03-19 06:22:22,357]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/launcher/lib/libwrapper-linux-ppc-64.so
[2024-03-19 06:22:22,358]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/launcher/lib/buildAgent-updates-applying.jar
[2024-03-19 06:22:22,358]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/launcher/lib/agent-launcher.jar
[2024-03-19 06:22:22,358]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/launcher/lib/annotations.jar
[2024-03-19 06:22:22,358]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/launcher/JavaServiceWrapperLicense.txt
[2024-03-19 06:22:22,358]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/launcher/bin
[2024-03-19 06:22:22,358]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/launcher/bin/TeamCityAgentService-solaris-sparc-32
[2024-03-19 06:22:22,358]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/launcher/bin/TeamCityAgentService-linux-x86-64
[2024-03-19 06:22:22,358]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/launcher/bin/TeamCityAgentService-windows-x86-32.exe
[2024-03-19 06:22:22,359]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/launcher/bin/TeamCityAgentService-linux-x86-32
[2024-03-19 06:22:22,359]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/launcher/bin/TeamCityAgentService-macosx-ppc-32
[2024-03-19 06:22:22,359]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/launcher/bin/TeamCityAgentService-windows-x86-64.exe
[2024-03-19 06:22:22,359]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/launcher/bin/TeamCityAgentService-solaris-sparc-64
[2024-03-19 06:22:22,359]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/launcher/bin/TeamCityAgentService-linux-ppc-64
[2024-03-19 06:22:22,359]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/launcher/bin/TeamCityAgentService-solaris-x86-32
[2024-03-19 06:22:22,360]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/launcher/bin/TeamCityAgentService-macosx-universal-32
[2024-03-19 06:22:22,360]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/update/launcher to /opt/buildagent/launcher
[2024-03-19 06:22:22,360]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/update/launcher/conf to /opt/buildagent/launcher/conf
[2024-03-19 06:22:22,360]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/update/launcher/conf/wrapper.conf to /opt/buildagent/launcher/conf/wrapper.conf
[2024-03-19 06:22:22,360]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/update/launcher/lib to /opt/buildagent/launcher/lib
[2024-03-19 06:22:22,360]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/update/launcher/lib/libwrapper-solaris-sparc-64.so to /opt/buildagent/launcher/lib/libwrapper-solaris-sparc-64.so
[2024-03-19 06:22:22,361]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/update/launcher/lib/libwrapper-linux-x86-64.so to /opt/buildagent/launcher/lib/libwrapper-linux-x86-64.so
[2024-03-19 06:22:22,361]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/update/launcher/lib/libwrapper-solaris-x86-32.so to /opt/buildagent/launcher/lib/libwrapper-solaris-x86-32.so
[2024-03-19 06:22:22,361]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/update/launcher/lib/libwrapper-macosx-universal-32.jnilib to /opt/buildagent/launcher/lib/libwrapper-macosx-universal-32.jnilib
[2024-03-19 06:22:22,362]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/update/launcher/lib/libwrapper-solaris-sparc-32.so to /opt/buildagent/launcher/lib/libwrapper-solaris-sparc-32.so
[2024-03-19 06:22:22,362]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/update/launcher/lib/launcher.jar to /opt/buildagent/launcher/lib/launcher.jar
[2024-03-19 06:22:22,362]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/update/launcher/lib/wrapper-windows-x86-64.dll to /opt/buildagent/launcher/lib/wrapper-windows-x86-64.dll
[2024-03-19 06:22:22,363]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/update/launcher/lib/libwrapper-macosx-ppc-32.jnilib to /opt/buildagent/launcher/lib/libwrapper-macosx-ppc-32.jnilib
[2024-03-19 06:22:22,363]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/update/launcher/lib/wrapper.jar to /opt/buildagent/launcher/lib/wrapper.jar
[2024-03-19 06:22:22,363]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/update/launcher/lib/log4j-api-2.17.2.jar to /opt/buildagent/launcher/lib/log4j-api-2.17.2.jar
[2024-03-19 06:22:22,364]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/update/launcher/lib/wrapper-windows-x86-32.dll to /opt/buildagent/launcher/lib/wrapper-windows-x86-32.dll
[2024-03-19 06:22:22,364]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/update/launcher/lib/log4j-core-2.17.2.jar to /opt/buildagent/launcher/lib/log4j-core-2.17.2.jar
[2024-03-19 06:22:22,366]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/update/launcher/lib/libwrapper-linux-x86-32.so to /opt/buildagent/launcher/lib/libwrapper-linux-x86-32.so
[2024-03-19 06:22:22,367]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/update/launcher/lib/log4j-1.2-api-2.17.2.jar to /opt/buildagent/launcher/lib/log4j-1.2-api-2.17.2.jar
[2024-03-19 06:22:22,367]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/update/launcher/lib/libwrapper-linux-ppc-64.so to /opt/buildagent/launcher/lib/libwrapper-linux-ppc-64.so
[2024-03-19 06:22:22,367]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/update/launcher/lib/buildAgent-updates-applying.jar to /opt/buildagent/launcher/lib/buildAgent-updates-applying.jar
[2024-03-19 06:22:22,368]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/update/launcher/lib/agent-launcher.jar to /opt/buildagent/launcher/lib/agent-launcher.jar
[2024-03-19 06:22:22,368]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/update/launcher/lib/annotations.jar to /opt/buildagent/launcher/lib/annotations.jar
[2024-03-19 06:22:22,368]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/update/launcher/JavaServiceWrapperLicense.txt to /opt/buildagent/launcher/JavaServiceWrapperLicense.txt
[2024-03-19 06:22:22,368]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/update/launcher/bin to /opt/buildagent/launcher/bin
[2024-03-19 06:22:22,368]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/update/launcher/bin/TeamCityAgentService-solaris-sparc-32 to /opt/buildagent/launcher/bin/TeamCityAgentService-solaris-sparc-32
[2024-03-19 06:22:22,369]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/update/launcher/bin/TeamCityAgentService-linux-x86-64 to /opt/buildagent/launcher/bin/TeamCityAgentService-linux-x86-64
[2024-03-19 06:22:22,369]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/update/launcher/bin/TeamCityAgentService-windows-x86-32.exe to /opt/buildagent/launcher/bin/TeamCityAgentService-windows-x86-32.exe
[2024-03-19 06:22:22,370]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/update/launcher/bin/TeamCityAgentService-linux-x86-32 to /opt/buildagent/launcher/bin/TeamCityAgentService-linux-x86-32
[2024-03-19 06:22:22,370]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/update/launcher/bin/TeamCityAgentService-macosx-ppc-32 to /opt/buildagent/launcher/bin/TeamCityAgentService-macosx-ppc-32
[2024-03-19 06:22:22,371]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/update/launcher/bin/TeamCityAgentService-windows-x86-64.exe to /opt/buildagent/launcher/bin/TeamCityAgentService-windows-x86-64.exe
[2024-03-19 06:22:22,372]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/update/launcher/bin/TeamCityAgentService-solaris-sparc-64 to /opt/buildagent/launcher/bin/TeamCityAgentService-solaris-sparc-64
[2024-03-19 06:22:22,372]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/update/launcher/bin/TeamCityAgentService-linux-ppc-64 to /opt/buildagent/launcher/bin/TeamCityAgentService-linux-ppc-64
[2024-03-19 06:22:22,373]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/update/launcher/bin/TeamCityAgentService-solaris-x86-32 to /opt/buildagent/launcher/bin/TeamCityAgentService-solaris-x86-32
[2024-03-19 06:22:22,373]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/update/launcher/bin/TeamCityAgentService-macosx-universal-32 to /opt/buildagent/launcher/bin/TeamCityAgentService-macosx-universal-32
[2024-03-19 06:22:22,373]   INFO - r.agent.upgrade.LauncherFolder - File /opt/buildagent/launcher/conf/wrapper.conf exists.
[2024-03-19 06:22:22,373]   INFO - r.agent.upgrade.LauncherFolder - File /opt/buildagent/backup/launcher/conf/wrapper.conf exists.
[2024-03-19 06:22:22,373]   INFO - r.agent.upgrade.LauncherFolder - Move file /opt/buildagent/launcher/conf/wrapper.conf to /opt/buildagent/launcher/conf/wrapper.conf.template
[2024-03-19 06:22:22,374]  DEBUG - buildServer.agent.LauncherUtil - Copy from /opt/buildagent/backup/launcher/conf/wrapper.conf to /opt/buildagent/launcher/conf/wrapper.conf
[2024-03-19 06:22:22,374]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup
[2024-03-19 06:22:22,374]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/BUILD_147586
[2024-03-19 06:22:22,374]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/lib
[2024-03-19 06:22:22,374]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/lib/spring-instrument.jar
[2024-03-19 06:22:22,374]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/lib/common.jar
[2024-03-19 06:22:22,374]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/lib/plugin-model-common.jar
[2024-03-19 06:22:22,374]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/lib/agent-core.jar
[2024-03-19 06:22:22,375]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/lib/spring-tx.jar
[2024-03-19 06:22:22,375]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/lib/net.sf.trove4j.trove4j.jar
[2024-03-19 06:22:22,375]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/lib/patches.jar
[2024-03-19 06:22:22,375]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/lib/patches-impl.jar
[2024-03-19 06:22:22,375]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/lib/spring-scripting-groovy.jar
[2024-03-19 06:22:22,375]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/lib/idea-settings.jar
[2024-03-19 06:22:22,375]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/lib/agent-launcher-obsolete.jar
[2024-03-19 06:22:22,375]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/lib/jackson-core.jar
[2024-03-19 06:22:22,375]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/lib/build-version.jar
[2024-03-19 06:22:22,375]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/lib/log4j-api.jar
[2024-03-19 06:22:22,376]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/lib/jackson-dataformat-xml.jar
[2024-03-19 06:22:22,376]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/lib/xz.jar
[2024-03-19 06:22:22,376]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/lib/log4j-core.jar
[2024-03-19 06:22:22,376]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/lib/spring-beans.jar
[2024-03-19 06:22:22,376]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/lib/utils.jar
[2024-03-19 06:22:22,376]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/lib/jaxen.jar
[2024-03-19 06:22:22,376]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/lib/freemarker.jar
[2024-03-19 06:22:22,376]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/lib/woodstox-core.jar
[2024-03-19 06:22:22,377]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/lib/common-runtime.jar
[2024-03-19 06:22:22,377]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/lib/jackson-module-jaxb-annotations.jar
[2024-03-19 06:22:22,377]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/lib/jackson-dataformat-yaml.jar
[2024-03-19 06:22:22,377]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/lib/messages.jar
[2024-03-19 06:22:22,377]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/lib/httpmime.jar
[2024-03-19 06:22:22,377]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/lib/commons-collections.jar
[2024-03-19 06:22:22,377]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/lib/spring-aspects.jar
[2024-03-19 06:22:22,377]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/lib/joda-time.jar
[2024-03-19 06:22:22,377]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/lib/spring-aop.jar
[2024-03-19 06:22:22,377]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/lib/commons-httpclient.jar
[2024-03-19 06:22:22,377]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/lib/jackson-module-parameter-names.jar
[2024-03-19 06:22:22,377]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/lib/commons-io.jar
[2024-03-19 06:22:22,377]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/lib/xercesImpl.jar
[2024-03-19 06:22:22,378]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/lib/agent-configurator.jar
[2024-03-19 06:22:22,378]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/lib/idea-obsolete-openapi.jar
[2024-03-19 06:22:22,378]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/lib/jackson-datatype-jsr310.jar
[2024-03-19 06:22:22,378]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/lib/spring-context.jar
[2024-03-19 06:22:22,378]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/lib/commons-beanutils.jar
[2024-03-19 06:22:22,378]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/lib/common-tools.jar
[2024-03-19 06:22:22,378]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/lib/common-vcs.jar
[2024-03-19 06:22:22,378]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/lib/coverage-report.jar
[2024-03-19 06:22:22,378]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/lib/spring-core.jar
[2024-03-19 06:22:22,379]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/lib/common-jackson.jar
[2024-03-19 06:22:22,379]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/lib/jdk-searcher.jar
[2024-03-19 06:22:22,379]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/lib/jetps.zip
[2024-03-19 06:22:22,379]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/lib/connections-api-common.jar
[2024-03-19 06:22:22,379]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/lib/jdom.jar
[2024-03-19 06:22:22,379]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/lib/launcher.jar
[2024-03-19 06:22:22,379]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/lib/ehcache-core.jar
[2024-03-19 06:22:22,379]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/lib/xml-rpc-wrapper.jar
[2024-03-19 06:22:22,379]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/lib/stax2-api.jar
[2024-03-19 06:22:22,379]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/lib/common-graph.jar
[2024-03-19 06:22:22,379]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/lib/spring-context-support.jar
[2024-03-19 06:22:22,379]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/lib/httpcore.jar
[2024-03-19 06:22:22,380]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/lib/serviceMessages.jar
[2024-03-19 06:22:22,380]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/lib/agent-launcher-common.jar
[2024-03-19 06:22:22,380]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/lib/spring-expression.jar
[2024-03-19 06:22:22,380]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/lib/commons-logging.jar
[2024-03-19 06:22:22,380]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/lib/xmlrpc.jar
[2024-03-19 06:22:22,380]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/lib/spring-scripting
[2024-03-19 06:22:22,380]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/lib/spring-scripting/spring-scripting-groovy.jar
[2024-03-19 06:22:22,380]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/lib/spring-scripting/spring-scripting-jruby.jar
[2024-03-19 06:22:22,380]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/lib/spring-scripting/spring-scripting-bsh.jar
[2024-03-19 06:22:22,381]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/lib/launcher-api.jar
[2024-03-19 06:22:22,381]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/lib/jackson-databind.jar
[2024-03-19 06:22:22,381]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/lib/buildAgent-updates-applying-obsolete.jar
[2024-03-19 06:22:22,381]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/lib/agent-upgrade.jar
[2024-03-19 06:22:22,381]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/lib/httpclient.jar
[2024-03-19 06:22:22,382]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/lib/coverage-java-agent-common.jar
[2024-03-19 06:22:22,382]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/lib/spring-jdbc.jar
[2024-03-19 06:22:22,382]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/lib/log4j-1.2-api.jar
[2024-03-19 06:22:22,382]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/lib/common-impl.jar
[2024-03-19 06:22:22,383]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/lib/gson.jar
[2024-03-19 06:22:22,383]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/lib/common-step-conditions.jar
[2024-03-19 06:22:22,383]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/lib/runtime-util.jar
[2024-03-19 06:22:22,383]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/lib/xpp3.jar
[2024-03-19 06:22:22,383]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/lib/patches-low.jar
[2024-03-19 06:22:22,383]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/lib/cloud-shared-core.jar
[2024-03-19 06:22:22,384]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/lib/server-logging.jar
[2024-03-19 06:22:22,384]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/lib/duplicator-util.jar
[2024-03-19 06:22:22,384]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/lib/agent-upgrade-common.jar
[2024-03-19 06:22:22,384]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/lib/com.github.adedayo.intellij.sdk.trove4j.jar
[2024-03-19 06:22:22,384]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/lib/snakeyaml.jar
[2024-03-19 06:22:22,384]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/lib/slf4j-api.jar
[2024-03-19 06:22:22,384]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/lib/commons-codec.jar
[2024-03-19 06:22:22,384]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/lib/spring-scripting-jruby.jar
[2024-03-19 06:22:22,384]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/lib/jackson-annotations.jar
[2024-03-19 06:22:22,384]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/lib/logging.jar
[2024-03-19 06:22:22,384]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/lib/xml-apis.jar
[2024-03-19 06:22:22,384]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/lib/agent-openapi.jar
[2024-03-19 06:22:22,384]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/lib/inspections-util.jar
[2024-03-19 06:22:22,384]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/lib/jakarta.xml.bind-api.jar
[2024-03-19 06:22:22,384]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/lib/service-utils.jar
[2024-03-19 06:22:22,384]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/lib/log4j-slf4j-impl.jar
[2024-03-19 06:22:22,385]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/lib/oauth-integration-agent.jar
[2024-03-19 06:22:22,385]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/lib/xstream.jar
[2024-03-19 06:22:22,385]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/lib/common-spring.jar
[2024-03-19 06:22:22,385]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/lib/spring-scripting-bsh.jar
[2024-03-19 06:22:22,385]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/lib/nuget-utils.jar
[2024-03-19 06:22:22,385]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/lib/annotations.jar
[2024-03-19 06:22:22,385]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/lib/app-wrapper.jar
[2024-03-19 06:22:22,385]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/lib/jackson-datatype-jdk8.jar
[2024-03-19 06:22:22,385]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/lib/commons-compress.jar
[2024-03-19 06:22:22,386]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/lib/agentInstaller-UI.jar
[2024-03-19 06:22:22,386]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/launcher
[2024-03-19 06:22:22,386]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/launcher/conf
[2024-03-19 06:22:22,386]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/launcher/conf/wrapper.conf
[2024-03-19 06:22:22,386]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/launcher/lib
[2024-03-19 06:22:22,386]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/launcher/lib/libwrapper-solaris-sparc-64.so
[2024-03-19 06:22:22,386]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/launcher/lib/libwrapper-linux-x86-64.so
[2024-03-19 06:22:22,386]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/launcher/lib/libwrapper-solaris-x86-32.so
[2024-03-19 06:22:22,386]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/launcher/lib/libwrapper-macosx-universal-32.jnilib
[2024-03-19 06:22:22,387]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/launcher/lib/libwrapper-solaris-sparc-32.so
[2024-03-19 06:22:22,387]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/launcher/lib/launcher.jar
[2024-03-19 06:22:22,387]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/launcher/lib/wrapper-windows-x86-64.dll
[2024-03-19 06:22:22,387]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/launcher/lib/libwrapper-macosx-ppc-32.jnilib
[2024-03-19 06:22:22,387]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/launcher/lib/wrapper.jar
[2024-03-19 06:22:22,387]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/launcher/lib/log4j-api-2.17.2.jar
[2024-03-19 06:22:22,387]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/launcher/lib/wrapper-windows-x86-32.dll
[2024-03-19 06:22:22,387]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/launcher/lib/log4j-core-2.17.2.jar
[2024-03-19 06:22:22,387]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/launcher/lib/libwrapper-linux-x86-32.so
[2024-03-19 06:22:22,387]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/launcher/lib/log4j-1.2-api-2.17.2.jar
[2024-03-19 06:22:22,387]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/launcher/lib/libwrapper-linux-ppc-64.so
[2024-03-19 06:22:22,388]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/launcher/lib/buildAgent-updates-applying.jar
[2024-03-19 06:22:22,388]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/launcher/lib/agent-launcher.jar
[2024-03-19 06:22:22,388]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/launcher/lib/annotations.jar
[2024-03-19 06:22:22,388]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/launcher/JavaServiceWrapperLicense.txt
[2024-03-19 06:22:22,388]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/launcher/bin
[2024-03-19 06:22:22,388]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/launcher/bin/TeamCityAgentService-solaris-sparc-32
[2024-03-19 06:22:22,388]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/launcher/bin/TeamCityAgentService-linux-x86-64
[2024-03-19 06:22:22,388]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/launcher/bin/TeamCityAgentService-windows-x86-32.exe
[2024-03-19 06:22:22,388]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/launcher/bin/TeamCityAgentService-linux-x86-32
[2024-03-19 06:22:22,388]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/launcher/bin/TeamCityAgentService-macosx-ppc-32
[2024-03-19 06:22:22,388]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/launcher/bin/TeamCityAgentService-windows-x86-64.exe
[2024-03-19 06:22:22,388]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/launcher/bin/TeamCityAgentService-solaris-sparc-64
[2024-03-19 06:22:22,388]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/launcher/bin/TeamCityAgentService-linux-ppc-64
[2024-03-19 06:22:22,388]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/launcher/bin/TeamCityAgentService-solaris-x86-32
[2024-03-19 06:22:22,388]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/launcher/bin/TeamCityAgentService-macosx-universal-32
[2024-03-19 06:22:22,389]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/bin
[2024-03-19 06:22:22,389]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/bin/service.install.bat
[2024-03-19 06:22:22,389]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/bin/service.start.bat
[2024-03-19 06:22:22,389]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/bin/installJava.bat
[2024-03-19 06:22:22,389]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/bin/service.uninstall.bat
[2024-03-19 06:22:22,389]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/bin/install.sh
[2024-03-19 06:22:22,389]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/bin/agent.bat
[2024-03-19 06:22:22,389]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/bin/service.stop.bat
[2024-03-19 06:22:22,389]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/bin/changeAgentProps.bat
[2024-03-19 06:22:22,389]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/bin/jetbrains.teamcity.BuildAgent.plist
[2024-03-19 06:22:22,389]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/bin/mac.launchd.sh
[2024-03-19 06:22:22,389]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/bin/agent.sh
[2024-03-19 06:22:22,389]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/bin/jetbrains.teamcity.BuildAgentUpgrade.plist.dist
[2024-03-19 06:22:22,389]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/bin/findJava.sh
[2024-03-19 06:22:22,389]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/bin/findJava.bat
[2024-03-19 06:22:22,389]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/bin/generateNewServiceName.bat
[2024-03-19 06:22:22,389]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/bin/install.bat
[2024-03-19 06:22:22,389]  DEBUG - buildServer.agent.LauncherUtil - Deleting /opt/buildagent/backup/bin/uninstall.bat
[2024-03-19 06:22:22,390]   INFO - ver.agent.upgrade.AgentUpgrade - Finish upgrade at 2024-03-19 06:22:22.389
[2024-03-19 06:22:22,390]   INFO - r.agent.upgrade.UpgradeRunBase - Run command line (arguments separated with '|'): /bin/sh|./agent.sh|start| (at /opt/buildagent/bin)
[2024-03-19 06:22:22,392]   INFO - .agent.run.ProcessOutputLogger - Starting TeamCity build agent...
[2024-03-19 06:22:23,028]   INFO - .agent.run.ProcessOutputLogger - Java not found. Cannot start TeamCity agent. Please ensure JDK or JRE is installed and JAVA_HOME environment variable points to it.
[2024-03-19 06:22:23,028]   WARN - .agent.run.ProcessOutputLogger -
[2024-03-19 06:22:23,029]   INFO - r.agent.upgrade.UpgradeRunBase - Process exited with code: 1
[2024-03-19 06:22:23,029]  ERROR - r.agent.upgrade.UpgradeRunBase - Failed to start upgrade process. Return code was 1 is not equal to zero.
[2024-03-19 06:22:23,029]  ERROR - r.agent.upgrade.UpgradeRunBase - Failed to start agent after upgrade: java.io.IOException: Failed to start upgrade process. Return code was 1 is not equal to zero.
java.io.IOException: Failed to start upgrade process. Return code was 1 is not equal to zero.
        at jetbrains.buildServer.agent.upgrade.UpgradeRunBase.runCmdLine(UpgradeRunBase.java:104) ~[launcher.jar:117072]
        at jetbrains.buildServer.agent.upgrade.RunShUpgrade.startAgain(RunShUpgrade.java:36) ~[launcher.jar:117072]
        at jetbrains.buildServer.agent.upgrade.UpgradeRunBase.run(UpgradeRunBase.java:51) ~[launcher.jar:117072]
        at jetbrains.buildServer.agent.upgrade.UpgradeMode$5.run(UpgradeMode.java:133) ~[launcher.jar:117072]
        at jetbrains.buildServer.agent.upgrade.Upgrade2$1.lockHeld(Upgrade2.java:57) ~[launcher.jar:117072]
        at jetbrains.buildServer.agent.upgrade.Upgrade2$1.lockHeld(Upgrade2.java:55) ~[launcher.jar:117072]
        at jetbrains.buildServer.agent.lock.impl.misc.MockLock.assumeLocked(MockLock.java:22) ~[launcher.jar:117072]
        at jetbrains.buildServer.agent.lock.impl.misc.MockLock.tryLock(MockLock.java:14) ~[launcher.jar:117072]
        at jetbrains.buildServer.agent.upgrade.Upgrade2.main3(Upgrade2.java:54) ~[launcher.jar:117072]
        at jetbrains.buildServer.agent.upgrade.Upgrade2.main2(Upgrade2.java:27) ~[launcher.jar:117072]
        at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?]
        at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) ~[?:?]
        at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?]
        at java.lang.reflect.Method.invoke(Method.java:568) ~[?:?]
        at jetbrains.buildServer.agent.ClazzLoader.call(ClazzLoader.java:59) ~[launcher.jar:117072]
        at jetbrains.buildServer.agent.ClazzLoader.callMain2(ClazzLoader.java:19) ~[launcher.jar:117072]
        at jetbrains.buildServer.agent.upgrade.Upgrade.main(Upgrade.java:16) ~[launcher.jar:117072]
0
Hi,

I assume that this is not a full upgrade.log, as it ends in the middle of the line. Could you attach the complete file or send the remaining part of the logs? 

Best regards,
Anton
0

No, it's full upgrade.log, I rechecked. 

The last messages:

[2024-03-19 06:22:23,029]  ERROR - r.agent.upgrade.UpgradeRunBase - Failed to start upgrade process. Return code was 1 is not equal to zero.
[2024-03-19 06:22:23,029]  ERROR - r.agent.upgrade.UpgradeRunBase - Failed to start agent after upgrade: java.io.IOException: Failed to start upgrade process. Return code was 1 is not equal to zero.
java.io.IOException: Failed to start upgrade process. Return code was 1 is not equal to zero.
        at jetbrains.buildServer.agent.upgrade.UpgradeRunBase.runCmdLine(UpgradeRunBase.java:104) ~[launcher.jar:117072]
        at jetbrains.buildServer.agent.upgrade.RunShUpgrade.startAgain(RunShUpgrade.java:36) ~[launcher.jar:117072]
        at jetbrains.buildServer.agent.upgrade.UpgradeRunBase.run(UpgradeRunBase.java:51) ~[launcher.jar:117072]
        at jetbrains.buildServer.agent.upgrade.UpgradeMode$5.run(UpgradeMode.java:133) ~[launcher.jar:117072]
        at jetbrains.buildServer.agent.upgrade.Upgrade2$1.lockHeld(Upgrade2.java:57) ~[launcher.jar:117072]
        at jetbrains.buildServer.agent.upgrade.Upgrade2$1.lockHeld(Upgrade2.java:55) ~[launcher.jar:117072]
        at jetbrains.buildServer.agent.lock.impl.misc.MockLock.assumeLocked(MockLock.java:22) ~[launcher.jar:117072]
        at jetbrains.buildServer.agent.lock.impl.misc.MockLock.tryLock(MockLock.java:14) ~[launcher.jar:117072]
        at jetbrains.buildServer.agent.upgrade.Upgrade2.main3(Upgrade2.java:54) ~[launcher.jar:117072]
        at jetbrains.buildServer.agent.upgrade.Upgrade2.main2(Upgrade2.java:27) ~[launcher.jar:117072]
        at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?]
        at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) ~[?:?]
        at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?]
        at java.lang.reflect.Method.invoke(Method.java:568) ~[?:?]
        at jetbrains.buildServer.agent.ClazzLoader.call(ClazzLoader.java:59) ~[launcher.jar:117072]
        at jetbrains.buildServer.agent.ClazzLoader.callMain2(ClazzLoader.java:19) ~[launcher.jar:117072]
        at jetbrains.buildServer.agent.upgrade.Upgrade.main(Upgrade.java:16) ~[launcher.jar:117072]
0
Sorry for the confusion with the logs. It was not displayed correctly on my side. Now I see it.

2 points are unclear to me:
1. Why does the TeamCity agent Docker image try to upgrade itself? I tested it in my environment, and no upgrade was required after pulling the latest image from the Docker repository.
2. Why did it lose Java, as it was clearly found during the initial startup (as per the command output)?

As I can't reproduce it (the upgrade is not required on my side), I assume there may be something wrong with the local Docker image. Please try `docker images | grep jetbrains/teamcity-agent` to see what versions you have and then clean them up. Or, you can remove all of the images named jetbrains/teamcity-agent by running `docker rmi -f $(docker images -q jetbrains/teamcity-agent)`. After cleaning up the local images, try running the container again and see if the upgrade process will be started.

Best regards,
Anton
0

I run command ‘docker images | grep jetbrains/teamcity-agent’:

jetbrains/teamcity-agent               latest    5f274586839d   2 weeks ago    2.14GB

Looks like it's latest version. 

I removed this images by using your command and restart container. Upgrade also failed. Logs are the same.

0
OK, this is a correct image, I have the same one on my side as well. Can you confirm the following?
1. After the upgrade failed, run docker inspect for this container and share the output.
2. After the upgrade failed, check that the /opt/java/openjdk/bin/java file exists in the container.
3. As a possible cause of the upgrade, please check if you have any custom plugins added to the TeamCity server (if there are custom plugins which are not available in the agent by default, the agent will start upgrading to install the plugin).
4. Please check that you are using all the recent versions of the plugins. If there is an old version of the plugin used in the TeamCity server, the agent will start upgrading to install this version of the plugin.

Best regards,
Anton
0

I checked the plugins - we have only JetBrains plugins (latest versions), no custom.

File /opt/java/openjdk/bin/java exists in running container.

docker inspect output:

[
    {
        "Id": "76511c94937cb4b331a8096f89fe2866a44137f76ee600d9b50932937171c7d7",
        "Created": "2024-03-29T13:35:52.289344873Z",
        "Path": "/run-services.sh",
        "Args": [],
        "State": {
            "Status": "running",
            "Running": true,
            "Paused": false,
            "Restarting": false,
            "OOMKilled": false,
            "Dead": false,
            "Pid": 81085,
            "ExitCode": 0,
            "Error": "",
            "StartedAt": "2024-03-29T13:35:53.619574361Z",
            "FinishedAt": "0001-01-01T00:00:00Z"
        },
        "Image": "sha256:5f274586839df389dc45aff79654e4fae7296762f7d3dc24a45c2c62a86692ed",
        "ResolvConfPath": "/var/lib/docker/containers/76511c94937cb4b331a8096f89fe2866a44137f76ee600d9b50932937171c7d7/resolv.conf",
        "HostnamePath": "/var/lib/docker/containers/76511c94937cb4b331a8096f89fe2866a44137f76ee600d9b50932937171c7d7/hostname",
        "HostsPath": "/var/lib/docker/containers/76511c94937cb4b331a8096f89fe2866a44137f76ee600d9b50932937171c7d7/hosts",
        "LogPath": "/var/lib/docker/containers/76511c94937cb4b331a8096f89fe2866a44137f76ee600d9b50932937171c7d7/76511c94937cb4b331a8096f89fe2866a44137f76ee600d9b50932937171c7d7-json.log",
        "Name": "/agent",
        "RestartCount": 0,
        "Driver": "overlay2",
        "Platform": "linux",
        "MountLabel": "",
        "ProcessLabel": "",
        "AppArmorProfile": "docker-default",
        "ExecIDs": null,
        "HostConfig": {
            "Binds": [
                "/home/buildAgent:/data/teamcity_agent/conf"
            ],
            "ContainerIDFile": "",
            "LogConfig": {
                "Type": "json-file",
                "Config": {}
            },
            "NetworkMode": "default",
            "PortBindings": {},
            "RestartPolicy": {
                "Name": "no",
                "MaximumRetryCount": 0
            },
            "AutoRemove": false,
            "VolumeDriver": "",
            "VolumesFrom": null,
            "ConsoleSize": [
                65,
                309
            ],
            "CapAdd": null,
            "CapDrop": null,
            "CgroupnsMode": "private",
            "Dns": [],
            "DnsOptions": [],
            "DnsSearch": [],
            "ExtraHosts": null,
            "GroupAdd": null,
            "IpcMode": "private",
            "Cgroup": "",
            "Links": null,
            "OomScoreAdj": 0,
            "PidMode": "",
            "Privileged": false,
            "PublishAllPorts": false,
            "ReadonlyRootfs": false,
            "SecurityOpt": null,
            "UTSMode": "",
            "UsernsMode": "",
            "ShmSize": 67108864,
            "Runtime": "runc",
            "Isolation": "",
            "CpuShares": 0,
            "Memory": 0,
            "NanoCpus": 0,
            "CgroupParent": "",
            "BlkioWeight": 0,
            "BlkioWeightDevice": [],
            "BlkioDeviceReadBps": [],
            "BlkioDeviceWriteBps": [],
            "BlkioDeviceReadIOps": [],
            "BlkioDeviceWriteIOps": [],
            "CpuPeriod": 0,
            "CpuQuota": 0,
            "CpuRealtimePeriod": 0,
            "CpuRealtimeRuntime": 0,
            "CpusetCpus": "",
            "CpusetMems": "",
            "Devices": [],
            "DeviceCgroupRules": null,
            "DeviceRequests": null,
            "MemoryReservation": 0,
            "MemorySwap": 0,
            "MemorySwappiness": null,
            "OomKillDisable": null,
            "PidsLimit": null,
            "Ulimits": null,
            "CpuCount": 0,
            "CpuPercent": 0,
            "IOMaximumIOps": 0,
            "IOMaximumBandwidth": 0,
            "MaskedPaths": [
                "/proc/asound",
                "/proc/acpi",
                "/proc/kcore",
                "/proc/keys",
                "/proc/latency_stats",
                "/proc/timer_list",
                "/proc/timer_stats",
                "/proc/sched_debug",
                "/proc/scsi",
                "/sys/firmware",
                "/sys/devices/virtual/powercap"
            ],
            "ReadonlyPaths": [
                "/proc/bus",
                "/proc/fs",
                "/proc/irq",
                "/proc/sys",
                "/proc/sysrq-trigger"
            ]
        },
        "GraphDriver": {
            "Data": {
                "LowerDir": "/var/lib/docker/overlay2/2b25df350b26e97ada0ee296b908b452712dbd2ab868abda2429410f28565c4a-init/diff:/var/lib/docker/overlay2/dc4973d388eb047bfecee9ab840e36f6cee1ca2b6a94fb52cc37d91ac4da6775/diff:/var/lib/docker/overlay2/df2c2cb6d27500f5035fc335c89dfc0de291ba630fee5a0cfbf9cfa3d0feab26/diff:/var/lib/docker/overlay2/d14b243af2ce13eda066f928c3f85fe67d5f638c807fd9ba3bd0b024b3ffae34/diff:/var/lib/docker/overlay2/b2fc55028322e6bc712f8cec8ecd9f684111ece3b9f4a308f00dc6fb3c130418/diff:/var/lib/docker/overlay2/f17ab5ade0f01ee716ce384e051c56cad9c90c0ef6949940671a60fbb3073f9a/diff:/var/lib/docker/overlay2/7655e2f3aabf3a2f43d0b646ab820627a6d2a062cf36856de431a18c05c20942/diff:/var/lib/docker/overlay2/d927615a34bc162066b04e8c128d57b9454a49541213e5d25bb36a18d274bf39/diff:/var/lib/docker/overlay2/0e28a5191d28fc83d4136fd46f7f5832a864ea125cc1b1c7f471f70a44123e7c/diff:/var/lib/docker/overlay2/51bad4b5ff97b98f5c8ed919eb7f1dc64bc986fcd2542d011e33c3fc787ad62a/diff:/var/lib/docker/overlay2/807259a2c18b2807c316e094f504050dfccf4073d1582aded37a648bfe9eca70/diff:/var/lib/docker/overlay2/b406c984e1dc8f768479aeb5047489af6bb8ca2068172d8fb5fd415fc9442e4c/diff",
                "MergedDir": "/var/lib/docker/overlay2/2b25df350b26e97ada0ee296b908b452712dbd2ab868abda2429410f28565c4a/merged",
                "UpperDir": "/var/lib/docker/overlay2/2b25df350b26e97ada0ee296b908b452712dbd2ab868abda2429410f28565c4a/diff",
                "WorkDir": "/var/lib/docker/overlay2/2b25df350b26e97ada0ee296b908b452712dbd2ab868abda2429410f28565c4a/work"
            },
            "Name": "overlay2"
        },
        "Mounts": [
            {
                "Type": "volume",
                "Name": "1d9feb1e28462691662df430b66a2ec49fa76570d9cc6e0d3c6f09b5716efd38",
                "Source": "/var/lib/docker/volumes/1d9feb1e28462691662df430b66a2ec49fa76570d9cc6e0d3c6f09b5716efd38/_data",
                "Destination": "/opt/buildagent/plugins",
                "Driver": "local",
                "Mode": "",
                "RW": true,
                "Propagation": ""
            },
            {
                "Type": "bind",
                "Source": "/home/buildAgent",
                "Destination": "/data/teamcity_agent/conf",
                "Mode": "",
                "RW": true,
                "Propagation": "rprivate"
            },
            {
                "Type": "volume",
                "Name": "2f11827d3a5ea3c14b14b160897de772584e3b58810b12d1462525bb3fd29973",
                "Source": "/var/lib/docker/volumes/2f11827d3a5ea3c14b14b160897de772584e3b58810b12d1462525bb3fd29973/_data",
                "Destination": "/opt/buildagent/system",
                "Driver": "local",
                "Mode": "",
                "RW": true,
                "Propagation": ""
            },
            {
                "Type": "volume",
                "Name": "73ca6d5889ccaab363145f24521374505b3c077bc922db281bad4da56ea6f197",
                "Source": "/var/lib/docker/volumes/73ca6d5889ccaab363145f24521374505b3c077bc922db281bad4da56ea6f197/_data",
                "Destination": "/opt/buildagent/temp",
                "Driver": "local",
                "Mode": "",
                "RW": true,
                "Propagation": ""
            },
            {
                "Type": "volume",
                "Name": "f4fbb89dfae3d6226731fc97edc12d563445bb9ab18cdba05105f8a9a37db8b9",
                "Source": "/var/lib/docker/volumes/f4fbb89dfae3d6226731fc97edc12d563445bb9ab18cdba05105f8a9a37db8b9/_data",
                "Destination": "/opt/buildagent/tools",
                "Driver": "local",
                "Mode": "",
                "RW": true,
                "Propagation": ""
            },
            {
                "Type": "volume",
                "Name": "6e8a329afb420bd35eceab0c74a87918a5ad1528f071fb653b332c624319f479",
                "Source": "/var/lib/docker/volumes/6e8a329afb420bd35eceab0c74a87918a5ad1528f071fb653b332c624319f479/_data",
                "Destination": "/opt/buildagent/work",
                "Driver": "local",
                "Mode": "",
                "RW": true,
                "Propagation": ""
            },
            {
                "Type": "volume",
                "Name": "c3a60bb7080a528bbcb8f2c2122ca4a9aa4c88c8d5c395fd92f6df75e4cfa3ad",
                "Source": "/var/lib/docker/volumes/c3a60bb7080a528bbcb8f2c2122ca4a9aa4c88c8d5c395fd92f6df75e4cfa3ad/_data",
                "Destination": "/var/lib/docker",
                "Driver": "local",
                "Mode": "",
                "RW": true,
                "Propagation": ""
            },
            {
                "Type": "volume",
                "Name": "c0184b5e7300eba462bc61f410ff675f071a51e632da5ab65f786c904e51afb0",
                "Source": "/var/lib/docker/volumes/c0184b5e7300eba462bc61f410ff675f071a51e632da5ab65f786c904e51afb0/_data",
                "Destination": "/opt/buildagent/logs",
                "Driver": "local",
                "Mode": "",
                "RW": true,
                "Propagation": ""
            }
        ],
        "Config": {
            "Hostname": "76511c94937c",
            "Domainname": "",
            "User": "buildagent",
            "AttachStdin": false,
            "AttachStdout": false,
            "AttachStderr": false,
            "Tty": false,
            "OpenStdin": false,
            "StdinOnce": false,
            "Env": [
                "SERVER_URL=[deleted]",
                "PATH=/opt/java/openjdk/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin",
                "LANG=C.UTF-8",
                "LANGUAGE=en_US:en",
                "LC_ALL=en_US.UTF-8",
                "DEBIAN_FRONTEND=noninteractive",
                "TZ=Europe/London",
                "JAVA_HOME=/opt/java/openjdk",
                "JDK_HOME=/opt/java/openjdk",
                "CONFIG_FILE=/data/teamcity_agent/conf/buildAgent.properties",
                "DOTNET_CLI_TELEMETRY_OPTOUT=true",
                "DOTNET_SKIP_FIRST_TIME_EXPERIENCE=true",
                "ASPNETCORE_URLS=http://+:80",
                "DOTNET_RUNNING_IN_CONTAINER=true",
                "DOTNET_USE_POLLING_FILE_WATCHER=true",
                "NUGET_XMLDOC_MODE=skip",
                "GIT_SSH_VARIANT=ssh",
                "DOTNET_SDK_VERSION="
            ],
            "Cmd": [
                "/run-services.sh"
            ],
            "Image": "jetbrains/teamcity-agent",
            "Volumes": {
                "/data/teamcity_agent/conf": {},
                "/opt/buildagent/logs": {},
                "/opt/buildagent/plugins": {},
                "/opt/buildagent/system": {},
                "/opt/buildagent/temp": {},
                "/opt/buildagent/tools": {},
                "/opt/buildagent/work": {},
                "/var/lib/docker": {}
            },
            "WorkingDir": "",
            "Entrypoint": null,
            "OnBuild": null,
            "Labels": {
                "org.opencontainers.image.ref.name": "ubuntu",
                "org.opencontainers.image.version": "20.04"
            }
        },
        "NetworkSettings": {
            "Bridge": "",
            "SandboxID": "cc5459cfa6f7b09f64cc4ce47b4ed95ed7a2ae714f0fd117d8617f245a9e899d",
            "HairpinMode": false,
            "LinkLocalIPv6Address": "",
            "LinkLocalIPv6PrefixLen": 0,
            "Ports": {},
            "SandboxKey": "/var/run/docker/netns/cc5459cfa6f7",
            "SecondaryIPAddresses": null,
            "SecondaryIPv6Addresses": null,
            "EndpointID": "b78e37c6699a863a59ad93648ce64718029aa497994be20fed18ec63273f5754",
            "Gateway": "172.17.0.1",
            "GlobalIPv6Address": "",
            "GlobalIPv6PrefixLen": 0,
            "IPAddress": "172.17.0.2",
            "IPPrefixLen": 16,
            "IPv6Gateway": "",
            "MacAddress": "02:42:ac:11:00:02",
            "Networks": {
                "bridge": {
                    "IPAMConfig": null,
                    "Links": null,
                    "Aliases": null,
                    "NetworkID": "ba721f310fcc16c164b92fdbac3accdc33ce3ce17d12f13190c94f3cac592484",
                    "EndpointID": "b78e37c6699a863a59ad93648ce64718029aa497994be20fed18ec63273f5754",
                    "Gateway": "172.17.0.1",
                    "IPAddress": "172.17.0.2",
                    "IPPrefixLen": 16,
                    "IPv6Gateway": "",
                    "GlobalIPv6Address": "",
                    "GlobalIPv6PrefixLen": 0,
                    "MacAddress": "02:42:ac:11:00:02",
                    "DriverOpts": null
                }
            }
        }
    }
]
0
Please also check Administration > Tools for anything custom there and share the list of installed tools. Thank you!

Best regards,
Anton
0
Hi,

I was in contact with the Docker images maintainer, and we ran multiple tests but still couldn't reproduce the issue on our side. Since the new version of TeamCity is out, I would like to ask you to upgrade the TeamCity server to the latest version before proceeding. Regarding the tools, it seems that an upgrade is forced on the agent due to non-bundled tools.

As indicated by the `upgrade.log`, the upgrade fails because it cannot find the Java version. We have JDK 17 (`Corretto-17.0.7.7.1`) pre-installed within our Docker images, and the upgrade should not affect its presence. As noted, there is no need to set the `TEAMCITY_JRE` environment variable unless a custom image is created.
At the same time, looking at the attached log, we could see the `JAVA_HOME` variable was not found:
[2024-03-19 06:22:23,028] INFO - .agent.run.ProcessOutputLogger - Java not found. Cannot start TeamCity agent. Please ensure JDK or JRE is installed and JAVA_HOME environment variable points to it.

To conduct a thorough investigation and fully understand the issue, may I kindly request that you share the following details?

1. For investigation purposes, please use a specific tag instead of the `latest` manifest:
`jetbrains/teamcity-agent:2024.03-linux` - Linux AMD64;
`jetbrains/teamcity-agent:2024.03-linux-arm64` - Linux ARM64;
I've added 2024.03 Linux-based agent images as an example. Please note more images (versions & OS) can be found in our Dockerhub (https://hub.docker.com/r/jetbrains/teamcity-agent/tags).

2. Configuration directory & property files. In theory, environment variables, including `JAVA_HOME`, can be overwritten by agent configuration. To exclude this cause, please (1) ensure `/home/buildagent` (volume directory on the host) is empty before the container starts, (2) the property file inside the container does not have any JDK-related custom `env.`-prefix property:
# Inside TeamCity Agent Container
cat /opt/buildagent/conf/buildAgent.properties | grep "env."

3. Environment variables - Docker. Please ensure the `JAVA_HOME` environment variable is set correctly upon the container's start-up and after the upgrade.
# Inside TeamCity Agent Container
echo $JAVA_HOME

4. Agent start-up after the upgrade. The logs show that the agent cannot start. It seems that the problem is with finding the Java installation, as indicated in the `upgrade.log`. Please try running `agent.sh start` manually within the container and, if possible, share the output with us - this would help us understand the issue better.
# Inside TeamCity Agent Container
$ cd /opt/buildagent && ./bin/agent.sh start

Best regards,
Anton
0

Please sign in to leave a comment.