如何从创建名称为 'agentConfiguration' 的 bean 的错误中恢复?

How to recover from error creating bean with name 'agentConfiguration'?

为什么启动远程代理会出现如下错误?

代理没有启动并且一直显示这个错误

INFO   | jvm 21   | 2015/10/20 12:12:27 | [Fatal Error] :-1:-1: Premature end of file.
INFO   | jvm 21   | 2015/10/20 12:12:27 | Exiting due to fatal exception.
INFO   | jvm 21   | 2015/10/20 12:12:27 | java.lang.reflect.InvocationTargetException
INFO   | jvm 21   | 2015/10/20 12:12:27 |       at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
INFO   | jvm 21   | 2015/10/20 12:12:27 |       at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
INFO   | jvm 21   | 2015/10/20 12:12:27 |       at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
INFO   | jvm 21   | 2015/10/20 12:12:27 |       at java.lang.reflect.Method.invoke(Method.java:606)
INFO   | jvm 21   | 2015/10/20 12:12:27 |       at com.atlassian.bamboo.agent.bootstrap.AgentRunner.run(AgentRunner.java:28)
INFO   | jvm 21   | 2015/10/20 12:12:27 |       at java.lang.Thread.run(Thread.java:745)
INFO   | jvm 21   | 2015/10/20 12:12:27 | Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'agentConfiguration' defined in class path resource [applicationContextRemoteAgent.xml]: Invocation of init method failed; nested exception is com.atlassian.bamboo.configuration.ConfigurationException: Could not load configuration file bamboo-agent.cfg.xml from /home/bamboo_path/bamboo-agent-home
INFO   | jvm 21   | 2015/10/20 12:12:27 |       at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1553)
INFO   | jvm 21   | 2015/10/20 12:12:27 |       at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:539)
INFO   | jvm 21   | 2015/10/20 12:12:27 |       at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:475)
INFO   | jvm 21   | 2015/10/20 12:12:27 |       at org.springframework.beans.factory.support.AbstractBeanFactory.getObject(AbstractBeanFactory.java:302)
INFO   | jvm 21   | 2015/10/20 12:12:27 |       at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:228)
...
INFO   | jvm 21   | 2015/10/20 12:12:27 |       at com.atlassian.bamboo.v2.build.agent.remote.RemoteAgent.start(RemoteAgent.java:68)
INFO   | jvm 21   | 2015/10/20 12:12:27 |       ... 6 more
INFO   | jvm 21   | 2015/10/20 12:12:27 | Caused by: com.atlassian.bamboo.configuration.ConfigurationException: Could not load configuration file bamboo-agent.cfg.xml from /home/bamboo_path/bamboo-agent-home
INFO   | jvm 21   | 2015/10/20 12:12:27 |       at com.atlassian.bamboo.v2.build.agent.remote.AgentConfiguration.initConfiguration(AgentConfiguration.java:101)
INFO   | jvm 21   | 2015/10/20 12:12:27 |       at com.atlassian.bamboo.v2.build.agent.remote.AgentConfiguration.init(AgentConfiguration.java:62)
INFO   | jvm 21   | 2015/10/20 12:12:27 |       at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
...
INFO   | jvm 21   | 2015/10/20 12:12:27 |       ... 19 more
INFO   | jvm 21   | 2015/10/20 12:12:27 | Caused by: org.apache.commons.configuration.ConfigurationException: Premature end of file.
INFO   | jvm 21   | 2015/10/20 12:12:27 |       at org.apache.commons.configuration.XMLConfiguration.load(XMLConfiguration.java:673)

我正在使用 Bamboo 服务器实例,5.8.1 代理人 运行 JDK 1.7

从中可以看出:

INFO   | jvm 21   | 2015/10/20 12:12:27 | Caused by: com.atlassian.bamboo.configuration.ConfigurationException: Could not load configuration file bamboo-agent.cfg.xml from /home/bamboo_path/bamboo-agent-home
INFO   | jvm 21   | 2015/10/20 12:12:27 |       at com.atlassian.bamboo.v2.build.agent.remote.AgentConfiguration.initConfiguration(AgentConfiguration.java:101)

无法加载文件 bamboo-agent.cfg.xml。在这种情况下,我发现文件已损坏,导致代理在启动时挂起。

此文件应采用以下格式:

<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<configuration>
<buildWorkingDirectory>/home/bamboo_path/bamboo-agent-home/xml-data/build-dir</buildWorkingDirectory>
<agentUuid>aaaaaaaa-bbbb-aaaa-aaaa-aaaaaaaaaaaa</agentUuid>
<agentDefinition>
<id>14221333</id>
<name>Java Compiler</name>
</agentDefinition>
</configuration>

我发现当我删除损坏的文件并再次启动代理时,它会启动。但是它将注册为新代理。使所有代理专用或自定义功能设置丢失。

您可以在 bamboo 管理面板中找到旧代理的定义

https_//bamboo.myurl.com/admin/agent/viewAgent.action?agentId=1234567

将名称和代理 ID 复制粘贴到 bamboo-agent.cfg.xml 并启动代理。