Re: [Openstack] [Rally] Failed run command "rally show images"

2014-03-13 Thread Li, Chen
Issue has been solved. It is caused by the extra "/v1" at the end of glance endpoint. A bug report is at https://bugs.launchpad.net/rally/+bug/1291184. The simplest workaround is edit endpoint in keystone. The best way to solve the issue is to upgrade glanceclient to the newest version. :) Th

Re: [Openstack] Swift downloading only manifest of static large object (SLO)

2014-03-13 Thread Ben McCann
Thanks Samuel. That's super helpful. I didn't realize that SLO could be turned on/off on the server. I thought it was merely a client-side convention. swift stat doesn't return a StorageUrl for me. It just returns: Account: Containers: Objects: Bytes: Meta Cdn-Id:

Re: [Openstack] Request for help - Heat Auto-scaling

2014-03-13 Thread Micheal
Hello Jay, Thanks, here is my template: { "AWSTemplateFormatVersion" : "2014-03-06", "Parameters" : { "InstanceType" : { "Description" : "WebServer EC2 instance type", "Type" : "String", "Default" : "m1.small", "ConstraintDescription" : "must be a valid EC2 insta

Re: [Openstack] The Dashboard not accessible

2014-03-13 Thread Matthias Runge
On Wed, Mar 12, 2014 at 11:27:12AM +0530, Mandar Khanolkar wrote: > Hi Yuanle, > > I am using Fedora 19 OS. > I installed dashboard using below: > yum install memcached python-memcached mod_wsgi openstack-dashboard You might need to upgrade python-six to the version from Fedora 20. Matthias --

Re: [Openstack] Swift downloading only manifest of static large object (SLO)

2014-03-13 Thread Kuo Hugo
Hi Ben, 1. What's the Swift CLI version are you using for now ? 2. The $>swift stat -v suppose to show you the storage_url. -v means verbose. 3. There's another choice via curl ~IRON_MAN$>curl -i https://$FQDN_of_AUTH_SERVER/auth/v1.0 -H "X-auth-user:johndoe" -H "x-auth-key:password_of_john" HTTP

Re: [Openstack] Ceilometer - Formulas From low level metrics to QoS

2014-03-13 Thread Rima Grati
Hi Eoghan and every body; Please i am blocked on one point. I need to know some mapping formulas. For example the QoS availability is calculated through the low level metric uptime and downtime. And the used formulas is: availability = 1- (uptime/downtime+uptime). Please whom know others formulas

[Openstack] instance management error

2014-03-13 Thread cheniour ghassen
Hi, I have configured openstack havana. I am trying to create an instance but an error occurs each time. I looked in the apache2 error.log but nothing is there and so nova. My question is: which log file give me information about instance deployment errors? And is there a step by step guide that ca

Re: [Openstack] Request for help - Heat Auto-scaling

2014-03-13 Thread Eoghan Glynn
What version of Heat are you using? The repeat_actions attribute on the alarms was needed to set explicitly True in Havana (whereas this is now the default). This continuous notification is needed for the Heat autoscaling logic to kick in successfully. So if using Havana, please add this settin

Re: [Openstack] instance management error

2014-03-13 Thread Mahardhika Gilang
Hi, you can get the log from nova-compute in : /var/log/nova-compute.log on your compute node On 3/13/2014 6:14 PM, cheniour ghassen wrote: Hi, I have configured openstack havana. I am trying to create an instance but an error occurs each time. I looked in the apache2 error.log but nothing is t

[Openstack] Publishing Metrics to External Sources Using UDP

2014-03-13 Thread Wahaj Ali
Hi, I am relatively new to Openstack, in case my question is too naive. I have a ceilometer-collector running on a machine where I want to forward all data received by the collector to a particular port using UDP. For testing purposes I use netcat to listen for UDP packets on a particular port. In

Re: [Openstack] Publishing Metrics to External Sources Using UDP

2014-03-13 Thread Julien Danjou
On Thu, Mar 13 2014, Wahaj Ali wrote: > Hi, > I am relatively new to Openstack, in case my question is too naive. I have > a ceilometer-collector running on a machine where I want to forward all > data received by the collector to a particular port using UDP. For testing > purposes I use netcat to

[Openstack] Controller and network services in same node

2014-03-13 Thread Upendra Sahu
Hi, I want to install openstack in two node deployment. 1 node with controller(nova server, neutron server, keystone, message queue, storage, horizon, mysql etc) and network (neutron plugin agents: ovs, l3, dhcp, metadata) services 1 node for nova compute. please let me know if its possible to

Re: [Openstack] Controller and network services in same node

2014-03-13 Thread Autumn Wang
You even can install all in one server with on nic. For red hat or centos, try packstack, for Ubuntu,try devstack. 发自我的 iPhone > 在 Mar 13, 2014,7:11 AM,Upendra Sahu 写道: > > Hi, > > I want to install openstack in two node deployment. > > 1 node with controller(nova server, neutron server, k

Re: [Openstack] The Dashboard not accessible

2014-03-13 Thread Jay Lau
I was using Ubuntu 12.04 and also encounter this issue, seems we already have a bug https://bugs.launchpad.net/horizon/+bug/1125622 tracing this. @Matthias, which version of python-six shall I upgrade to? Did you encounter this issue and finally fixed by upgrade python-six? Thanks, Jay 2014-0

[Openstack] Keystone/Nova V3 Commands

2014-03-13 Thread Vinod Kumar Boppanna
Hi, I was trying to run Keystone/Nova commands with v3 version, but they are failing. I am running these commands with V3 Token and also I had registered the v3 endpoints for both keystone and nova as well. For example, a keystone command with v3 version $> keystone --debug --os-identity-api-ve

Re: [Openstack] Publishing Metrics to External Sources Using UDP

2014-03-13 Thread Wahaj Ali
Thanks for the reply. Looking at following architecture diagram I got a different idea about publishing from the collector http://docs.openstack.org/developer/ceilometer/_images/7-overallarchi.png. I do realize that the pipeline.py file is not even invoked when I run the ceilometer-collector. Howev

[Openstack] cinder error iscsiadm no portal found

2014-03-13 Thread Narayanan, Krishnaprasad
Hallo all, In connection with my earlier email about the Cinder error "iscsiadm: No portal found", can I seek answer for the question below? I have a Block storage mounted on my controller node. This block storage is configured with a LAN and management interface. What is the value of iSCSI_IP

Re: [Openstack] Swift downloading only manifest of static large object (SLO)

2014-03-13 Thread Ben McCann
Oh, you're right, I did miss the -v option. Thanks! The curl command isn't working for me, however. StorageURL: https://dal05.objectstorage.softlayer.net/v1/AUTH_---- $ curl https://dal05.objectstorage.softlayer.net/info Bad URL On Thu, Mar 13, 2014 at 2:59 A

Re: [Openstack] Swift downloading only manifest of static large object (SLO)

2014-03-13 Thread Clay Gerrard
You should check with your deployer to see what version of Swift they are running. the /info (capabilities) feature was added in 1.11 and I think Havana shipped with 1.10 But I think SLO support has been around since 1.5 which should be in Havana, maybe even Grizzly. [1] Either way SLO support h

Re: [Openstack] Swift downloading only manifest of static large object (SLO)

2014-03-13 Thread Ben McCann
Oh geeze, sorry, looking at those docs, it seems maybe I was mistaken and am using Dynamic Large Objects because I uploaded the file using swift -S. Is DLO also optional? Was it added at a certain version? Thanks so much for the help! -Ben On Thu, Mar 13, 2014 at 10:50 AM, Clay Gerrard wrote: >

Re: [Openstack] Swift downloading only manifest of static large object (SLO)

2014-03-13 Thread Clay Gerrard
No, you can't really turn off DLO and it's been around for awhile (let's assume for now they support it). Can you verify the segments are showing up in the "container_segments" container? Can you verify the "X-Object-Manifest" header on the "container/file.tar.gz" object? "swift stat -v containe

Re: [Openstack] Swift downloading only manifest of static large object (SLO)

2014-03-13 Thread Ben McCann
The segments do appear to be there. I don't see any X-Object-Manifest header though or anything like that URL: https://dal05.objectstorage.softlayer.net/v1/AUTH_c4fd4142----/mongodb-backups/mongodb_backup_2014.03.09.09.00.03.tar.gz Auth Token: AUTH_tkced5xxx

Re: [Openstack] Swift downloading only manifest of static large object (SLO)

2014-03-13 Thread Ben McCann
I managed to find out from SoftLayer that they're running 1.7.x On Thu, Mar 13, 2014 at 11:39 AM, Ben McCann wrote: > The segments do appear to be there. > > I don't see any X-Object-Manifest header though or anything like that > >URL: > https://dal05.objectstorage.softlayer.net/v1/

[Openstack] configure openVswitch to send traffic from compute node connected to trunk port

2014-03-13 Thread Ramprasad Velavarthipati
Hello All, I need your inputs in following networking scenario: I bring up 2 VM's in a compute Node assigned 2 different virtual networks each for 1 VM Each VM gets an virtual IP address Is it possible to configure OpenVswitch such that each virtual IP is given a vlan and pass the vlan traffic t

Re: [Openstack] Adding/Removing network interfaces from an instance

2014-03-13 Thread Ferreira, Rafael
Perfect, thanks folks! Does anyone know when some of this is going to make into horizon? From: Gary Kotton mailto:gkot...@vmware.com>> Date: Wednesday, March 12, 2014 at 6:29 AM To: "Li, Chen" mailto:chen...@intel.com>>, Rafael Ferreira mailto:r...@io.com>>, "openstack@lists.openstack.org

Re: [Openstack] Swift downloading only manifest of static large object (SLO)

2014-03-13 Thread Ben McCann
Thanks you guys sooo much for the help!!! I got this figured out. I was using swift's --use-slo flag and apparently SoftLayer doesn't support that. It be really great to add to the docs that SLO support is optional (and turned off by default). I was definitely confused by that. Thanks! -Ben On

Re: [Openstack] The Dashboard not accessible

2014-03-13 Thread sylecn
Hi Jay and Mandar, Does the 2nd comment in this bug fix your problem? https://bugs.launchpad.net/horizon/+bug/1125622 In Havana, I see import base at the top of all imports: from openstack_dashboard.api import base from openstack_dashboard.api import ceilometer from openstack_dashboard.api impo

Re: [Openstack] Controller and network services in same node

2014-03-13 Thread sylecn
Hi, The minimum requirement is 1 node and 1 physical network interface. I was confused by the installation docs when I started, but it turns out 1 NIC (+ several OVS bridges) is enough to get openstack with neutron running. *YY Inc. is hiring openstack and python developers. Interested? Check ht

Re: [Openstack] Cinder error - No portal found

2014-03-13 Thread sxmatch
Hi, When the volume is created, cloud you see the iscsi target with this volume using "tgt-admin --show"? Is it normal? ? 2014-03-13 1:41, Narayanan, Krishnaprasad ??: Hi, I configured the cinder and nova to use the management IP address and now I could see in the GUI the status of the volu

[Openstack] [openstack] [oslo.messaging] [zeromq] nova-rpc-zmq-receiver bottleneck

2014-03-13 Thread yatin kumbhare
Hello Folks, When zeromq is use as rpc-backend, "nova-rpc-zmq-receiver" service needs to be run on every node. zmq-receiver receives messages on tcp://*:9501 with socket type PULL and based on topic-name (which is extracted from received data), it forwards data to respective local services, over