[Openstack] File Injection through Horizon

2012-10-02 Thread Srikanth Kumar Lingala
Hi all, I have some doubts regarding File Injection. Can File Injection can be done through Horizon, while creating an Instance? While creating an Instance from Horizon, a field called 'User Data' [text area] is there. Is that field is related to File Injection? Can anyone tell me, the values we ne

Re: [Openstack] Enabling logging in keystone.

2012-10-02 Thread Dolph Mathews
See the definition for "Token" on the concepts page: http://docs.openstack.org/trunk/openstack-compute/install/apt/content/keystone-concepts.html Yep! Authentication and authorization both appear to be behaving as expected; the response you see reflects your configured OpenStack service catalog,

Re: [Openstack] Enabling logging in keystone.

2012-10-02 Thread Ahmed Al-Mehdi
Hi Dolph, When I use user the keystone command, I am able to get "proper" tokens: root@ubuntu1:~# keystone --os-username=adminUser --os-password=secretword --os-tenant-name=openstackDemo --os-auth-url=http:/ /10.0.2.15:35357/v2.0 token-get +---+--

Re: [Openstack] Cells Status

2012-10-02 Thread Endre Karlson
What is a cell contra Aggregate or Zone? Den 3. okt. 2012 07:46 skrev "Chris Behrens" følgende: > Yup… looking forward to seeing those contributions! I'm working on > getting the branch updated right now. > > - Chris > > > On Oct 2, 2012, at 10:13 PM, Sam Morrison wrote: > > > OK great, will b

Re: [Openstack] Cells Status

2012-10-02 Thread Chris Behrens
Yup… looking forward to seeing those contributions! I'm working on getting the branch updated right now. - Chris On Oct 2, 2012, at 10:13 PM, Sam Morrison wrote: > OK great, will be good to get this into master. I have some stuff relating to > key pairs, security groups that I'd like to co

Re: [Openstack] [openstack] Summit coverage

2012-10-02 Thread Matt Joyce
i know this was attempted for the last summit though not widely advertised. i am willing to help set up again if we have equipment on hand. -matt On Tue, Oct 2, 2012 at 9:44 PM, wrote: > Hi Folks, >For the folks who cannot attend the design summit, are the > sessions streamed online? >

Re: [Openstack] Cells Status

2012-10-02 Thread Sam Morrison
OK great, will be good to get this into master. I have some stuff relating to key pairs, security groups that I'd like to contribute. Also we are looking at the ability for you to specify the cell when booting an instance. Cheers, Sam On 02/10/2012, at 1:06 PM, Chris Behrens wrote: > Yup, i

[Openstack] [openstack] Summit coverage

2012-10-02 Thread Surya_Prabhakar
Hi Folks, For the folks who cannot attend the design summit, are the sessions streamed online? Surya. ___ Mailing list: https://launchpad.net/~openstack Post to : openstack@lists.launchpad.net Unsubscribe : https://launchpad.net/~openstack Mo

Re: [Openstack] Enabling logging in keystone.

2012-10-02 Thread Anne Gentle
Comments below. With an "I object." :) On Tue, Oct 2, 2012 at 6:50 PM, Dolph Mathews wrote: > I find it odd that the document describes two approaches for configuring > keystone -- one being a relatively undocumented, scripted approach not > managed or distributed by OpenStack. Surely these two a

Re: [Openstack] Enabling logging in keystone.

2012-10-02 Thread Tom Fifield
Hi, Can you please lodge a documentation bug at : https://bugs.launchpad.net/openstack-manuals/+filebug Thanks! Regards, Tom On 03/10/12 10:10, Ahmed Al-Mehdi wrote: Hello, I have gone through the document numerous times trying to configure keystone - mistyping keys, wrong key value, missin

Re: [Openstack] Enabling logging in keystone.

2012-10-02 Thread Ahmed Al-Mehdi
Hello, I have gone through the document numerous times trying to configure keystone - mistyping keys, wrong key value, missing steps, etc (error prone). I was looking forward to using the script, as it would save a lot of typing/pain for a newcomer. However, if there are no plans to document th

Re: [Openstack] Enabling logging in keystone.

2012-10-02 Thread heckj
no problem here - if we're going to document a scripted solution, we should have it be something that we're actively maintaining. Don't know who's running the nimbus repo and those tools, which are cool - but we're not keeping them up with changes in the systems... -joe On Oct 2, 2012, at 4:

Re: [Openstack] Enabling logging in keystone.

2012-10-02 Thread Dolph Mathews
I find it odd that the document describes two approaches for configuring keystone -- one being a relatively undocumented, scripted approach not managed or distributed by OpenStack. Surely these two approaches will continue to evolve seperately and we'll experience more issues such as this one. Any

Re: [Openstack] Enabling logging in keystone.

