<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: How do you add a new user to the controller? (2.4.5) in Software Defined Networking</title>
    <link>https://community.hpe.com/t5/software-defined-networking/how-do-you-add-a-new-user-to-the-controller-2-4-5/m-p/6708542#M697</link>
    <description>&lt;P&gt;Thanks! That's exactly what I needed.&lt;/P&gt;</description>
    <pubDate>Fri, 13 Feb 2015 11:28:01 GMT</pubDate>
    <dc:creator>panluowei</dc:creator>
    <dc:date>2015-02-13T11:28:01Z</dc:date>
    <item>
      <title>How do you add a new user to the controller? (2.4.5)</title>
      <link>https://community.hpe.com/t5/software-defined-networking/how-do-you-add-a-new-user-to-the-controller-2-4-5/m-p/6708282#M689</link>
      <description />
      <pubDate>Thu, 12 Feb 2015 17:34:42 GMT</pubDate>
      <guid>https://community.hpe.com/t5/software-defined-networking/how-do-you-add-a-new-user-to-the-controller-2-4-5/m-p/6708282#M689</guid>
      <dc:creator>panluowei</dc:creator>
      <dc:date>2015-02-12T17:34:42Z</dc:date>
    </item>
    <item>
      <title>Re: How do you add a new user to the controller? (2.4.5)</title>
      <link>https://community.hpe.com/t5/software-defined-networking/how-do-you-add-a-new-user-to-the-controller-2-4-5/m-p/6708298#M690</link>
      <description>&lt;P&gt;After a clean install of Keystone and the controller, there is a script that will create a user: sdn with a password: skyline.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;sudo /opt/sdn/admin/config_local_keystone&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Or here are some steps for the Icehouse build of keystone:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;export OS_SERVICE_TOKEN=ADMIN&lt;BR /&gt;export OS_SERVICE_ENDPOINT=&lt;A target="_blank" href="http://127.0.0.1:35357/v2.0"&gt;http://127.0.0.1:35357/v2.0&lt;/A&gt;&lt;BR /&gt;keystone user-create --name sdn&lt;BR /&gt;keystone role-create --name sdn-admin&lt;BR /&gt;keystone role-create --name sdn-user&lt;BR /&gt;keystone tenant-create --name sdn&lt;BR /&gt;keystone user-role-add --user &amp;lt;user-id&amp;gt; --role &amp;lt;role-id&amp;gt; --tenant_id &amp;lt;tenant-id&amp;gt;&lt;BR /&gt;keystone user-password-update --pass skyline &amp;lt;user-id&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;To validate success:&lt;/P&gt;&lt;P&gt;keystone user-list&lt;BR /&gt;keystone role-list&lt;BR /&gt;keystone tenant-list&lt;BR /&gt;keystone user-role-list --user &amp;lt;user-id&amp;gt; --tenant &amp;lt;tenant-id&amp;gt;&lt;/P&gt;</description>
      <pubDate>Thu, 12 Feb 2015 18:04:47 GMT</pubDate>
      <guid>https://community.hpe.com/t5/software-defined-networking/how-do-you-add-a-new-user-to-the-controller-2-4-5/m-p/6708298#M690</guid>
      <dc:creator>EricAtHP</dc:creator>
      <dc:date>2015-02-12T18:04:47Z</dc:date>
    </item>
    <item>
      <title>Re: How do you add a new user to the controller? (2.4.5)</title>
      <link>https://community.hpe.com/t5/software-defined-networking/how-do-you-add-a-new-user-to-the-controller-2-4-5/m-p/6708374#M692</link>
      <description>&lt;P&gt;So can we add a second user so everyone doesn't share the same credentials? Something like...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;export OS_SERVICE_TOKEN=ADMIN&lt;BR /&gt;export OS_SERVICE_ENDPOINT=&lt;A href="http://127.0.0.1:35357/v2.0" rel="nofollow" target="_blank"&gt;http://127.0.0.1:35357/v2.0&lt;/A&gt;&lt;BR /&gt;keystone user-create --name otherguy&lt;BR /&gt;keystone user-role-add --user otherguy --role sdn-admin --tenant_id &amp;lt;tenant-id&amp;gt;&lt;BR /&gt;keystone user-password-update --pass otherskyline otherguy&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 12 Feb 2015 22:48:59 GMT</pubDate>
      <guid>https://community.hpe.com/t5/software-defined-networking/how-do-you-add-a-new-user-to-the-controller-2-4-5/m-p/6708374#M692</guid>
      <dc:creator>panluowei</dc:creator>
      <dc:date>2015-02-12T22:48:59Z</dc:date>
    </item>
    <item>
      <title>Re: How do you add a new user to the controller? (2.4.5)</title>
      <link>https://community.hpe.com/t5/software-defined-networking/how-do-you-add-a-new-user-to-the-controller-2-4-5/m-p/6708381#M693</link>
      <description>&lt;P&gt;Correct. You can create as many users as you like.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I would recommend that you have a dedicated installation of Keystone for the Controller(s) and not use it for anything else. I assume this is what you are doing anyway.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;By the way, you only have to do the two Export commands once. You could add them as permanent environment variables or just enter them when you need to after loging into the system via the console or ssh.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;And just to be clear, the &amp;lt;variable&amp;gt; fields need to be replaced by the actual alpha numeric string generated when you create a user, group, or tenant. It is a long string, maybe 30 characters or so.&lt;/P&gt;</description>
      <pubDate>Thu, 12 Feb 2015 23:47:55 GMT</pubDate>
      <guid>https://community.hpe.com/t5/software-defined-networking/how-do-you-add-a-new-user-to-the-controller-2-4-5/m-p/6708381#M693</guid>
      <dc:creator>EricAtHP</dc:creator>
      <dc:date>2015-02-12T23:47:55Z</dc:date>
    </item>
    <item>
      <title>Re: How do you add a new user to the controller? (2.4.5)</title>
      <link>https://community.hpe.com/t5/software-defined-networking/how-do-you-add-a-new-user-to-the-controller-2-4-5/m-p/6708542#M697</link>
      <description>&lt;P&gt;Thanks! That's exactly what I needed.&lt;/P&gt;</description>
      <pubDate>Fri, 13 Feb 2015 11:28:01 GMT</pubDate>
      <guid>https://community.hpe.com/t5/software-defined-networking/how-do-you-add-a-new-user-to-the-controller-2-4-5/m-p/6708542#M697</guid>
      <dc:creator>panluowei</dc:creator>
      <dc:date>2015-02-13T11:28:01Z</dc:date>
    </item>
  </channel>
</rss>

