Configuring AutoScale without using NetScaler

2014-10-12 Thread huangchunmei
Hi Daan,

 

I want to know the feature Configuring AutoScale without using NetScaler
is already released in CloudStack 4.4.0 or is only available on the master
branch?

 

 

Thanks,

Chunmei Huang



[Issue]: Wrong status of System VM after destroy them

2014-07-18 Thread huangchunmei
Hi Alex,

 

For cloudStack 4.3, I found the status of SSVM and CPVM are always in
Destroyed status after destroyed them. This would lead to an issue that zone
could be deleted if there are VMs with Destroyed status.

Would you please help to check why we change the status to Expunging, then
update it to Destroyed? Or I missed something, maybe other thread to
handle system VMs with Destroyed status.

Following are the related codes:

/server/src/com/cloud/consoleproxy/ConsoleProxyManagerImpl.java,


public boolean destroyProxy(long vmId) {

ConsoleProxyVO proxy = _consoleProxyDao.findById(vmId);

try {

//expunge the vm

_itMgr.expunge(proxy.getUuid()); // change status to Expunging

proxy.setPublicIpAddress(null);

proxy.setPublicMacAddress(null);

proxy.setPublicNetmask(null);

proxy.setPrivateMacAddress(null);

proxy.setPrivateIpAddress(null);

_consoleProxyDao.update(proxy.getId(), proxy);

_consoleProxyDao.remove(vmId); // change status to Destroyed

/engine/schema/src/com/cloud/vm/dao/ConsoleProxyDaoImpl.java


public boolean remove(Long id) {

TransactionLegacy txn = TransactionLegacy.currentTxn();

txn.start();

ConsoleProxyVO proxy = createForUpdate();

proxy.setPublicIpAddress(null);

proxy.setPrivateIpAddress(null);



UpdateBuilder ub = getUpdateBuilder(proxy);

ub.set(proxy, state, State.Destroyed);

ub.set(proxy, privateIpAddress, null);

update(id, ub, proxy);



boolean result = super.remove(id);

txn.commit();

return result;

}

 

 

Thanks very much

Chunmei Huang



Hyper-V hypervisor: Donot have permission to access downloading URL of vomue

2014-07-07 Thread huangchunmei
Hi All,

 

I installed CS 4.3 and setup a Hype-V vm. When downloading volume of the VM,
I met below issues, any idea to fixed it? Thanks in advance.

Download one volume of Hyper-V vm, then click the link in pop-up, get
following issue,




 

Check the folder /var/www/html/userdata of SSVM with command ls -l, got
below results,



 

 

Thanks,

Mary



Hyper-V hypervisor: Donot have permission to access downloading URL of vomue

2014-07-07 Thread huangchunmei
Hi All,

 

I installed CS 4.3 and setup a Hype-V vm. When downloading volume of the VM,
I met below issues, any idea to fixed it? Thanks in advance.

Download one volume of Hyper-V vm, then click the link in pop-up, get
following issue,




 

Check the folder /var/www/html/userdata of SSVM with command ls -l, got
below results,



 

 

Thanks,

Mary



撤回: Hyper-V hypervisor: Donot have permission to access downloading URL of vomue

2014-07-07 Thread huangchunmei
huangchunmei 将撤回邮件“Hyper-V hypervisor: Donot have permission to access
downloading URL of vomue”。


[Issue]: Cannot start virtual router

2014-06-26 Thread huangchunmei
Hi,

 

I am a CloudStack user, below issues blocked me, would you please help to
check?

For hyper-v, systemvms are running successfully. But when creating a hyper-v
VM, could not start the virtual router as following, the Link Local IP
Address is always 0.0.0.0

 



 

 

Thanks,

Chunmei