From ccac650f41cc8241c6b055b801ced940634b5e88 Mon Sep 17 00:00:00 2001 From: "Ian Y. Choi" Date: Thu, 4 May 2017 01:08:47 +0200 Subject: [PATCH] [upstream] systemd instead of screen for DevStack This updates the code-devstack slides to explain how to use systemd instead of screen. It notes that sceen is now deprecated. The exercise has been updated to use systemd instead of screen. Change-Id: Ie63249c98044b90bd64aa19a730792f26a2f7e3f Co-Authored-By: Mars Toktonaliev Co-Authored-By: Jay S. Bryant --- .../source/slides/code-devstack.rst | 55 ++++++++++++------- 1 file changed, 34 insertions(+), 21 deletions(-) diff --git a/doc/upstream-training/source/slides/code-devstack.rst b/doc/upstream-training/source/slides/code-devstack.rst index c41eb17c..47f8c567 100644 --- a/doc/upstream-training/source/slides/code-devstack.rst +++ b/doc/upstream-training/source/slides/code-devstack.rst @@ -64,35 +64,28 @@ http://localhost/ .. image:: ./_assets/devstack-http-localhost.png :width: 100% -Using Linux 'screen' -==================== +Running services in DevStack +============================ -- Access the terminals the installed services are running in -- 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 `_ +- ``screen`` command was used to access the virtual terminals running the + installed services + + - ``screen`` use is now deprecated + - To use ``screen`` explicitly set ``USE_SCREEN=True`` option in + ``local.conf`` + +- More details: `Developing with Devstack `_ .. image:: ./_assets/devstack-screen.png :width: 90% :align: center -Exercise -======== - -- 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: + - Screen is going away in Queens + : http://lists.openstack.org/pipermail/openstack-dev/2017-May/116301.html + + - Useful screen commands: - List sessions: screen -ls - Connect: screen -R @@ -101,4 +94,24 @@ Exercise - Kill and restart a service: -c , to retrieve command - Disconnect: -a d +DevStack services with Systemd +============================== +- ``systemd`` is the replacement for ``screen`` +- Services in DevStack are running as ``systemd`` units named + devstack@$servicename.service +- Interact with services using commands like + ``sudo systemctl devstack@$servicename.service`` +- Follow logs with ``journalctl -f --unit devstack@$servicename.service`` +- More details: `Using Systemd in DevStack `_ + +Exercise +======== + +- Ensure you have the DevStack repository cloned to the VM where you + would like to use it +- Use ``systemctl status devstack@*`` to ensure devstack is running on your VM. + If it is not started, start it with ``systemctl start devstack@*`` +- Use the ``journalctl`` command to view output from your favorite service +- Ensure you can use commands like ``cinder`` or ``nova`` to interact with + the services running on your VM