Changes Identity pom file to build from that so that the Disqus comments go to the os-identitydevguide shortname

Change-Id: Ib512aefacc6bd4210fc3ae6c598c74ff3b948724
This commit is contained in:
annegentle 2011-09-28 13:09:27 -05:00
parent 2848d0fd67
commit fc1ef13b5a
3 changed files with 62 additions and 26 deletions

View File

@ -179,8 +179,7 @@
<includes> <includes>
openstack-compute-admin/os-compute-adminguide.xml, openstack-compute-admin/os-compute-adminguide.xml,
openstack-object-storage-admin/os-objectstorage-adminguide.xml, openstack-object-storage-admin/os-objectstorage-adminguide.xml,
openstack-image-service-admin/os-image-adminguide.xml, openstack-image-service-admin/os-image-adminguide.xml
openstack-identity-service-starter/os-identity-starter-guide.xml
</includes> </includes>
<profileSecurity>reviewer</profileSecurity> <profileSecurity>reviewer</profileSecurity>
<branding>openstack</branding> <branding>openstack</branding>

View File

@ -103,19 +103,19 @@
<para> <para>
To install the latest version of the Identity Service (Keystone) from the Github To install the latest version of the Identity Service (Keystone) from the Github
repositories, following the following instructions. repositories, following the following instructions.
</para><para>
For Debian/Ubuntu, add the Keystone PPA to your sources.lst:
</para><orderedlist> </para><orderedlist>
<listitem><para> <listitem><para>
$&gt; sudo add-apt-repository ppa:keystone-core/trunk $&gt; For Debian/Ubuntu, add the Keystone PPA to your sources.lst:
sudo apt-get update </para><literallayout class="monospaced">
</para> $&gt; sudo add-apt-repository ppa:keystone-core/trunk
$&gt; sudo apt-get update
</literallayout>
</listitem> </listitem>
<listitem> <listitem>
<para> <para>
Install Keystone: Install Keystone:
</para> </para>
<para> $&gt; sudo apt-get install keystone </para> <literallayout class="monospaced"> $&gt; sudo apt-get install keystone </literallayout>
</listitem> </listitem>
</orderedlist> </orderedlist>
@ -134,18 +134,18 @@
<para> <para>
Untar the source tarball: Untar the source tarball:
</para> </para>
<para> <literallayout class="monospaced">
$&gt; tar -xzf &lt;FILE&gt; $&gt; tar -xzf &lt;FILE&gt;
</para> </literallayout>
</listitem> </listitem>
<listitem> <listitem>
<para> <para>
Change into the package directory and build/install: Change into the package directory and build/install:
</para> </para>
<para> <literallayout class="monospaced">
$&gt; cd keystone-&lt;RELEASE&gt; $&gt; sudo python setup.py $&gt; cd keystone-&lt;RELEASE&gt; $&gt; sudo python setup.py
install install
</para> </literallayout>
</listitem> </listitem>
</orderedlist> </orderedlist>
@ -164,9 +164,9 @@
<para> <para>
Install Git and build dependencies: Install Git and build dependencies:
</para> </para>
<para> $&gt; sudo apt-get install git python-eventlet python-routes python-greenlet <literallayout class="monospaced"> $&gt; sudo apt-get install git python-eventlet python-routes python-greenlet
swift $&gt; sudo apt-get install python-argparse python-sqlalchemy python-wsgiref swift $&gt; sudo apt-get install python-argparse python-sqlalchemy python-wsgiref
python-pastedeploy </para> python-pastedeploy </literallayout>
</listitem> </listitem>
<listitem> <listitem>
@ -176,18 +176,19 @@
to get the project initially setup): to get the project initially setup):
</para> </para>
<para> <literallayout class="monospaced">
$&gt; git checkout master $&gt; git pull origin master $&gt; git checkout master
</para> $&gt; git pull origin master
</literallayout>
</listitem> </listitem>
<listitem> <listitem>
<para> <para>
Install Keystone: Install Keystone:
</para> </para>
<para> <literallayout class="monospaced">
$&gt; sudo python setup.py install $&gt; sudo python setup.py install
</para> </literallayout>
</listitem> </listitem>
</orderedlist> </orderedlist>
</section> </section>
@ -230,9 +231,45 @@
configuration files in the examples/paste directory. Restart the glance-api service and configuration files in the examples/paste directory. Restart the glance-api service and
also ensure your environment contains OS_AUTH credentials which you can set up with tools/nova_to_os_env.sh provided by the Glance project.</para> also ensure your environment contains OS_AUTH credentials which you can set up with tools/nova_to_os_env.sh provided by the Glance project.</para>
</listitem> </listitem>
<listitem><para>In Object Storage, the settings are held in /etc/swift/proxy-server.conf in a <listitem>
<para>In Object Storage, the settings are held in /etc/swift/proxy-server.conf in a
[filter:keystone] section. Use <code>swift-init main start</code> to restart Object [filter:keystone] section. Use <code>swift-init main start</code> to restart Object
Storage with the new configuration.</para></listitem> Storage with the new configuration. Here's an example
/etc/swift/proxy-server.conf:</para>
<literallayout class="monospaced">
[DEFAULT]
bind_port = 8888
user = &lt;user&gt;
[pipeline:main]
pipeline = catch_errors cache keystone proxy-server
[app:proxy-server]
use = egg:swift#proxy
account_autocreate = true
[filter:keystone]
use = egg:keystone#tokenauth
auth_protocol = http
auth_host = 127.0.0.1
auth_port = 5001
admin_token = 999888777666
delay_auth_decision = 0
service_protocol = http
service_host = 127.0.0.1
service_port = 8100
service_pass = dTpw
[filter:cache]
use = egg:swift#memcache
set log_name = cache
[filter:catch_errors]
use = egg:swift#catch_errors
</literallayout>
</listitem>
</itemizedlist> </itemizedlist>

View File

@ -5,7 +5,7 @@
xmlns:svg="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg"
xmlns:html="http://www.w3.org/1999/xhtml" xmlns:html="http://www.w3.org/1999/xhtml"
version="5.0" version="5.0"
> xml:id="openstack-identity-starter-guide">
<title>OpenStack Identity Starter Guide</title> <title>OpenStack Identity Starter Guide</title>
<info> <info>
<author> <author>
@ -24,7 +24,7 @@
</copyright> </copyright>
<releaseinfo>trunk</releaseinfo> <releaseinfo>trunk</releaseinfo>
<productname>OpenStack Identity Service</productname> <productname>OpenStack Identity Service</productname>
<pubdate>2011-09-22</pubdate> <pubdate>2011-09-28</pubdate>
<legalnotice role="apache2"> <legalnotice role="apache2">
<annotation> <annotation>
<remark>Copyright details are filled in by the template.</remark> <remark>Copyright details are filled in by the template.</remark>