[
https://issues.apache.org/jira/browse/CLOUDSTACK-4849?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13799067#comment-13799067
]
ASF subversion and git services commented on CLOUDSTACK-4849:
-------------------------------------------------------------
Commit 8f5965c7933489f2b39c8eeaa112fbd871d2c357 in branch refs/heads/4.2 from
[~dahn]
[ https://git-wip-us.apache.org/repos/asf?p=cloudstack.git;h=8f5965c ]
[CLOUDSTACK-4849] adding lxc to the spring context
> LXC not working when using nonoss build
> ---------------------------------------
>
> Key: CLOUDSTACK-4849
> URL: https://issues.apache.org/jira/browse/CLOUDSTACK-4849
> Project: CloudStack
> Issue Type: Bug
> Security Level: Public(Anyone can view this level - this is the
> default.)
> Components: Management Server
> Affects Versions: 4.2.0
> Reporter: Francois Gaudreault
> Priority: Critical
> Fix For: 4.2.1
>
>
> When you compile nonoss RPMs, the LXC manager will not work. There is a line
> missing in the nonossComponentContext.xml file.
> The error in the log will be :
> Could not find corresponding resource manager for LXC
> You can fix that by changing the following block:
> <bean id="resourceDiscoverers" class="com.cloud.utils.component.AdapterList">
> <property name="Adapters">
> <list>
> <ref bean="XcpServerDiscoverer"/>
> <ref bean="SecondaryStorageDiscoverer"/>
> <ref bean="KvmServerDiscoverer"/>
> <ref bean="BareMetalDiscoverer"/>
> <ref bean="OvmDiscoverer"/>
> <ref bean="vmwareServerDiscoverer"/>
> </list>
> </property>
> </bean>
> To:
> <bean id="resourceDiscoverers" class="com.cloud.utils.component.AdapterList">
> <property name="Adapters">
> <list>
> <ref bean="XcpServerDiscoverer"/>
> <ref bean="SecondaryStorageDiscoverer"/>
> <ref bean="KvmServerDiscoverer"/>
> <ref bean="LxcServerDiscoverer"/>
> <ref bean="BareMetalDiscoverer"/>
> <ref bean="OvmDiscoverer"/>
> <ref bean="vmwareServerDiscoverer"/>
> </list>
> </property>
> </bean>
--
This message was sent by Atlassian JIRA
(v6.1#6144)