[Openstack] Install Ceilometer on Ubuntu 12.04

2014-01-21 Thread Mahardhika Gilang
Hi, i have tried this step for installing ceilometer : http://docs.openstack.org/developer/ceilometer/install/manual.html have any of you got it work? or there's another documentation for installing ceilometer? thanks -- Regards, Mahardhika Gilang __

[Openstack] openstack VM hang up after changed screen solution

2014-01-21 Thread Peter Cheung
Hi All openstack VM hang up after changed screen solution, i tried to change the screen resolution from 1280×1024 to 800×600, the screen just size down, but the VM is hang. It is completely hang because i can’t even ping/ssh to that VM. Do you know the reason? http://peter.kingofcoders.com/?p

Re: [Openstack] Install Ceilometer on Ubuntu 12.04

2014-01-21 Thread Igor Karpov
On 21 Jan 2014, at 10:17, Mahardhika Gilang wrote: Hi, i have tried this step for installing ceilometer : http://docs.openstack.org/developer/ceilometer/install/manual.html have any of you got it work? or there's another documentation for installing ceilometer? There are packages released for

Re: [Openstack] [Nova] What is the correct way to provide Windows instance password for user?

2014-01-21 Thread jeffty
Me 2:) Another question, how does customer decrypt the string with his private key? It requires that he has an environment with OpenSSL installed? On 1/21/2014 3:44 PM, Georgios Dimitrakakis wrote: > Indeed this is very interesting! > I would also like to see it if possible! > > Best, > > G. >

Re: [Openstack] How to get the MAC Address in Openstack

2014-01-21 Thread Gary Kotton
Hi, If you are using neutron then you can create pass the MAC address as part of the create port call. Please see https://wiki.openstack.org/wiki/Neutron/APIv2-specification#Port Thanks Gary From: varun bhatnagar mailto:varun292...@gmail.com>> Date: Tuesday, January 21, 2014 8:35 AM To: "opensta

Re: [Openstack] Install Ceilometer on Ubuntu 12.04

2014-01-21 Thread Mahardhika Gilang
Hi, i will give it try, will update this email if i got any result. thanks! On 1/21/2014 4:09 PM, Igor Karpov wrote: On 21 Jan 2014, at 10:17, Mahardhika Gilang wrote: Hi, i have tried this step for installing ceilometer : http://docs.openstack.org/developer/ceilometer/install/manual.html have

Re: [Openstack] Private images are not displayed in Horizon

2014-01-21 Thread Hancock, Tom (HP Cloud Services)
We fell over something like this previously. Upon investigation it turned out to be due to not setting a 'context_is_admin' rule in /etc/glance/policy.json. Check change id Ide2cf604b48f24bd759ce2d65091ff546cd9d22e for why this is now necessary in Havana. I hope this helps, Tom --- Tomas Hancock

Re: [Openstack] How to get the MAC Address in Openstack

2014-01-21 Thread Salvatore Orlando
Hi Varun, When Neutron is enabled, the last 3 octects of the MAC address are randomly generated. This is for avoiding clashes when instances are created concurrently and for preventing potentially malicious users from guessing other users' MAC addresses. Any change to this logic will need code ch

Re: [Openstack] Private images are not displayed in Horizon

2014-01-21 Thread Joe Topjian
Hi Tom, Thanks for the note. The contents of my policy.json file were already the same as what the commit suggests: https://review.openstack.org/#/c/28048/3/etc/policy.json It looks like the default policy.json file that comes with the Ubuntu Havana Glance package does not need modified. Upgradi

Re: [Openstack] [openstack-dev] FW: Installing Havana release along with Ceph storage

2014-01-21 Thread Marco Fornaro
Hi Latitha, Honestly I do not know ANYTHING about... I would add that as Object storage for Openstack Framework there is SWIFT, I honestly do not know is this is compatible with Ceph or not, meaning I do not know if you can use Swift to integrate Ceph for instance Surely there is not a step b

Re: [Openstack] Private images are not displayed in Horizon

2014-01-21 Thread Hancock, Tom (HP Cloud Services)
Apart from remembering to restart the daemons after the policy file update nothing else comes to mind about the situation we encountered. T --- Tomas Hancock, HP Converged Cloud, Hewlett Packard, Galway. Ireland +353-91-754765 Postal Address : Hewlett Packard Galway Limited, European Software

Re: [Openstack] Private images are not displayed in Horizon

2014-01-21 Thread Narayanan, Krishnaprasad
Hallo Tom, Thanks for your suggestions. In our Havana setup, even we have the same policy.json that Joe has described in his email below. Unfortunately, it doesn't help to resolve the problem. I too echo with Scott's opinion. We are unable to open our cloud to our users until this is resolved.

Re: [Openstack] [Nova] What is the correct way to provide Windows instance password for user?

