Re: [Openstack] nova.virt.xenapi.driver [-] Got exception: ['XENAPI_MISSING_PLUGIN', 'xenhost']

2012-11-18 Thread Mohammed Naser
Hi there, 2012-11-15 19:57:05 DEBUG nova.virt.xenapi.driver [-] Got exception: ['XENAPI_MISSING_PLUGIN', 'xenhost'] from (pid=25140) _unwrap_plugin_exceptions /opt/stack/nova/nova/virt/xenapi/driver.py:754 Please login to your main XenServer dom0 and make sure you have the plugins installed from

Re: [Openstack] nova-volumes problem after host reboot

2012-11-18 Thread Ronivon Costa
Hello, I am still working on this issue. I can not apply the disaster recovery as describe here: http://docs.openstack.org/trunk/openstack-compute/admin/content/nova-disaster-recovery-process.html Thanks to livemoon, I can get the instances back running following his tips. By the way, I have put

[Openstack] Centos : yum install openstack-quantum-openvswitch

2012-11-18 Thread George Lekatsas
Hello, following the installation instruction and yum install openstack-quantum-openvswitch in centos 6.3 i have: Loaded plugins: fastestmirror, security Loading mirror speeds from cached hostfile * base: ftp. * epel: ftp.cc. * extras: ftp. * updates: ftp. Setting up Install Process Resolvi

[Openstack] VM instance creation fails due to nova-network encountering an RPC timeout.

2012-11-18 Thread Ahmed Al-Mehdi
Hello, I have a two node OpenStack setup, one control-node and one compute node, with the services up and running on each node. After a minute of issuing the "nova-boot" command on the control-node, I see the following error message in nova-network.log file ERROR nova.openstack.common.rpc.c

Re: [Openstack] nova-volumes problem after host reboot

2012-11-18 Thread Yong Jiang
Hi Ronivon Costa, Besides updating volumes table, you should update block_device_mapping table at the same time which manages the mapping between volumes and instances. Using the below commands update these two tables and you can reboot your instances and reattach your volume as normally with your

[Openstack] [Swift] Can i create a public container with write access?

2012-11-18 Thread Sujay M
Hi all, I was wondering if i can create a public container such that i need not authenticate to upload files on to it. I know how to create one with read for all post -r '.r:*' permissions but how to create write for all containers? Thanks in advance. -- Best Regards, Sujay M Final year B.Tec

[Openstack] [Swift] Public Container's file listing

2012-11-18 Thread Sujay M
Hi all, Currently it is showing Unauthorized if i give only public container name for listing of files in the public Container 192.168.56.20:8080/v1/AUTH_test/publicContainer/ 192.168.56.20:8080/v1/AUTH_test/publicContainer Unauthorized Is there any way i can list the files publicly? Thanks i

[Openstack] Quantum + OpenVSwitch + GRE Tunneling with RHEL 6.3

2012-11-18 Thread Jian Hua Geng
Can anyone help to confirm that the GRE Tunneling can be used with Quantum on my RHEL6.3? My Redhat kernel version is 2.6.32-279.el6.x86_64, and the OpenVSwitch version is 1.4.2. From the wiki page( http://wiki.openstack.org/ConfigureOpenvswitch) , I find some modules are still not available in

Re: [Openstack] [Swift] Public Container's file listing

2012-11-18 Thread Hua ZZ Zhang
"You can implement access control for objects either for users or accounts using XContainer- Read: accountname and X-Container-Write: accountname:username, which allows any user from the accountname account to read but only allows the username user from the accountname account to write." "You can

Re: [Openstack] Quantum + OpenVSwitch + GRE Tunneling with RHEL 6.3

2012-11-18 Thread Shake Chen
seem the newest kernel not support GRE module. On Mon, Nov 19, 2012 at 12:59 PM, Jian Hua Geng wrote: > Can anyone help to confirm that the GRE Tunneling can be used with Quantum > on my RHEL6.3? > > My Redhat kernel version is 2.6.32-279.el6.x86_64, and the OpenVSwitch > version is 1.4.2. Fro

Re: [Openstack] Quantum + OpenVSwitch + GRE Tunneling with RHEL 6.3

2012-11-18 Thread Shake Chen
seem the newest kernel not support GRE module. On Mon, Nov 19, 2012 at 12:59 PM, Jian Hua Geng wrote: > Can anyone help to confirm that the GRE Tunneling can be used with Quantum > on my RHEL6.3? > > My Redhat kernel version is 2.6.32-279.el6.x86_64, and the OpenVSwitch > version is 1.4.2. Fro

Re: [Openstack] Quantum + OpenVSwitch + GRE Tunneling with RHEL 6.3

2012-11-18 Thread Jian Hua Geng
Hi ShaKe, Do you mean the latest OpenVSwitch for RHEL 6.3 does not support GRE module or something else? -- Best regard, David Geng --

Re: [Openstack] [Swift] Public Container's file listing

2012-11-18 Thread Sujay M
Thanks Edward Zhang, >>"You can implement access control for objects either for users or accounts using XContainer- Read: accountname and X-Container-Write: accountname:username, which allows any user from the accountname account to read but only allows the username user from the accountname acco

Re: [Openstack] [Swift] Public Container's file listing

2012-11-18 Thread Hua ZZ Zhang
if you are using keystone as Swift authentication, you can create user in an account(project) through horizion or using command keystone user-create ... For object public write, it seems that the referer is not allowed in ACL: swift post -w '.r:*' publicContainer Best Regards,

Re: [Openstack] [Swift] Public Container's file listing

2012-11-18 Thread Hua ZZ Zhang
Don't forget to add directive .rlistings to allow listing the whole public container: swift post -r '.r:*,.rlistings' publicContainer Best Regards,

Re: [Openstack] Quantum + OpenVSwitch + GRE Tunneling with RHEL 6.3

2012-11-18 Thread Shake Chen
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1068365 That's right, the Open vSwitch FAQ says: Q: What features are not available in the Open vSwitch kernel datapath that ships as part of the upstream Linux kernel? A: The kernel module in upstream Linux 3.3 and later does not include

Re: [Openstack] [Swift] Public Container's file listing

2012-11-18 Thread Sujay M
*>>if you are using keystone as Swift authentication, you can create user in an account(project) through horizion or using command keystone user-create ...* * * *I am using tempauth where i'm specifying all the account details as below* * [filter:tempauth] use = egg:swift#tempauth user_admin_admin

Re: [Openstack] [Swift] Public Container's file listing

2012-11-18 Thread Sujay M
Thanks Edward Zhang, I tried .rlistings, it gives a XML of list of objects. Like this, Is there any way where i can list the containers in a account? On 19 November 2012 12:07, Hua ZZ Zhang wrote: > Don't forget to add directive .rlistings to allow listing the whole public > container: > *swif