cssoss team mailing list archive
-
cssoss team
-
Mailing list archive
-
Message #00101
[Merge] lp:~keyz182/openstackbook/essex into lp:~openstackbook/openstackbook/essex
Kieran Evans has proposed merging lp:~keyz182/openstackbook/essex into lp:~openstackbook/openstackbook/essex.
Requested reviews:
OpenStackBook Team (openstackbook)
Related bugs:
Bug #998408 in OpenStack Book: "Several Incomplete commands"
https://bugs.launchpad.net/openstackbook/+bug/998408
For more details, see:
https://code.launchpad.net/~keyz182/openstackbook/essex/+merge/105554
Fix for bug #998408
--
https://code.launchpad.net/~keyz182/openstackbook/essex/+merge/105554
Your team CSS OSS Team is subscribed to branch lp:~openstackbook/openstackbook/essex.
=== modified file 'Installation.xml'
--- Installation.xml 2012-05-10 09:40:49 +0000
+++ Installation.xml 2012-05-12 12:43:18 +0000
@@ -488,7 +488,7 @@
<programlisting>sudo nova-manage db sync</programlisting>
<para>Provide a range of IPs to be associated to the instances.</para>
<programlisting>
-nova-manage network create private --fixed_range_v4=192.168.4.32/27 --num_networks=1 --bridge=br100 --bridge_interface=eth1 --network_size=32
+sudo nova-manage network create private --fixed_range_v4=192.168.4.32/27 --num_networks=1 --bridge=br100 --bridge_interface=eth1 --network_size=32
</programlisting>
<para>Export the following environment variables.</para>
<programlisting>
@@ -521,7 +521,7 @@
sudo apt-get install openstack-dashboard
</programlisting>
<para>Restart apache with the following command:</para>
-<programlisting>service apache2 restart</programlisting>
+<programlisting>sudo service apache2 restart</programlisting>
<para>Open a browser and enter IP address of the server1. You should see the OpenStack Dashboard login prompt. Login with username 'admin' and password 'admin'. From the dashboard, you can create keypairs, create/edit security groups, raise new instances, attach volumes etc. which are explained in "OpenStack Dashboard" chapter.</para>
</section>
@@ -611,8 +611,8 @@
</programlisting>
<para>Append the following lines in /etc/rc.local just before "exit 0";. This will be run everytime the system starts.</para>
<programlisting>
-mkdir /run/swift
-chown swift.swift /run/swift
+sudo mkdir /run/swift
+sudo chown swift.swift /run/swift
</programlisting>
</section>
</section>
Follow ups