2014-01-21 Thread Juerg Haefliger
On Tue, Jan 21, 2014 at 10:23 AM, jeffty wrote: > > Me 2:) > > Another question, how does customer decrypt the string with his private key? > > It requires that he has an environment with OpenSSL installed? Yes, you need OpenSSL inside the Windows instance to encrypt the password and also in the

Re: [Openstack] [openstack]No option to specify subnet to launch an instance

2014-01-21 Thread sylecn
Hi Ageeleshwar, "neutron port-create" supports choosing subnet via the --fixed-ip option, although it might not be obvious. --fixed-ip ip_address=IP_ADDR desired IP for this port: subnet_id=,ip_address=, (This option can be

Re: [Openstack] [Nova] What is the correct way to provide Windows

2014-01-21 Thread Blair Bethwaite
I can confirm https://github.com/cloudbase/cloudbase-init works with Server 2012 (haven't tried anything else yet) on a Havana cloud. Randomly generates a password on first boot, uses the public key to encrypt it, PUTS it back to the metadata service, can be queried and decrypted by the "nova get-p

[Openstack] [Nova] libvirtError: Failed to terminate process X with SIGKILL: Device or resource busy

2014-01-21 Thread sylecn
Hi all, Under some conditions, I see this error in nova show . | fault| {u'message': u'Failed to terminate process 956 with SIGKILL: Device or resource busy', u'code': 500, u'created': u'2014-01-21T10:10:32Z'} | After that delete/reboot/destroy/rebuild that instan

Re: [Openstack] Installing Havana release along with Ceph storage

2014-01-21 Thread Andriy Yurchuk
Hi! You can you this guide to install a Ceph cluster: http://ceph.com/docs/master/start/ Then there is a guide to connect it to OpenStack: http://ceph.com/docs/master/rbd/rbd-openstack/ --- Regards, Andriy Yurchuk On Jan 21, 2014, at 9:19 AM, Lalitha Maruthachalam wrote: > I had Grizzly re

Re: [Openstack] [Nova] What is the correct way to provide Windows instance password for user?

2014-01-21 Thread jeffty
Thanks a lot Juerg. On 1/21/2014 7:08 PM, Juerg Haefliger wrote: > > On Tue, Jan 21, 2014 at 10:23 AM, jeffty > wrote: >> >> Me 2:) >> >> Another question, how does customer decrypt the string with his > private key? >> >> It requires that he has an environment wit

Re: [Openstack] [Nova] What is the correct way to provide Windows

2014-01-21 Thread jeffty
Hi Blairo, Yes that's the way what Juerg wrote to encrypt and decrypt in openstack. But normally the customer may have no permission to login openstack, right? They have only the portal for configure and order. On 1/21/2014 7:37 PM, Blair Bethwaite wrote: > I can confirm https://github.com/cloud

[Openstack] Keystone External Authentication clarification

2014-01-21 Thread Joe Topjian
Hello, One of the new features advertised in the Havana release of Keystone was external authentication via REMOTE_USER. I'm beginning to assume that I should take that at face value: Keystone has external auth, but that's it. OpenStack as a whole cannot currently utilize it. Is this an incorrect

Re: [Openstack] multiple network nodes

2014-01-21 Thread Mike Spreitzer
> From: Jeff Cai > To: "openstack@lists.openstack.org" , > Date: 01/21/2014 02:42 AM > Subject: [Openstack] multiple network nodes > > Hi, > > Does openstack support multiple network nodes deployment? Which > services should be running on each of the network nodes? Yes, OpenStack definitely s

[Openstack] Export tenant configuration

2014-01-21 Thread Salvo Rapisarda
Hello, in OpenStack there is a function that export/import the structure of a project (Network,Volume,VMs,ecc...) ? For example, I want to export a complex network configuration from a Grizzly installation to Havana installation. I know that with a bash script it's possible to re-create my

Re: [Openstack] Keystone External Authentication clarification

2014-01-21 Thread Remo Mattei
Keystone has the opportunity to work as an SSO there was a project on that and does have a plugin for LDAP not sure if this is something you are looking for. Also not sure if the SSO is on hold or still under dev. Remo Inviato da iPhone () > Il giorno Jan 21, 2014, alle ore 5:58, Joe Topjian

Re: [Openstack] multiple network nodes

