<div dir="ltr">I'm not familiar with that "<span style="font-family:arial,sans-serif;font-size:13px">legacy auth" =,=</span><div style><span style="font-family:arial,sans-serif;font-size:13px">In my experience, v1.0 works for tempauth, and v2.0 works for keystone.</span></div>
<div style><span style="font-family:arial,sans-serif;font-size:13px">The format of two kinds of url is not totally same.</span></div><div style><span style="font-family:arial,sans-serif;font-size:13px">My keystone env use </span><span style="color:rgb(35,48,45);font-family:Monaco,'Courier New','DejaVu Sans Mono','Bitstream Vera Sans Mono',monospace;font-size:12px">http://<AUTH_HOSTNAME>:</span><span style="color:rgb(35,48,45);font-family:Monaco,'Courier New','DejaVu Sans Mono','Bitstream Vera Sans Mono',monospace;font-size:12px">5000/v2.0 in this case.</span></div>
<div style><span style="color:rgb(35,48,45);font-family:Monaco,'Courier New','DejaVu Sans Mono','Bitstream Vera Sans Mono',monospace;font-size:12px">And my tempauth use </span><font color="#23302d" face="Monaco, Courier New, DejaVu Sans Mono, Bitstream Vera Sans Mono, monospace"><span style="font-size:12px"><a href="http://127.0.0.1:8080/auth/v1.0">http://127.0.0.1:8080/auth/v1.0</a></span></font></div>
<div style><font color="#23302d" face="Monaco, Courier New, DejaVu Sans Mono, Bitstream Vera Sans Mono, monospace"><span style="font-size:12px"><br></span></font></div><div style><font color="#23302d" face="Monaco, Courier New, DejaVu Sans Mono, Bitstream Vera Sans Mono, monospace"><span style="font-size:12px">I think</span></font> Tomáš Šoltys has misused path as /auth/v2.0. It should be /v2.0 or /auth/v2.0</div>
<div style>BTW, I use newest codes.</div><div style><br></div><div style>Any misunderstanding from me?</div></div><div class="gmail_extra"><br><br><div class="gmail_quote">On Sat, Mar 16, 2013 at 12:48 AM, Kuo Hugo <span dir="ltr"><<a href="mailto:tonytkdk@gmail.com" target="_blank">tonytkdk@gmail.com</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr">As I know that legacy auth was been removed from ESSEX release in Keystone. <div><br></div><div><br></div>
<div><br></div></div><div class="HOEnZb"><div class="h5"><div class="gmail_extra"><br><br><div class="gmail_quote">2013/3/15 Gareth <span dir="ltr"><<a href="mailto:academicgareth@gmail.com" target="_blank">academicgareth@gmail.com</a>></span><br>

<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr">Kuo's answering is the point. But v1.0 is not the answer because keystone use v2.0 now.<div>Look at your docuement, <span style="color:rgb(35,48,45);font-family:Monaco,'Courier New','DejaVu Sans Mono','Bitstream Vera Sans Mono',monospace;font-size:12px">http://<AUTH_HOSTNAME>:5000/auth/v2.0 and </span><span style="color:rgb(35,48,45);font-family:Monaco,'Courier New','DejaVu Sans Mono','Bitstream Vera Sans Mono',monospace;font-size:12px">http://<AUTH_HOSTNAME>:5000/v2.0 have been used.</span></div>


<div><span style="color:rgb(35,48,45);font-family:Monaco,'Courier New','DejaVu Sans Mono','Bitstream Vera Sans Mono',monospace;font-size:12px"><br></span></div><div><span style="color:rgb(35,48,45);font-family:Monaco,'Courier New','DejaVu Sans Mono','Bitstream Vera Sans Mono',monospace;font-size:12px">The second works for me. Try these two yourself.</span></div>


</div><div class="gmail_extra"><div><div><br><br><div class="gmail_quote">On Fri, Mar 15, 2013 at 11:55 PM, Kuo Hugo <span dir="ltr"><<a href="mailto:tonytkdk@gmail.com" target="_blank">tonytkdk@gmail.com</a>></span> wrote:<br>


<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr">It should be a doc bug in the instruction . <div><br></div><div>The first one is v1.0 auth (legacy auth)</div>


<div>The URL suppose to be <a href="http://localhost:5000/auth/v1.0" target="_blank">http://localhost:5000/auth/v1.0</a> </div>
<div><br></div><div><br></div><div>Hope it help</div></div><div class="gmail_extra"><br><br><div class="gmail_quote">2013/3/15 Tomáš Šoltys <span dir="ltr"><<a href="mailto:tomas.soltys@gmail.com" target="_blank">tomas.soltys@gmail.com</a>></span><br>



<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div><div><div dir="ltr"><div><div><div><div><div>Hi,<br><br></div>I am following the OpenStack WalkThrough instructions and I am failing to verify my setup as described here:<br>



