Re: [Openstack] Horizon - Unauthorized

2017-04-05 Thread Gregory Orange
On 5/4/17 2:33 pm, Konstantin Raskoshnyi wrote: > I'm able to login under admin:admin, but...as soon as I click on any > menu other then identiry - openstack drops me to Unauthorized window... Sounds like https://bugs.launchpad.net/fuel/+bug/1675284 __

Re: [Openstack] Horizon - Unauthorized

2017-04-05 Thread Waqas Riaz
Hi Konstantin, I also had the same issue with Fuel 11 (details here https://openstack.nimeyo.com/109439/openstack-ocata-fuel-request-have-requires-authentication ). I ended up deleting the environment and deploying it again from scratch. Regards, Waqas Waqas Riaz On Wed, Apr 5, 2017 at 11:33

Re: [Openstack] Horizon - Unauthorized

2017-04-05 Thread Konstantin Raskoshnyi
Hi Waqas, I have a different error in the logs: Authorization failed. The request you have made requires authorization from 192.168.0.7 - that's mgmt network, nobody has access to it, but openstack nodes. My openstack environment on 10.20.0.0/24 public network, I'm accessing to it from 1

Re: [Openstack] Launch instance on dashboard says not enough RAM

2017-04-05 Thread Mārtiņš Jakubovičs
Hello Mark, Check also CPU and HDD. On 2017.04.04. 22:55, MARK wrote: So under the dashboard if I try to launch an instance, when I get to the point of picking a flavor, under the memory/RAM column an orange warning triangle is shown, which I suppose indicates that there is not enough RAM

[Openstack] How to get all detail RPC message and detail context in neutron docs?

2017-04-05 Thread Sam
Hi all, I'm working on neutron L3 Agent and some other Agent. I found that there are lots of RPCs including RPC call and notification and lots of 'context' as bellow. But I don't know its detail context, can I get these from some docs? If there are no docs, could I get these using some debug meth

Re: [Openstack] Mirantis Fuel 9.2 - nailgund not available when attempting to save changes to cloud environment

2017-04-05 Thread Evgeniy L
Hi, Could you please clarify, do you receive this error in the UI? What do you mean by "save any changes"? I'm not sure if ranges can cause such behavior, please see logs "/var/log/nailgun/app.log" and "/var/log/nailgun/api.log" for any errors/python tracebacks. Thanks, On Mon, Apr 3, 2017 at 8:

[Openstack] Resources never freed up

2017-04-05 Thread MARK
The Overview page of the dashboard shows total resources such as RAM, Instances, etc. When I delete a failed instance, the resources never get freed. My usage is therefor always going up and I am hitting quotas. Has anybody else seen this behavior? I am using the RDO packstack release running

Re: [Openstack] Fuel Reset Environment Never works

2017-04-05 Thread Evgeniy L
Hi, Could you please elaborate on the issue? What do you see after reset? How does consequent deployment fail? Thanks, On Tue, Apr 4, 2017 at 10:32 PM, Waqas Riaz wrote: > Hi, > > Does anyone know why Fuel's Reset Environment feature never works? > The deployment after a reset always fails. I'

Re: [Openstack] Mirantis Fuel 9.2 - nailgund not available when attempting to save changes to cloud environment

2017-04-05 Thread sil...@gmail.com
When I attempt to save any changes to a cloud environment I've created, such as within 'Setting' changing 'Hypervisor type' in the 'Compute' setting menu from 'QEMU' to 'KVM', the save button circles for about 7-8secs and then a pop-up dialog box comes up that says: OpenStack Settings Configur

Re: [Openstack] Resources never freed up

2017-04-05 Thread Georgios Dimitrakakis
If you are in Ocata the following bug is the problem: https://bugs.launchpad.net/nova/+bug/1670627 You can manually refresh them using the command: nova-manage project quota_usage_refresh --project $PROJECT_ID --user $USER_ID Best regards, G. The Overview page of the dashboard shows tota

Re: [Openstack] [openstack-dev] How to get all detail RPC message and detail context in neutron docs?

2017-04-05 Thread Akihiro Motoki
Hi Sam, 'context' is an object of neutron.context.Context which inherits oslo_context.RequestContext. When you see 'context' as a method signature like router_added_to_agent(self, context, payload), 'context' is Context object. oslo_messaging serializes the context object and sends to RPC consume

Re: [Openstack] Mirantis Fuel 9.2 - nailgund not available when attempting to save changes to cloud environment

2017-04-05 Thread Evgeniy L
Given the fact that you can see settings tab with parameters, the error "Nailgun server is unavailable. Please check your connection and contact your system administrator." most likely means that Nailgun responded with 5xx error, which may happen because of some unhandled exception. 1. We need to

Re: [Openstack] How to get all detail RPC message and detail context in neutron docs?

2017-04-05 Thread 김기석 [Kiseok Kim]
Hi Sam, that 'context' is olso_context and neutron use it with addition attributes. oslo.context has to_dict method, so you could add debug log in 'agent_updated' method like: LOG.debug("context in agent_updated: %s", context.to_dict()) and you can find out the attributes of context

Re: [Openstack] How to get all detail RPC message and detail context in neutron docs?

2017-04-05 Thread Sam
Thank you all. For 'context', I got it. For RPCs, is there some document or blog or some debug method to get its detal contains in neutron L3 Agent? 2017-04-06 9:33 GMT+08:00 김기석 [Kiseok Kim] : > Hi Sam, > > > > that 'context' is olso_context and neutron use it with addition attributes. > > > >

[Openstack] [OSSA-2017-003] XSS in Horizon federation mappings UI (CVE-2017-7400)

2017-04-05 Thread Tristan Cacqueray
OSSA-2017-003: XSS in Horizon federation mappings UI :Date: April 04, 2017 :CVE: CVE-2017-7400 Affects ~~~ - Horizon: >=9.0.0 <=9.1.1, >=10.0.0 <=10.0.2, ==11.0.0 Description ~

Re: [Openstack] How to get all detail RPC message and detail context in neutron docs?

2017-04-05 Thread Sam
For example, detail of the messages of topics.L3_AGENT 2017-04-06 9:38 GMT+08:00 Sam : > Thank you all. > > For 'context', I got it. > For RPCs, is there some document or blog or some debug method to get its > detal contains in neutron L3 Agent? > > 2017-04-06 9:33 GMT+08:00 김기석 [Kiseok Kim] : >

Re: [Openstack] How to get all detail RPC message and detail context in neutron docs?

2017-04-05 Thread 김기석 [Kiseok Kim]
Sam, I have no idea whether or not the document exists. (I want to read too) about L3 RPC messages(L3_AGENT topic), its client-side is implemented in l3_router_plugin.[1] There is an oslo_meessaging document.[2] I guess it would help. [1] https://github.com/openstack/neutron/blob/master/neutro