2012-10-02 Thread Ahmed Al-Mehdi
Hi Dolph, I am now getting the same output as the "curl" command, basically "Invalid Tenant". At this point root@ubuntu1:~# keystone --os-username=adminUser --os-password=secretword --os-tenant-name=service --os-auth-url=http://10.0. 2.15:35357/v2.0 token-get No handlers co

Re: [Openstack] Enabling logging in keystone.

2012-10-02 Thread Dolph Mathews
Feel free to file a bug -- I'm reviewing the document right now. http://docs.openstack.org/trunk/openstack-compute/install/apt/content/verifying-identity-install.html As for the invalid tenant message, I'm guessing you don't have any roles granted to "adminUser" on that tenant. Checkout the user

Re: [Openstack] Enabling logging in keystone.

2012-10-02 Thread Ahmed Al-Mehdi
Hi Anne, Thank you for pointing that out. I noticed the "adminTenant" string in the curl command, and it did bother me a bit, but I did not pursue it due to lack of experience with curl / Rest API / OpenStack but looking, I should have known better. Can this be addressed in the "Deploy and Inst

Re: [Openstack] Project specific flavors

2012-10-02 Thread Ken Pepple
On Oct 2, 2012, at 9:53 AM, Day, Phil wrote: > I can see how the flavour_access API extension sets up entries in the table, > but I don’t see anything which seems to take that into account when listing > flavors ? I believe you are looking for the extra filter that is setup at nova/db/sqlalche

Re: [Openstack] Enabling logging in keystone.

2012-10-02 Thread Dolph Mathews
No worries, that's what a second set of eyes is for! By specifying a token and endpoint, you're bypassing the authentication process that your curl command is performing. You can test authentication with the keystone client using: $ keystone --os-username=adminUser --os-password=secretword --os-

Re: [Openstack] Enabling logging in keystone.

2012-10-02 Thread Anne Gentle
Hi Ahmed - I believe you don't have a tenant named "adminTenant" - possibly try this? curl -d '{"auth": {"tenantName": "service", "passwordCredentials": {"username": "adminUser", "password": "secretword"}}}' -H "Content-type: application/json" http://10.0.2.15:35357/v2.0/tokens | python -mjson.to

Re: [Openstack] Enabling logging in keystone.

2012-10-02 Thread Ahmed Al-Mehdi
Hi Dolph, Very sorry about that. With the correct token, calling keystone from the cli is working.However, the curl command is failing. Will this cause an issue down the line as I start to install glance and nova? #> keystone --token 012345SECRET99TOKEN012345 --endpoint http://10.0.2.15

Re: [Openstack] [OSSA 2012-016] Token authorization for a user in a disabled tenant is allowed (CVE-2012-4457)

2012-10-02 Thread Thierry Carrez
andi abes wrote: > is the plan going forward to announce these on friday afternoons? We generally release embargoed issues only on Tue-Thu. In this precise case, the fixes have been long committed and released, but they were never brought to the Vulnerability Management Team attention, which resu

Re: [Openstack] Enabling logging in keystone.

2012-10-02 Thread Dolph Mathews
You're missing a "5" on the admin_token you've specified on the command line. 012345SECRET99TOKEN01234 (your CLI arg) 012345SECRET99TOKEN012345 (keystone.conf) -Dolph On Tue, Oct 2, 2012 at 1:08 PM, Ahmed Al-Mehdi wrote: > Hi Joe, > > I have put the conf file (renamed to ahmed_keystone.conf)

Re: [Openstack] Enabling logging in keystone.

2012-10-02 Thread Ahmed Al-Mehdi
Hi Joe, I have put the conf file (renamed to ahmed_keystone.conf) into gist. git://gist.github.com/3821846.git Please let me know if you have any issues accessing the file. Thank you very much for helping me out. I have a feeling the issue might be in the python script to populate keystone.

Re: [Openstack] Folsom on Oracle VirtualBox using qemu

2012-10-02 Thread Chandra Kamalakantha
I truly apologize for the cut-paste error..  I am using the following.    # COMPUTE libvirt_type=qemu compute_driver=libvirt.LibvirtDriver instance_name_template=instance-%08x api_paste_config=/etc/nova/api-paste.ini allow_resize_to_same_host=True From: Dean Tr

Re: [Openstack] Enabling logging in keystone.

2012-10-02 Thread heckj
Ahmed - can you put your keystone.conf into a paste or gist and share it with me? I'd be happy to help you debug this. I'm assuming you're running keystone on the system with the IP address 10.0.2.15, correct? -joe On Oct 2, 2012, at 10:45 AM, Ahmed Al-Mehdi wrote: > Hi Joe, > > I noticed I

Re: [Openstack] Folsom on Oracle VirtualBox using qemu