2014-01-21 Thread Remo Mattei
Yes now with ml2 you can have multiple plugins which was not possible before. Remo Inviato da iPhone () > Il giorno Jan 21, 2014, alle ore 6:15, Mike Spreitzer > ha scritto: > > > From: Jeff Cai > > To: "openstack@lists.openstack.org" , > > Date: 01/21/2014 02:42 AM > > Subject: [Opens

[Openstack] Hypervisor crashes after instance is spawned

2014-01-21 Thread Greg Chavez
[ https://bugs.launchpad.net/nova/+bug/1270943 ] I am running Grizzly on Ubuntu 13.04 (so the network service == Quantum). Nova runs Quantum with LibvirtHybridOVSBridgeDriver and LinuxOVSInterfaceDriver, while Quantum is configured to use GRE tunnels. Further, Quantum runs on a dedicated node and

Re: [Openstack] How to get the MAC Address in Openstack

2014-01-21 Thread Jonathan Proulx
Hi Varun, As Garry said you can pre create ports with specific mac addresses and then assign them to instances if you are using neutron for networking. The Horizon dash board does not provide an interface to either of these actions but the command line tools do. the 'port-create' sub command of

Re: [Openstack] [Swift] Object use cases

2014-01-21 Thread Mark Brown
Thanks! Any others in the private cloud space also, other than file sharing? If you can list your experiences with customers on what kind of data they store and why use it as compared to, say a NAS as the questions in the original email specifies, that would be great:-) Thanks in advance. O

Re: [Openstack] How to get the MAC Address in Openstack

2014-01-21 Thread Remo Mattei
One more thing to add if you are planning to use your own MAC address prefix you can modify the neutron.conf and look for that. Now by default it is using the OpenStack bits.  Ciao  --  Remo Mattei Da: Jonathan Proulx j...@jonproulx.com Rispondi: Jonathan Proulx j...@jonproulx.com Data: January

Re: [Openstack] How to get the MAC Address in Openstack

2014-01-21 Thread Heiko Krämer
Hi Varun, nova list-interfaces You will get all interfaces with ip and MAC Cheers Heiko On 21.01.2014 07:35, varun bhatnagar wrote: > Hi, > > How can I get the MAC Address of the network interface which I have created > on Openstack? > > Also, is there any way where in I can define the MAC Add

Re: [Openstack] [User-committee] Formulate application developer oriented questions for the user survey

2014-01-21 Thread Everett Toews
On Jan 21, 2014, at 10:29 AM, Dave Neary wrote: > On 01/21/2014 02:25 AM, Everett Toews wrote: >> There are a number of issues that stand out to me but before getting >> into them some quick definitions to be clear what I'm talking about. >> >> OpenStack developer = developer working on OpenStack

[Openstack] kvm virtio ethernet ring on guest side over high throughput (packet per second)

2014-01-21 Thread Alejandro Comisario
Hi guys, we had in the past when using physical servers, several throughput issues regarding the throughput of our APIS, in our case we measure this with packets per seconds, since we dont have that much bandwidth (Mb/s) since our apis respond lots of packets very small ones (maximum response of 3.

Re: [Openstack] Install Ceilometer on Ubuntu 12.04

2014-01-21 Thread Sławek Kapłoński
Witam, I was install it with this tutorial on Grizzly installation and it work fine for me. I didn't install swift component and replace mongodb with mysql but anything else was like in this tutorial and it works fine. Later I get puppet module: https://github.com/stackforge/puppet-ceilometer and

Re: [Openstack] Installing Havana release along with Ceph storage

2014-01-21 Thread Nick Chase
On 1/21/2014 7:19 AM, Andriy Yurchuk wrote: Hi! You can you this guide to install a Ceph cluster: http://ceph.com/docs/master/start/ Then there is a guide to connect it to OpenStack: http://ceph.com/docs/master/rbd/rbd-openstack/ You can also install it using Fuel (part of Mirantis OpenStack

[Openstack] ldap + sql in keystone (multi-domain)

2014-01-21 Thread James
All, I'm trying to get multiple domains configured in keystone so that users can authenticate against LDAP, but service accounts can use locally-created, SQL-based accounts. I've set up keystone.conf as follows: -->8-- [DEFAULT] admin_token = ADMIN debug = True verbose = True log_file = keysto

Re: [Openstack] [Swift] Object use cases

2014-01-21 Thread Pete Zaitcev
On Mon, 20 Jan 2014 15:56:40 -0800 (PST) Mark Brown wrote: > 2. Is anyone deploying Swift within the data center for a private cloud > object solution, and if yes, what are the use cases for that as compared to > say, using a NAS solution within the data center? I am looking for concrete > inf

Re: [Openstack] ldap + sql in keystone (multi-domain)

2014-01-21 Thread Miller, Mark M (EB SW Cloud - R&D - Corvallis)
This feature didn't quite make it into the Havana code base in that it still had a few bugs. I will be interested to see if it was fixed for Icehouse. Mark > -Original Message- > From: James [mailto:jamesze...@gmail.com] > Sent: Tuesday, January 21, 2014 2:37 PM > To: openstack@lists.ope

[Openstack] Can nova scheduler based on network bandwidth ?

2014-01-21 Thread Li, Chen
Hi list, I noticed there is a way to create instances flavor with network bandwidth control : Commit : 7e04e0f6acf6b8e2ceeca273133570786c8e0f91Add support for instance vif traffic control. Then I came up with this question: I have a 10Gb NIC for each compute node. If I

[Openstack] How to enable Modular L2 Multi-Segemnt Network

2014-01-21 Thread Li, Chen
Hello list, I noticed there is a blueprint named "Modular L2 Multi-Segment Network API" : https://blueprints.launchpad.net/neutron/+spec/ml2-multi-segment-api. I want to enable it in my set-up, to help me understand: 1. What is a multi-segment network 2. How it works. 3. Why

[Openstack] [metering][ceilometer] Ceilometer cannot poll and pubulish floatingip samples

2014-01-21 Thread 刘胜
Hi all: A few weeks ago, I reported a bug about ceilometer polling floatingip: https://bugs.launchpad.net/nova/+bug/1262124 I thought it is a bug of ceilometer at first, but actually, It is better to modify in nova. Followed by the bug description, if a tenant with admin role,we can use thi

Re: [Openstack] multiple network nodes

2014-01-21 Thread Jeff Cai
Mike and Remo, Thanks for your reply. I am wondering how to balance the network load in openstack deployment. Which services can I distribute among several network nodes? Is there a document to describe something like this? Jeff From: Remo Mattei [mailto:r...@italy1.com] Sent: Tuesday, January

[Openstack] limit exceed error

2014-01-21 Thread Ravi Tanwar
HI, I got configured everything fine and vm machine also running but i got this error.i stop vm machine and start again without any issue .but 2nd time it shows task is scheduling off and take long time..i do hard reboot..when i do *nova list * i got . *HTTPConnectionPool(host='1

Re: [Openstack] multiple network nodes

2014-01-21 Thread Remo Mattei
I have not seen it personally but that does not mean it’s not there :)  Ciao  --  Remo Mattei Da: Jeff Cai jeff_...@symantec.com Rispondi: Jeff Cai jeff_...@symantec.com Data: January 21, 2014 at 19:52:36 A: Remo Mattei r...@italy1.com, Mike Spreitzer mspre...@us.ibm.com Oggetto:  RE: [Openstack

Re: [Openstack] limit exceed error

2014-01-21 Thread Aaron Bell
From that error, it sounds like nova-api isn't reachable. Can you check to make sure nova-api is listening on port 8774 on host 192.168.1.12? -Aaron > On Jan 21, 2014, at 9:46 PM, Ravi Tanwar wrote: > > HI, > I got configured everything fine and vm machine also running but i > got

[Openstack] [horizon][urls rule]what and how

2014-01-21 Thread 王飞
Hi,all:My study at horizon src has been going on for some time.Now I could create a penal on it and present something. Anyway,a question has been boring me at the same time. What exactly the url rule is and how it works . src eg:urlpatterns = patterns('horizon.dashboards.

Re: [Openstack] [horizon][urls rule]what and how

2014-01-21 Thread sylecn
Horizon is just a django app. For urlconf, check django's document: https://docs.djangoproject.com/en/1.6/topics/http/urls/ Thanks, Yuanle On Wed, Jan 22, 2014 at 12:23 PM, 王飞 wrote: > Hi,all: > My study at horizon src has been going on for some time.Now I > could create a penal on it

Re: [Openstack] [horizon][urls rule]what and how

2014-01-21 Thread jj
It is something in django you could dig it into django source more you could debug a simplehttpserver (basehttpserver) , then you may get what you want . good Luck -- 止语 -- Original -- From: "王飞"; Date: 2014年1月22日(星期三) 中午12:23 To: "Open

Re: [Openstack] multiple network nodes

2014-01-21 Thread Anne Gentle
On Tue, Jan 21, 2014 at 9:58 PM, Remo Mattei wrote: > I have not seen it personally but that does not mean it’s not there :) > > There's a new example architecture being added to the OpenStack Operations Guide in review at https://review.openstack.org/#/c/67763/4/doc/openstack-ops/section_arch_ex

Re: [Openstack] How to get the MAC Address in Openstack

2014-01-21 Thread varun bhatnagar
Thank you everyone for the suggestions. I was trying Jon's suggestion. When I executed the command *neutron port-create testnetwork --fixed-ip ip_address=15.0.0.5 --mac-address fa:16:3e:00:00:01* I got a message saying: *Could not find Service or Region in Service Catalog* Is there anything wro

Re: [Openstack] How to get the MAC Address in Openstack

2014-01-21 Thread Ruzicka, Marek
Do you have OS_REGION_NAME variable set? Regards, Marek From: varun bhatnagar [mailto:varun292...@gmail.com] Sent: 22. januára 2014 06:50 To: openstack@lists.openstack.org Subject: Re: [Openstack] How to get the MAC Address in Openstack Thank you everyone for the suggestions. I was trying Jon's