<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>https://wiki.openstack.org/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Bogun+Dmitriy</id>
		<title>OpenStack - User contributions [en]</title>
		<link rel="self" type="application/atom+xml" href="https://wiki.openstack.org/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Bogun+Dmitriy"/>
		<link rel="alternate" type="text/html" href="https://wiki.openstack.org/wiki/Special:Contributions/Bogun_Dmitriy"/>
		<updated>2026-07-10T15:05:51Z</updated>
		<subtitle>User contributions</subtitle>
		<generator>MediaWiki 1.28.2</generator>

	<entry>
		<id>https://wiki.openstack.org/w/index.php?title=Manila/issue-neutron-on-localhost-ipv6&amp;diff=58982</id>
		<title>Manila/issue-neutron-on-localhost-ipv6</title>
		<link rel="alternate" type="text/html" href="https://wiki.openstack.org/w/index.php?title=Manila/issue-neutron-on-localhost-ipv6&amp;diff=58982"/>
				<updated>2014-07-25T12:58:46Z</updated>
		
		<summary type="html">&lt;p&gt;Bogun Dmitriy: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;I got an issue, on fresh devstack installation (ubuntu-server-14.04). Here is symptom:&lt;br /&gt;
&lt;br /&gt;
  2014-07-24 07:26:21.852 INFO urllib3.connectionpool [req-17b5ef32-2198-4d6f-9baf-d24c803010ba None None] Starting new HTTP connection (1): localhost&lt;br /&gt;
  2014-07-24 07:26:21.852 DEBUG neutronclient.client [req-17b5ef32-2198-4d6f-9baf-d24c803010ba None None] throwing ConnectionFailed : HTTPConnectionPool(host='localhost', port=5000): Max retries exceeded with url: /v2.0/tokens (Caused by &amp;lt;class 'socket.error'&amp;gt;: [Errno -9] Address family for hostname not supported) from (pid=22246) _cs_request /opt/devel/openstack/python-neutronclient/neutronclient/client.py:112&lt;br /&gt;
  2014-07-24 07:26:21.853 DEBUG manila.share.drivers.service_instance [req-17b5ef32-2198-4d6f-9baf-d24c803010ba None None] Connection to neutron failed. from (pid=22246) init /opt/devel/openstack/manila/manila/share/drivers/service_instance.py:145&lt;br /&gt;
  2014-07-24 07:26:24.857 ERROR manila.service [req-17b5ef32-2198-4d6f-9baf-d24c803010ba None None] Unhandled exception&lt;br /&gt;
  2014-07-24 07:26:24.857 TRACE manila.service Traceback (most recent call last):&lt;br /&gt;
  2014-07-24 07:26:24.857 TRACE manila.service   File &amp;quot;/opt/devel/openstack/manila/manila/service.py&amp;quot;, line 225, in _start_child&lt;br /&gt;
  2014-07-24 07:26:24.857 TRACE manila.service     self._child_process(wrap.server)&lt;br /&gt;
  2014-07-24 07:26:24.857 TRACE manila.service   File &amp;quot;/opt/devel/openstack/manila/manila/service.py&amp;quot;, line 202, in _child_process&lt;br /&gt;
  2014-07-24 07:26:24.857 TRACE manila.service     launcher.run_server(server)&lt;br /&gt;
  2014-07-24 07:26:24.857 TRACE manila.service   File &amp;quot;/opt/devel/openstack/manila/manila/service.py&amp;quot;, line 93, in run_server&lt;br /&gt;
  2014-07-24 07:26:24.857 TRACE manila.service     server.start()&lt;br /&gt;
  2014-07-24 07:26:24.857 TRACE manila.service   File &amp;quot;/opt/devel/openstack/manila/manila/service.py&amp;quot;, line 374, in start&lt;br /&gt;
  2014-07-24 07:26:24.857 TRACE manila.service     self.manager.init_host()&lt;br /&gt;
  2014-07-24 07:26:24.857 TRACE manila.service   File &amp;quot;/opt/devel/openstack/manila/manila/share/manager.py&amp;quot;, line 76, in init_host&lt;br /&gt;
  2014-07-24 07:26:24.857 TRACE manila.service     self.driver.do_setup(ctxt)&lt;br /&gt;
  2014-07-24 07:26:24.857 TRACE manila.service   File &amp;quot;/opt/devel/openstack/manila/manila/share/drivers/generic.py&amp;quot;, line 143, in do_setup&lt;br /&gt;
  2014-07-24 07:26:24.857 TRACE manila.service     driver_config=self.configuration)&lt;br /&gt;
  2014-07-24 07:26:24.857 TRACE manila.service   File &amp;quot;/opt/devel/openstack/manila/manila/share/drivers/service_instance.py&amp;quot;, line 149, in init&lt;br /&gt;
  2014-07-24 07:26:24.857 TRACE manila.service     raise exception.ServiceInstanceException(_('Can not receive '&lt;br /&gt;
  2014-07-24 07:26:24.857 TRACE manila.service ServiceInstanceException: Can not receive service tenant id.&lt;br /&gt;
  2014-07-24 07:26:24.857 TRACE manila.service&lt;br /&gt;
&lt;br /&gt;
After some digging, I have found out the source of this error. There is a python-dnspython package installed.  The eventlet package check is dns module (dnspython) present and if present in replace socket's function getaddrinfo. But function getaddrinfo from eventlet packages incorrectly handle ipv6 addresses. In our case it resolve domain &amp;quot;localhost&amp;quot; into ::1 (using /etc/hosts) and we got this error.&lt;br /&gt;
&lt;br /&gt;
[[https://bitbucket.org/eventlet/eventlet/issue/105/name-resolution-needs-to-support-ipv6 eventlet issue]]&lt;br /&gt;
&lt;br /&gt;
== workaround ==&lt;br /&gt;
Set environment variable EVENTLET_NO_GREENDNS to any value. Or remove line&lt;br /&gt;
&lt;br /&gt;
  ::1 localhost&lt;br /&gt;
&lt;br /&gt;
from /etc/hosts&lt;/div&gt;</summary>
		<author><name>Bogun Dmitriy</name></author>	</entry>

	<entry>
		<id>https://wiki.openstack.org/w/index.php?title=Manila/issue-neutron-on-localhost-ipv6&amp;diff=58910</id>
		<title>Manila/issue-neutron-on-localhost-ipv6</title>
		<link rel="alternate" type="text/html" href="https://wiki.openstack.org/w/index.php?title=Manila/issue-neutron-on-localhost-ipv6&amp;diff=58910"/>
				<updated>2014-07-24T14:31:35Z</updated>
		
		<summary type="html">&lt;p&gt;Bogun Dmitriy: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;I got an issue, on fresh devstack installation (ubuntu-server-14.04). Here is symptom:&lt;br /&gt;
&lt;br /&gt;
  2014-07-24 07:26:21.852 INFO urllib3.connectionpool [req-17b5ef32-2198-4d6f-9baf-d24c803010ba None None] Starting new HTTP connection (1): localhost&lt;br /&gt;
  2014-07-24 07:26:21.852 DEBUG neutronclient.client [req-17b5ef32-2198-4d6f-9baf-d24c803010ba None None] throwing ConnectionFailed : HTTPConnectionPool(host='localhost', port=5000): Max retries exceeded with url: /v2.0/tokens (Caused by &amp;lt;class 'socket.error'&amp;gt;: [Errno -9] Address family for hostname not supported) from (pid=22246) _cs_request /opt/devel/openstack/python-neutronclient/neutronclient/client.py:112&lt;br /&gt;
  2014-07-24 07:26:21.853 DEBUG manila.share.drivers.service_instance [req-17b5ef32-2198-4d6f-9baf-d24c803010ba None None] Connection to neutron failed. from (pid=22246) init /opt/devel/openstack/manila/manila/share/drivers/service_instance.py:145&lt;br /&gt;
  2014-07-24 07:26:24.857 ERROR manila.service [req-17b5ef32-2198-4d6f-9baf-d24c803010ba None None] Unhandled exception&lt;br /&gt;
  2014-07-24 07:26:24.857 TRACE manila.service Traceback (most recent call last):&lt;br /&gt;
  2014-07-24 07:26:24.857 TRACE manila.service   File &amp;quot;/opt/devel/openstack/manila/manila/service.py&amp;quot;, line 225, in _start_child&lt;br /&gt;
  2014-07-24 07:26:24.857 TRACE manila.service     self._child_process(wrap.server)&lt;br /&gt;
  2014-07-24 07:26:24.857 TRACE manila.service   File &amp;quot;/opt/devel/openstack/manila/manila/service.py&amp;quot;, line 202, in _child_process&lt;br /&gt;
  2014-07-24 07:26:24.857 TRACE manila.service     launcher.run_server(server)&lt;br /&gt;
  2014-07-24 07:26:24.857 TRACE manila.service   File &amp;quot;/opt/devel/openstack/manila/manila/service.py&amp;quot;, line 93, in run_server&lt;br /&gt;
  2014-07-24 07:26:24.857 TRACE manila.service     server.start()&lt;br /&gt;
  2014-07-24 07:26:24.857 TRACE manila.service   File &amp;quot;/opt/devel/openstack/manila/manila/service.py&amp;quot;, line 374, in start&lt;br /&gt;
  2014-07-24 07:26:24.857 TRACE manila.service     self.manager.init_host()&lt;br /&gt;
  2014-07-24 07:26:24.857 TRACE manila.service   File &amp;quot;/opt/devel/openstack/manila/manila/share/manager.py&amp;quot;, line 76, in init_host&lt;br /&gt;
  2014-07-24 07:26:24.857 TRACE manila.service     self.driver.do_setup(ctxt)&lt;br /&gt;
  2014-07-24 07:26:24.857 TRACE manila.service   File &amp;quot;/opt/devel/openstack/manila/manila/share/drivers/generic.py&amp;quot;, line 143, in do_setup&lt;br /&gt;
  2014-07-24 07:26:24.857 TRACE manila.service     driver_config=self.configuration)&lt;br /&gt;
  2014-07-24 07:26:24.857 TRACE manila.service   File &amp;quot;/opt/devel/openstack/manila/manila/share/drivers/service_instance.py&amp;quot;, line 149, in init&lt;br /&gt;
  2014-07-24 07:26:24.857 TRACE manila.service     raise exception.ServiceInstanceException(_('Can not receive '&lt;br /&gt;
  2014-07-24 07:26:24.857 TRACE manila.service ServiceInstanceException: Can not receive service tenant id.&lt;br /&gt;
  2014-07-24 07:26:24.857 TRACE manila.service&lt;br /&gt;
&lt;br /&gt;
After some digging, I have found out the source of this error. There is a python-dnspython package installed.  The eventlet package check is dns module (dnspython) present and if present in replace socket's function getaddrinfo. But function getaddrinfo from eventlet packages incorrectly handle ipv6 addresses. In our case it resolve domain &amp;quot;localhost&amp;quot; into ::1 (using /etc/hosts) and we got this error.&lt;br /&gt;
&lt;br /&gt;
[[https://bitbucket.org/eventlet/eventlet/issue/105/name-resolution-needs-to-support-ipv6 eventlet issue]]&lt;br /&gt;
&lt;br /&gt;
== workaround ==&lt;br /&gt;
remove line&lt;br /&gt;
&lt;br /&gt;
  ::1 localhost&lt;br /&gt;
&lt;br /&gt;
from /etc/hosts&lt;/div&gt;</summary>
		<author><name>Bogun Dmitriy</name></author>	</entry>

	<entry>
		<id>https://wiki.openstack.org/w/index.php?title=Manila&amp;diff=58909</id>
		<title>Manila</title>
		<link rel="alternate" type="text/html" href="https://wiki.openstack.org/w/index.php?title=Manila&amp;diff=58909"/>
				<updated>2014-07-24T14:16:31Z</updated>
		
		<summary type="html">&lt;p&gt;Bogun Dmitriy: /* Known issues */ fix typo&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Introduction ==&lt;br /&gt;
This page documents the concept and vision for establishing a shared file system service for OpenStack.  The development name for this project is Manila.  We propose and are in the process of implementing a new OpenStack service (originally based on Cinder).  Cinder presently functions as the canonical storage provisioning control plane in [[OpenStack]] for block storage as well as delivering a persistence model for instance storage.  The File Share Service prototype, in a similar manner, provides coordinated access to shared or distributed file systems.  While the primary consumption of file shares would be across OpenStack Compute instances, the service is also intended to be accessible as an independent capability in line with the modular design established by other OpenStack services.  The design and prototype implementation provide extensibility for multiple backends (to support vendor or file system specific nuances / capabilities) but is intended to be sufficiently abstract to accommodate any of a variety of shared or distributed file system types.  The team's intention is to introduce the capability as an OpenStack incubated project in the Juno timeframe, graduate it and submit for consideration as a core service as early as the as of yet unnamed &amp;quot;K&amp;quot; release.&lt;br /&gt;
&lt;br /&gt;
[[File:Shares_Service.png]]&lt;br /&gt;
&lt;br /&gt;
According to IDC in its “[http://www.idc.com/getdoc.jsp?containerId=235910 Worldwide File-Based Storage 2012-2016 Forecast]&amp;quot;, file-based storage continues to be a thriving market, with spending on File-based storage solutions to reach north of $34.6 billion in 2016. Of the 27 Exabyte’s (EB) of total disk capacity estimated to have shipped in 2012, IDC projected that nearly 18 EB were file-based capacity, accounting for over 65% of all disk shipped by capacity. A diversity of applications, from server virtualization to relational or distributed databases to collaborative content creation, often depend on the performance, scalability and simplicity of management associated with file-based systems, and the large ecosystem of supporting software products.  OpenStack, as the leading open IaaS capability, is increasingly contemplated as an option for deploying classic infrastructure in an &amp;quot;as a Service&amp;quot; model, but without specific accommodation for shared file systems represents an incomplete solution.&lt;br /&gt;
&lt;br /&gt;
== Projects==&lt;br /&gt;
&lt;br /&gt;
=== Manila ===&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;2&amp;quot;&lt;br /&gt;
| Source code&lt;br /&gt;
| https://github.com/stackforge/manila&lt;br /&gt;
|-&lt;br /&gt;
| Bug tracker&lt;br /&gt;
| https://bugs.launchpad.net/manila&lt;br /&gt;
|-&lt;br /&gt;
| Feature tracker&lt;br /&gt;
| https://blueprints.launchpad.net/manila&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Python Manila Client ===&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;2&amp;quot;&lt;br /&gt;
| Source code&lt;br /&gt;
| https://github.com/stackforge/python-manilaclient&lt;br /&gt;
|-&lt;br /&gt;
| Bug tracker&lt;br /&gt;
| https://bugs.launchpad.net/python-manilaclient&lt;br /&gt;
|-&lt;br /&gt;
| Feature tracker&lt;br /&gt;
| https://blueprints.launchpad.net/python-manilaclient&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Meetings ===&lt;br /&gt;
&lt;br /&gt;
[[Manila/Meetings|Project Agenda &amp;amp; Meetings]]&lt;br /&gt;
&lt;br /&gt;
[[Manila/JunoSummitPresentation|Overview Presentation from Juno (Atlanta) Summit]]&lt;br /&gt;
&lt;br /&gt;
=== Getting Started with Manila ===&lt;br /&gt;
&lt;br /&gt;
Instructions for getting started with Manila using Devstack are available at: [[Manila/IcehouseDevstack|Manila on Devstack]]&lt;br /&gt;
&lt;br /&gt;
Developer documentation is still in progress, but is available in a draft state: [[Manila/docs|Manila Documentation]]&lt;br /&gt;
&lt;br /&gt;
=== Project Plan &amp;amp; Progress ===&lt;br /&gt;
&lt;br /&gt;
[[Manila/ProjectPlan|Manila Project Plan]]&amp;lt;br /&amp;gt;&lt;br /&gt;
Track progress towards [[Manila/Graduation|Manila Incubation &amp;amp; Graduation]].&lt;br /&gt;
&lt;br /&gt;
== Design &amp;amp; Use Cases ==&lt;br /&gt;
&lt;br /&gt;
[[Manila/design|Manila Component Design]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Manila/usecases|Manila Use Cases]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Known issues ==&lt;br /&gt;
&lt;br /&gt;
[[Manila/issue-neutron-on-localhost-ipv6|Connection to neutron failed.]]&lt;br /&gt;
&lt;br /&gt;
== Subpages ==&lt;br /&gt;
&lt;br /&gt;
{{Special:PrefixIndex/:Manila/}}&lt;br /&gt;
&lt;br /&gt;
 [[Category:Manila]]&lt;/div&gt;</summary>
		<author><name>Bogun Dmitriy</name></author>	</entry>

	<entry>
		<id>https://wiki.openstack.org/w/index.php?title=Manila/issue-neutron-on-localhost-ipv6&amp;diff=58907</id>
		<title>Manila/issue-neutron-on-localhost-ipv6</title>
		<link rel="alternate" type="text/html" href="https://wiki.openstack.org/w/index.php?title=Manila/issue-neutron-on-localhost-ipv6&amp;diff=58907"/>
				<updated>2014-07-24T14:15:45Z</updated>
		
		<summary type="html">&lt;p&gt;Bogun Dmitriy: Bogun Dmitriy moved page Manila/iddue-neutron-on-localhost-ipv6 to Manila/issue-neutron-on-localhost-ipv6: typo in name&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;I got an issue, on fresh devstack installation (ubuntu-server-14.04). Here is symptom:&lt;br /&gt;
&lt;br /&gt;
  2014-07-24 07:26:21.852 INFO urllib3.connectionpool [req-17b5ef32-2198-4d6f-9baf-d24c803010ba None None] Starting new HTTP connection (1): localhost&lt;br /&gt;
  2014-07-24 07:26:21.852 DEBUG neutronclient.client [req-17b5ef32-2198-4d6f-9baf-d24c803010ba None None] throwing ConnectionFailed : HTTPConnectionPool(host='localhost', port=5000): Max retries exceeded with url: /v2.0/tokens (Caused by &amp;lt;class 'socket.error'&amp;gt;: [Errno -9] Address family for hostname not supported) from (pid=22246) _cs_request /opt/devel/openstack/python-neutronclient/neutronclient/client.py:112&lt;br /&gt;
  2014-07-24 07:26:21.853 DEBUG manila.share.drivers.service_instance [req-17b5ef32-2198-4d6f-9baf-d24c803010ba None None] Connection to neutron failed. from (pid=22246) init /opt/devel/openstack/manila/manila/share/drivers/service_instance.py:145&lt;br /&gt;
  2014-07-24 07:26:24.857 ERROR manila.service [req-17b5ef32-2198-4d6f-9baf-d24c803010ba None None] Unhandled exception&lt;br /&gt;
  2014-07-24 07:26:24.857 TRACE manila.service Traceback (most recent call last):&lt;br /&gt;
  2014-07-24 07:26:24.857 TRACE manila.service   File &amp;quot;/opt/devel/openstack/manila/manila/service.py&amp;quot;, line 225, in _start_child&lt;br /&gt;
  2014-07-24 07:26:24.857 TRACE manila.service     self._child_process(wrap.server)&lt;br /&gt;
  2014-07-24 07:26:24.857 TRACE manila.service   File &amp;quot;/opt/devel/openstack/manila/manila/service.py&amp;quot;, line 202, in _child_process&lt;br /&gt;
  2014-07-24 07:26:24.857 TRACE manila.service     launcher.run_server(server)&lt;br /&gt;
  2014-07-24 07:26:24.857 TRACE manila.service   File &amp;quot;/opt/devel/openstack/manila/manila/service.py&amp;quot;, line 93, in run_server&lt;br /&gt;
  2014-07-24 07:26:24.857 TRACE manila.service     server.start()&lt;br /&gt;
  2014-07-24 07:26:24.857 TRACE manila.service   File &amp;quot;/opt/devel/openstack/manila/manila/service.py&amp;quot;, line 374, in start&lt;br /&gt;
  2014-07-24 07:26:24.857 TRACE manila.service     self.manager.init_host()&lt;br /&gt;
  2014-07-24 07:26:24.857 TRACE manila.service   File &amp;quot;/opt/devel/openstack/manila/manila/share/manager.py&amp;quot;, line 76, in init_host&lt;br /&gt;
  2014-07-24 07:26:24.857 TRACE manila.service     self.driver.do_setup(ctxt)&lt;br /&gt;
  2014-07-24 07:26:24.857 TRACE manila.service   File &amp;quot;/opt/devel/openstack/manila/manila/share/drivers/generic.py&amp;quot;, line 143, in do_setup&lt;br /&gt;
  2014-07-24 07:26:24.857 TRACE manila.service     driver_config=self.configuration)&lt;br /&gt;
  2014-07-24 07:26:24.857 TRACE manila.service   File &amp;quot;/opt/devel/openstack/manila/manila/share/drivers/service_instance.py&amp;quot;, line 149, in init&lt;br /&gt;
  2014-07-24 07:26:24.857 TRACE manila.service     raise exception.ServiceInstanceException(_('Can not receive '&lt;br /&gt;
  2014-07-24 07:26:24.857 TRACE manila.service ServiceInstanceException: Can not receive service tenant id.&lt;br /&gt;
  2014-07-24 07:26:24.857 TRACE manila.service&lt;br /&gt;
&lt;br /&gt;
After some digging, I have found out the source of this error. There is a python-dnspython package installed.  The eventlet package check is dns module (dnspython) present and if present in replace socket's function getaddrinfo. But function getaddrinfo from eventlet packages incorrectly handle ipv6 addresses. In our case it resolve domain &amp;quot;localhost&amp;quot; into ::1 (using /etc/hosts) and we got this error.&lt;br /&gt;
&lt;br /&gt;
[[https://bitbucket.org/eventlet/eventlet/issue/105/name-resolution-needs-to-support-ipv6]]&lt;br /&gt;
&lt;br /&gt;
== workaround ==&lt;br /&gt;
remove line&lt;br /&gt;
&lt;br /&gt;
  ::1 localhost&lt;br /&gt;
&lt;br /&gt;
from /etc/hosts&lt;/div&gt;</summary>
		<author><name>Bogun Dmitriy</name></author>	</entry>

	<entry>
		<id>https://wiki.openstack.org/w/index.php?title=Manila/iddue-neutron-on-localhost-ipv6&amp;diff=58908</id>
		<title>Manila/iddue-neutron-on-localhost-ipv6</title>
		<link rel="alternate" type="text/html" href="https://wiki.openstack.org/w/index.php?title=Manila/iddue-neutron-on-localhost-ipv6&amp;diff=58908"/>
				<updated>2014-07-24T14:15:45Z</updated>
		
		<summary type="html">&lt;p&gt;Bogun Dmitriy: Bogun Dmitriy moved page Manila/iddue-neutron-on-localhost-ipv6 to Manila/issue-neutron-on-localhost-ipv6: typo in name&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#REDIRECT [[Manila/issue-neutron-on-localhost-ipv6]]&lt;/div&gt;</summary>
		<author><name>Bogun Dmitriy</name></author>	</entry>

	<entry>
		<id>https://wiki.openstack.org/w/index.php?title=Manila/issue-neutron-on-localhost-ipv6&amp;diff=58897</id>
		<title>Manila/issue-neutron-on-localhost-ipv6</title>
		<link rel="alternate" type="text/html" href="https://wiki.openstack.org/w/index.php?title=Manila/issue-neutron-on-localhost-ipv6&amp;diff=58897"/>
				<updated>2014-07-24T13:00:29Z</updated>
		
		<summary type="html">&lt;p&gt;Bogun Dmitriy: Created page with &amp;quot;I got an issue, on fresh devstack installation (ubuntu-server-14.04). Here is symptom:    2014-07-24 07:26:21.852 INFO urllib3.connectionpool [req-17b5ef32-2198-4d6f-9baf-d24c...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;I got an issue, on fresh devstack installation (ubuntu-server-14.04). Here is symptom:&lt;br /&gt;
&lt;br /&gt;
  2014-07-24 07:26:21.852 INFO urllib3.connectionpool [req-17b5ef32-2198-4d6f-9baf-d24c803010ba None None] Starting new HTTP connection (1): localhost&lt;br /&gt;
  2014-07-24 07:26:21.852 DEBUG neutronclient.client [req-17b5ef32-2198-4d6f-9baf-d24c803010ba None None] throwing ConnectionFailed : HTTPConnectionPool(host='localhost', port=5000): Max retries exceeded with url: /v2.0/tokens (Caused by &amp;lt;class 'socket.error'&amp;gt;: [Errno -9] Address family for hostname not supported) from (pid=22246) _cs_request /opt/devel/openstack/python-neutronclient/neutronclient/client.py:112&lt;br /&gt;
  2014-07-24 07:26:21.853 DEBUG manila.share.drivers.service_instance [req-17b5ef32-2198-4d6f-9baf-d24c803010ba None None] Connection to neutron failed. from (pid=22246) init /opt/devel/openstack/manila/manila/share/drivers/service_instance.py:145&lt;br /&gt;
  2014-07-24 07:26:24.857 ERROR manila.service [req-17b5ef32-2198-4d6f-9baf-d24c803010ba None None] Unhandled exception&lt;br /&gt;
  2014-07-24 07:26:24.857 TRACE manila.service Traceback (most recent call last):&lt;br /&gt;
  2014-07-24 07:26:24.857 TRACE manila.service   File &amp;quot;/opt/devel/openstack/manila/manila/service.py&amp;quot;, line 225, in _start_child&lt;br /&gt;
  2014-07-24 07:26:24.857 TRACE manila.service     self._child_process(wrap.server)&lt;br /&gt;
  2014-07-24 07:26:24.857 TRACE manila.service   File &amp;quot;/opt/devel/openstack/manila/manila/service.py&amp;quot;, line 202, in _child_process&lt;br /&gt;
  2014-07-24 07:26:24.857 TRACE manila.service     launcher.run_server(server)&lt;br /&gt;
  2014-07-24 07:26:24.857 TRACE manila.service   File &amp;quot;/opt/devel/openstack/manila/manila/service.py&amp;quot;, line 93, in run_server&lt;br /&gt;
  2014-07-24 07:26:24.857 TRACE manila.service     server.start()&lt;br /&gt;
  2014-07-24 07:26:24.857 TRACE manila.service   File &amp;quot;/opt/devel/openstack/manila/manila/service.py&amp;quot;, line 374, in start&lt;br /&gt;
  2014-07-24 07:26:24.857 TRACE manila.service     self.manager.init_host()&lt;br /&gt;
  2014-07-24 07:26:24.857 TRACE manila.service   File &amp;quot;/opt/devel/openstack/manila/manila/share/manager.py&amp;quot;, line 76, in init_host&lt;br /&gt;
  2014-07-24 07:26:24.857 TRACE manila.service     self.driver.do_setup(ctxt)&lt;br /&gt;
  2014-07-24 07:26:24.857 TRACE manila.service   File &amp;quot;/opt/devel/openstack/manila/manila/share/drivers/generic.py&amp;quot;, line 143, in do_setup&lt;br /&gt;
  2014-07-24 07:26:24.857 TRACE manila.service     driver_config=self.configuration)&lt;br /&gt;
  2014-07-24 07:26:24.857 TRACE manila.service   File &amp;quot;/opt/devel/openstack/manila/manila/share/drivers/service_instance.py&amp;quot;, line 149, in init&lt;br /&gt;
  2014-07-24 07:26:24.857 TRACE manila.service     raise exception.ServiceInstanceException(_('Can not receive '&lt;br /&gt;
  2014-07-24 07:26:24.857 TRACE manila.service ServiceInstanceException: Can not receive service tenant id.&lt;br /&gt;
  2014-07-24 07:26:24.857 TRACE manila.service&lt;br /&gt;
&lt;br /&gt;
After some digging, I have found out the source of this error. There is a python-dnspython package installed.  The eventlet package check is dns module (dnspython) present and if present in replace socket's function getaddrinfo. But function getaddrinfo from eventlet packages incorrectly handle ipv6 addresses. In our case it resolve domain &amp;quot;localhost&amp;quot; into ::1 (using /etc/hosts) and we got this error.&lt;br /&gt;
&lt;br /&gt;
[[https://bitbucket.org/eventlet/eventlet/issue/105/name-resolution-needs-to-support-ipv6]]&lt;br /&gt;
&lt;br /&gt;
== workaround ==&lt;br /&gt;
remove line&lt;br /&gt;
&lt;br /&gt;
  ::1 localhost&lt;br /&gt;
&lt;br /&gt;
from /etc/hosts&lt;/div&gt;</summary>
		<author><name>Bogun Dmitriy</name></author>	</entry>

	<entry>
		<id>https://wiki.openstack.org/w/index.php?title=Manila&amp;diff=58895</id>
		<title>Manila</title>
		<link rel="alternate" type="text/html" href="https://wiki.openstack.org/w/index.php?title=Manila&amp;diff=58895"/>
				<updated>2014-07-24T12:39:56Z</updated>
		
		<summary type="html">&lt;p&gt;Bogun Dmitriy: /* Design &amp;amp; Use Cases */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Introduction ==&lt;br /&gt;
This page documents the concept and vision for establishing a shared file system service for OpenStack.  The development name for this project is Manila.  We propose and are in the process of implementing a new OpenStack service (originally based on Cinder).  Cinder presently functions as the canonical storage provisioning control plane in [[OpenStack]] for block storage as well as delivering a persistence model for instance storage.  The File Share Service prototype, in a similar manner, provides coordinated access to shared or distributed file systems.  While the primary consumption of file shares would be across OpenStack Compute instances, the service is also intended to be accessible as an independent capability in line with the modular design established by other OpenStack services.  The design and prototype implementation provide extensibility for multiple backends (to support vendor or file system specific nuances / capabilities) but is intended to be sufficiently abstract to accommodate any of a variety of shared or distributed file system types.  The team's intention is to introduce the capability as an OpenStack incubated project in the Juno timeframe, graduate it and submit for consideration as a core service as early as the as of yet unnamed &amp;quot;K&amp;quot; release.&lt;br /&gt;
&lt;br /&gt;
[[File:Shares_Service.png]]&lt;br /&gt;
&lt;br /&gt;
According to IDC in its “[http://www.idc.com/getdoc.jsp?containerId=235910 Worldwide File-Based Storage 2012-2016 Forecast]&amp;quot;, file-based storage continues to be a thriving market, with spending on File-based storage solutions to reach north of $34.6 billion in 2016. Of the 27 Exabyte’s (EB) of total disk capacity estimated to have shipped in 2012, IDC projected that nearly 18 EB were file-based capacity, accounting for over 65% of all disk shipped by capacity. A diversity of applications, from server virtualization to relational or distributed databases to collaborative content creation, often depend on the performance, scalability and simplicity of management associated with file-based systems, and the large ecosystem of supporting software products.  OpenStack, as the leading open IaaS capability, is increasingly contemplated as an option for deploying classic infrastructure in an &amp;quot;as a Service&amp;quot; model, but without specific accommodation for shared file systems represents an incomplete solution.&lt;br /&gt;
&lt;br /&gt;
== Projects==&lt;br /&gt;
&lt;br /&gt;
=== Manila ===&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;2&amp;quot;&lt;br /&gt;
| Source code&lt;br /&gt;
| https://github.com/stackforge/manila&lt;br /&gt;
|-&lt;br /&gt;
| Bug tracker&lt;br /&gt;
| https://bugs.launchpad.net/manila&lt;br /&gt;
|-&lt;br /&gt;
| Feature tracker&lt;br /&gt;
| https://blueprints.launchpad.net/manila&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Python Manila Client ===&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;2&amp;quot;&lt;br /&gt;
| Source code&lt;br /&gt;
| https://github.com/stackforge/python-manilaclient&lt;br /&gt;
|-&lt;br /&gt;
| Bug tracker&lt;br /&gt;
| https://bugs.launchpad.net/python-manilaclient&lt;br /&gt;
|-&lt;br /&gt;
| Feature tracker&lt;br /&gt;
| https://blueprints.launchpad.net/python-manilaclient&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Meetings ===&lt;br /&gt;
&lt;br /&gt;
[[Manila/Meetings|Project Agenda &amp;amp; Meetings]]&lt;br /&gt;
&lt;br /&gt;
[[Manila/JunoSummitPresentation|Overview Presentation from Juno (Atlanta) Summit]]&lt;br /&gt;
&lt;br /&gt;
=== Getting Started with Manila ===&lt;br /&gt;
&lt;br /&gt;
Instructions for getting started with Manila using Devstack are available at: [[Manila/IcehouseDevstack|Manila on Devstack]]&lt;br /&gt;
&lt;br /&gt;
Developer documentation is still in progress, but is available in a draft state: [[Manila/docs|Manila Documentation]]&lt;br /&gt;
&lt;br /&gt;
=== Project Plan &amp;amp; Progress ===&lt;br /&gt;
&lt;br /&gt;
[[Manila/ProjectPlan|Manila Project Plan]]&amp;lt;br /&amp;gt;&lt;br /&gt;
Track progress towards [[Manila/Graduation|Manila Incubation &amp;amp; Graduation]].&lt;br /&gt;
&lt;br /&gt;
== Design &amp;amp; Use Cases ==&lt;br /&gt;
&lt;br /&gt;
[[Manila/design|Manila Component Design]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Manila/usecases|Manila Use Cases]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Known issues ==&lt;br /&gt;
&lt;br /&gt;
[[Manila/iddue-neutron-on-localhost-ipv6|Connection to neutron failed.]]&lt;br /&gt;
&lt;br /&gt;
== Subpages ==&lt;br /&gt;
&lt;br /&gt;
{{Special:PrefixIndex/:Manila/}}&lt;br /&gt;
&lt;br /&gt;
 [[Category:Manila]]&lt;/div&gt;</summary>
		<author><name>Bogun Dmitriy</name></author>	</entry>

	</feed>