<a href="http://docs.openstack.org/folsom/openstack-compute/install/yum/content/verify-swift-installation.html" target="_blank">http://docs.openstack.org/folsom/openstack-compute/install/yum/content/verify-swift-installation.html</a><br>




<br></div>In this forum I have found that the instructions are not exactly correct so I tried what was suggested but without any success.<br><br></div>Following command always return '404 Not Found'<br><br>curl -k -v -H 'X-Storage-User: service:swift' -H 'X-Storage-Pass: 12345678' -X 'POST' <a href="http://localhost:5000/v2.0/auth" target="_blank">http://localhost:5000/v2.0/auth</a><br>




<br></div>But when for following it works:<br><br>curl -k -v -X 'POST' <a href="http://localhost:5000/v2.0/tokens" target="_blank">http://localhost:5000/v2.0/tokens</a> -d '{"auth":{"passwordCredentials":{"username":"swift", "password":"12345678"}, "tenantName":"service"}}' -H 'Content-type: application/json' -H 'Accept: application/xml'<br>




<br></div>What am I missing here?<br><div><div><div><div><div><br><div>Thanks<br clear="all"></div><div><div><br>Tomáš Šoltys<br><br><a href="mailto:tomas.soltys@gmail.com" target="_blank">tomas.soltys@gmail.com</a><br><a href="http://www.range-software.com" target="_blank">http://www.range-software.com</a><br>




<a href="tel:%28%2B420%29%20776-843-663" value="+420776843663" target="_blank">(+420) 776-843-663</a>
</div></div></div></div></div></div></div></div>
<br></div></div><div>_______________________________________________<br>
Mailing list: <a href="https://launchpad.net/~openstack" target="_blank">https://launchpad.net/~openstack</a><br>
Post to     : <a href="mailto:openstack@lists.launchpad.net" target="_blank">openstack@lists.launchpad.net</a><br>
Unsubscribe : <a href="https://launchpad.net/~openstack" target="_blank">https://launchpad.net/~openstack</a><br>
More help   : <a href="https://help.launchpad.net/ListHelp" target="_blank">https://help.launchpad.net/ListHelp</a><br>
<br></div></blockquote></div><span><font color="#888888"><br><br clear="all"><div><br></div>-- <br><div dir="ltr"><div>+Hugo Kuo+</div><div><a href="mailto:hugo@swiftstack.com" target="_blank">hugo@swiftstack.com</a><br>


</div><div><a href="mailto:tonytkdk@gmail.com" target="_blank">tonytkdk@gmail.com<br>
</a></div><div><a href="tel:%2B886%20935004793" value="+886935004793" target="_blank">+886 935004793</a><br></div></div>
</font></span></div>
<br>_______________________________________________<br>
Mailing list: <a href="https://launchpad.net/~openstack" target="_blank">https://launchpad.net/~openstack</a><br>
Post to     : <a href="mailto:openstack@lists.launchpad.net" target="_blank">openstack@lists.launchpad.net</a><br>
Unsubscribe : <a href="https://launchpad.net/~openstack" target="_blank">https://launchpad.net/~openstack</a><br>
More help   : <a href="https://help.launchpad.net/ListHelp" target="_blank">https://help.launchpad.net/ListHelp</a><br>
<br></blockquote></div><br><br clear="all"><div><br></div>-- <br></div></div><div><div dir="ltr"><font color="#444444">Gareth</font><div><i><font color="#444444">Cloud Computing, Openstack, Fitness, Basketball<br>
</font></i></div><div><i><font color="#666666">Novice Openstack contributer</font></i></div>
<div><i><font color="#999999">My promise: if you find any spelling or grammar mistake in my email from Mar 1 2013, notice me </font></i></div><div><i><font color="#999999">and I'll donate 1$ or 1¥ to open organization specified by you.</font></i></div>


</div>
</div></div>
</blockquote></div><br><br clear="all"><div><br></div>-- <br><div dir="ltr"><div>+Hugo Kuo+</div><div><a href="mailto:hugo@swiftstack.com" target="_blank">hugo@swiftstack.com</a><br></div><div><a href="mailto:tonytkdk@gmail.com" target="_blank">tonytkdk@gmail.com<br>

</a></div><div><a href="tel:%2B886%20935004793" value="+886935004793" target="_blank">+886 935004793</a><br></div></div>
</div>
</div></div></blockquote></div><br><br clear="all"><div><br></div>-- <br><div dir="ltr"><font color="#444444">Gareth</font><div><i><font color="#444444">Cloud Computing, Openstack, Fitness, Basketball<br></font></i></div>
<div><i><font color="#666666">Novice Openstack contributer</font></i></div><div><i><font color="#999999">My promise: if you find any spelling or grammar mistake in my email from Mar 1 2013, notice me </font></i></div><div>
<i><font color="#999999">and I'll donate 1$ or 1¥ to open organization specified by you.</font></i></div></div>
</div>