From 5a0abcc467fb1ab4fde5d7ea3716fa129fc8f416 Mon Sep 17 00:00:00 2001 From: "Jay S. Bryant" Date: Mon, 24 Apr 2017 14:30:45 -0500 Subject: [PATCH] [upstream] Add steps to checkout/configure/run DevStack The Demo Environment slides have an exercise to make sure that DevStack is checked out to the VM where they wish to run DevStack but have no instructions for doing so. I added a slide with the steps for cloning, configuring and running devstack. I also improved the wording of the exercise on the final slide. The details on the slide for using 'screen' were pretty light so I also added content there. Change-Id: I96a623323020a630d88d5f6d8659a6d49bd44ec7 --- .../source/slides/code-devstack.rst | 62 +++++++++++++++++-- 1 file changed, 56 insertions(+), 6 deletions(-) diff --git a/doc/upstream-training/source/slides/code-devstack.rst b/doc/upstream-training/source/slides/code-devstack.rst index 5cc847bd..42749b22 100644 --- a/doc/upstream-training/source/slides/code-devstack.rst +++ b/doc/upstream-training/source/slides/code-devstack.rst @@ -23,18 +23,49 @@ DevStack - Documentation: http://docs.openstack.org/developer/devstack/ +DevStack Clone and Setup +======================== +- Clone DevStack to your vm + +.. code-block:: console + + git clone https://github.com/openstack-dev/devstack + +- Make any local configurations changes (set passwords, IP addresses, etc.) + +.. code-block:: console + + cd ./devstack + cp ./samples/local.conf . + vi ./local.conf + +- Run DevStack + +.. code-block:: console + + ./stack.sh + +.. note:: + + - DevStack should already be installed in the VM image you downloaded. + These instructions are provided for future reference in the case that + students need to start from scratch. + http://localhost/ ================= +- After DevStack is run Horizon is accessible via localhost + .. image:: ./_assets/devstack-http-localhost.png :width: 100% -Service terminals -================= +Using Linux 'screen' +==================== -- Using Linux 'screen' - Access the terminals the installed services are running in -- Use command 'screen -x' to see the running services +- Use command 'screen -ls' to see the running screen sessions +- Use command 'screen -R ' or 'screen -C stack-screenrc' to + attach to or start a new session - For further commands see the `User's Manual `_ @@ -45,5 +76,24 @@ Service terminals Exercise ======== -- Ensure you have the DevStack repository cloned to the VM you would like to - use it +- Ensure you have the DevStack repository cloned to the VM where you + would like to use it +- Using the 'screen' command determine if there is a screen session running + in your VM. If there is, attach to it. If not, start a new session. +- Once attached to a screen session switch between the running services to + get to your favorite service and try stopping and restarting the service. +- Disconnect from your screen session and ensure it is still running in the + background. + +.. note:: + + - Commands needed: + + - List sessions: screen -ls + - Connect: screen -R + - Start a new session: screen -C devstack/stack-screenrc + - Move between services: -a n , -a p + - Kill and restart a service: -c , to retrieve command + - Disconnect: -a d + +