2012-10-02 Thread Dean Troyer
On Tue, Oct 2, 2012 at 12:08 PM, Chandra Kamalakantha wrote: > Has anyone running into this error listed below while starting nova-compute > (Folsom release) on Oracle VirtualBox using qemu as virtualization type? > CRITICAL nova [-] Class LibvirtDriver could not be found: 'module' object > has no

Re: [Openstack] Enabling logging in keystone.

2012-10-02 Thread Ahmed Al-Mehdi
Hi Joe, I noticed I did not put the port number in the URL, now I am getting a more meaningful error: #> keystone --token 012345SECRET99TOKEN01234 --endpoint http://10.0.2.15:35357/v2.0 tenant-list No handlers could be found for logger "keystoneclient.client" Unable to authorize user Regards,

Re: [Openstack] Enabling logging in keystone.

2012-10-02 Thread Ahmed Al-Mehdi
Hi Joe, Unfortunately before I read your response I re-installed my Ubuntu server. I repeated the same steps mentioned in the OpenStack document "Deploy and Install OpenStack - RedHat Ubuntu" and also used the script mentioned in it (https://github.com/nimbis/keystone-init/blob/master/keyston

Re: [Openstack] Discussion / proposal: deleted column marker

2012-10-02 Thread Johannes Erdfelt
On Tue, Oct 02, 2012, Pitucha, Stanislaw Izaak wrote: > Does anyone know why soft-delete is still in place? > Are there any reasons it can't / shouldn't be removed at this time? > If it's possible to remove it, would you miss it? I'm certainly not a fan of the database soft-delete for many of the

[Openstack] Folsom on Oracle VirtualBox using qemu

2012-10-02 Thread Chandra Kamalakantha
Hello,   Has anyone running into this error listed below while starting nova-compute (Folsom release) on Oracle VirtualBox using qemu as virtualization type? CRITICAL nova [-] Class LibvirtDriver could not be found: 'module' object has no attribute LibvirtDriver   # Virt driver connection_type=lib

Re: [Openstack] Discussion / proposal: deleted column marker

2012-10-02 Thread Johannes Erdfelt
On Tue, Oct 02, 2012, Pitucha, Stanislaw Izaak wrote: > I'd like to open a discussion on a topic that's been bugging me for a number > of reasons - soft deletes (by that I mean marking rows with deleted=1 in the > db) and related - actions audit. This is a subject I'm interested in and I'll follo

[Openstack] Project specific flavors

2012-10-02 Thread Day, Phil
Hi Folks, Can someone point me to where Nova uses the instance_type_projects information to decide which flavors are and aren't available to a project please ? I can see how the flavour_access API extension sets up entries in the table, but I don't see anything which seems to take that into acc

[Openstack] Discussion / proposal: deleted column marker

2012-10-02 Thread Pitucha, Stanislaw Izaak
Hi all, I'd like to open a discussion on a topic that's been bugging me for a number of reasons - soft deletes (by that I mean marking rows with deleted=1 in the db) and related - actions audit. Some research and speculations first... To be honest I could not find any reason why the feature is ther

Re: [Openstack] Devstack -- fails to launch instance

2012-10-02 Thread John Garbutt
No problem, sorry you hit so many problems. This is very dependent on how you have configured your guest network and Floating IP addresses. I suspect if you have a machine on the same network and subnet as your VM, it will just work. If you could give the ifconfig details from your DomU, Dom0

Re: [Openstack] Devstack -- fails to launch instance

2012-10-02 Thread Afef MDHAFFAR
Yes! that's solves the problem! Thanks a lot for your help. Now, I could launch an instance from the dashboard. It has an ip address. Unfortunately, I can ping and ssh this instance only from the privileged DomU. How can I let this instance accessible from all machines of my network? Thank you, A

Re: [Openstack] Devstack -- fails to launch instance

2012-10-02 Thread John Garbutt
OK, so XCP-XAPI install is not that well documented yet. There is at least one manual step to make the XenAPI plugins work. What you need to run, on your Dom0 is this: sudo mkdir -p /usr/etc I think it is simply not present because it is Ubuntu and not CentOS 5.x that you get with XenServer and

Re: [Openstack] Using EC2 through OpenStack

2012-10-02 Thread Michaël Van de Borne
Thank you. I know about euca2ools. What I wanted to know is whether, besides being an EC2-at-home facility, OpenStack also acts on a higher level, being able to manage third-party instances (such as Scalextreme for instance). But it seems it isn't its role. thanks, michaël Le 02/10/2012 15

Re: [Openstack] Devstack -- fails to launch instance

2012-10-02 Thread Afef MDHAFFAR
Here is my localrc file: MYSQL_PASSWORD=password SERVICE_TOKEN=password ADMIN_PASSWORD=password SERVICE_PASSWORD= RABBIT_PASSWORD=password # This is the password for your guest (for both stack and root users) GUEST_PASSWORD=password # IMPORTANT: The following must be set to your dom0 root password!

Re: [Openstack] Devstack -- fails to launch instance

2012-10-02 Thread Bilel Msekni
Le 02/10/2012 15:39, Afef MDHAFFAR a écrit : Hi all, I used devstack to install openstack on an ubuntu 12.04 with xcp. I followed this link: https://github.com/openstack-dev/devstack/blob/master/tools/xen/README.md The script installed almost everything. The dashboard is working and shows that

[Openstack] Devstack -- fails to launch instance

2012-10-02 Thread Afef MDHAFFAR
Hi all, I used devstack to install openstack on an ubuntu 12.04 with xcp. I followed this link: https://github.com/openstack-dev/devstack/blob/master/tools/xen/README.md The script installed almost everything. The dashboard is working and shows that all services are running. However, launching "no

Re: [Openstack] Using EC2 through OpenStack

2012-10-02 Thread Jonathan Proulx
On Tue, Oct 02, 2012 at 12:19:45PM +0200, Michaël Van de Borne wrote: :Hi all, : :This might be obvious, but I can't find the answer. Is there a way to :control EC2 instances using OpenStack? OpenStack provides the same facility as EC2 but on your own hardware, so they don't really touch. Glance

Re: [Openstack] Sync of Cinder drivers to Nova-volume for Folsom

2012-10-02 Thread Russell Bryant
On 10/02/2012 12:09 PM, Avishay Traeger wrote: > > Hi all, > I was wondering when the manual sync of Cinder code to Nova-volume will > happen? See comment from Vish here: > https://review.openstack.org/#/c/11239/ A bunch of syncing has been done since then. Check the git git log for nova/volume

[Openstack] Sync of Cinder drivers to Nova-volume for Folsom

2012-10-02 Thread Avishay Traeger
Hi all, I was wondering when the manual sync of Cinder code to Nova-volume will happen? See comment from Vish here: https://review.openstack.org/#/c/11239/ Thanks a lot, Avishay ___ Mailing list: https://launchpad.net/~openstack Post to : opensta

[Openstack] Using EC2 through OpenStack

2012-10-02 Thread Michaël Van de Borne
Hi all, This might be obvious, but I can't find the answer. Is there a way to control EC2 instances using OpenStack? ___ Mailing list: https://launchpad.net/~openstack Post to : openstack@lists.launchpad.net Unsubscribe : https://launchpad.net

Re: [Openstack] CY12-Q3 Community Analysis — OpenStack vs OpenNebula vs Eucalyptus vs CloudStack

2012-10-02 Thread Qingye Jiang (John)
Hi Tom, Tim, and Thierry, I have just updated the original post with data from http://lists.openstack.org/pipermail/*/ . http://forums.openstack.org/ has so little data that it will not impact the results so I simply ignored. Please refresh your browser to get the new version. Thank you so m

Re: [Openstack] CY12-Q3 Community Analysis — OpenStack vs OpenNebula vs Eucalyptus vs CloudStack

2012-10-02 Thread Thierry Carrez
Qingye Jiang (John) wrote: > Thanks a lot for the corrections. I will make an update asap. You can find all the lists.openstack.org MLs at: http://lists.openstack.org/cgi-bin/mailman/listinfo Though I suspect adding Openstack-dev, OpenStack-operators, Openstack-docs and Foundation should cover mo

Re: [Openstack] CY12-Q3 Community Analysis — OpenStack vs OpenNebula vs Eucalyptus vs CloudStack

2012-10-02 Thread Tom Fifield
You might also consider adding the forums: http://forums.openstack.org/ Regards, Tom On 02/10/12 16:46, Tom Fifield wrote: Hi, It looks like you missed the migration to the new OpenStack mailing lists - http://lists.openstack.org/cgi-bin/mailman/listinfo Regards, Tom On 02/10/12 16:37, Q

Re: [Openstack] CY12-Q3 Community Analysis — OpenStack vs OpenNebula vs Eucalyptus vs CloudStack

2012-10-02 Thread Qingye Jiang (John)
Hi Tim and Tom, Thanks a lot for the corrections. I will make an update asap. John 于 2012-10-2 15:03, Tim Bell 写道: Were the developer and operator lists included in your analysis ? - http://lists.openstack.org/pipermail/openstack-dev/ - http://lists.openstack.org/pipermail/openstack-operator

Re: [Openstack] CY12-Q3 Community Analysis — OpenStack vs OpenNebula vs Eucalyptus vs CloudStack

2012-10-02 Thread Tim Bell
Were the developer and operator lists included in your analysis ? - http://lists.openstack.org/pipermail/openstack-dev/ - http://lists.openstack.org/pipermail/openstack-operators/ Full set is at http://wiki.openstack.org/MailingLists Tim > -Original Message- > From: openstack-bounces+