blob: 5a5a040b02cdafbce50bed8a1d02b1ce0e898255 [file] [log] [blame]
Jesse Andrewsba23cc72011-09-11 03:22:13 -07001#!/usr/bin/env bash
2
Dean Troyerc6c1d432012-03-27 20:59:22 -05003# ``stack.sh`` is an opinionated OpenStack developer installation. It
Chris Dente9a47502015-06-27 11:29:09 +00004# installs and configures various combinations of **Cinder**, **Glance**,
5# **Heat**, **Horizon**, **Keystone**, **Nova**, **Neutron**, and **Swift**
Jesse Andrewsba23cc72011-09-11 03:22:13 -07006
Brett Campbell27f29442014-02-19 18:23:16 -08007# This script's options can be changed by setting appropriate environment
8# variables. You can configure things like which git repositories to use,
9# services to enable, OS images to use, etc. Default values are located in the
10# ``stackrc`` file. If you are crafty you can run the script on multiple nodes
11# using shared settings for common resources (eg., mysql or rabbitmq) and build
12# a multi-node developer install.
Jesse Andrews782b9912011-10-02 16:53:21 -040013
Dean Troyer4a43b7b2012-08-28 17:43:40 -050014# To keep this script simple we assume you are running on a recent **Ubuntu**
Martin Falatic5bee0cd2015-01-23 14:10:33 -080015# (14.04 Trusty or newer), **Fedora** (F20 or newer), or **CentOS/RHEL**
16# (7 or newer) machine. (It may work on other platforms but support for those
17# platforms is left to those who added them to DevStack.) It should work in
Dean Troyerdc97cb72015-03-28 08:20:50 -050018# a VM or physical server. Additionally, we maintain a list of ``deb`` and
Martin Falatic5bee0cd2015-01-23 14:10:33 -080019# ``rpm`` dependencies and other configuration files in this repo.
Jesse Andrews24859062011-09-15 21:28:23 -070020
Jesse Andrews0e7e8972011-10-02 16:36:54 -040021# Learn more and get the most recent version at http://devstack.org
Jesse Andrews6edd17f2011-09-15 22:19:42 -070022
Ian Wienandf0247ed2015-07-09 15:49:16 +100023# Print the commands being run so that we can see the command that triggers
24# an error. It is also useful for following along as the install occurs.
25set -o xtrace
26
Jason Dunsmore4e971112013-04-10 10:17:40 -050027# Make sure custom grep options don't get in the way
28unset GREP_OPTIONS
29
Brett Campbell27f29442014-02-19 18:23:16 -080030# Make sure umask is sane
31umask 022
32
Angus Lees7df9d1b2014-07-21 15:35:34 +100033# Not all distros have sbin in PATH for regular users.
34PATH=$PATH:/usr/local/sbin:/usr/sbin:/sbin
35
Dean Troyerdc97cb72015-03-28 08:20:50 -050036# Keep track of the DevStack directory
Jesse Andrews51fb22e2011-10-19 09:24:17 -070037TOP_DIR=$(cd $(dirname "$0") && pwd)
38
Sean Dague53753292014-12-04 19:38:15 -050039# Check for uninitialized variables, a big cause of bugs
40NOUNSET=${NOUNSET:-}
41if [[ -n "$NOUNSET" ]]; then
42 set -o nounset
43fi
44
Matthew Treinish4af2afc2015-10-13 09:51:17 -040045# Set start of devstack timestamp
46DEVSTACK_START_TIME=$(date +%s)
Dean Troyerdc97cb72015-03-28 08:20:50 -050047
48# Configuration
49# =============
50
Dean Troyerd3bf9bd2014-07-25 10:20:19 -050051# Sanity Checks
52# -------------
53
54# Clean up last environment var cache
55if [[ -r $TOP_DIR/.stackenv ]]; then
56 rm $TOP_DIR/.stackenv
57fi
58
Dean Troyerdc97cb72015-03-28 08:20:50 -050059# ``stack.sh`` keeps the list of ``deb`` and ``rpm`` dependencies, config
Dean Troyerd3bf9bd2014-07-25 10:20:19 -050060# templates and other useful files in the ``files`` subdirectory
61FILES=$TOP_DIR/files
62if [ ! -d $FILES ]; then
63 die $LINENO "missing devstack/files"
64fi
65
66# ``stack.sh`` keeps function libraries here
Dean Troyerdc97cb72015-03-28 08:20:50 -050067# Make sure ``$TOP_DIR/inc`` directory is present
68if [ ! -d $TOP_DIR/inc ]; then
69 die $LINENO "missing devstack/inc"
70fi
71
72# ``stack.sh`` keeps project libraries here
Dean Troyerd3bf9bd2014-07-25 10:20:19 -050073# Make sure ``$TOP_DIR/lib`` directory is present
74if [ ! -d $TOP_DIR/lib ]; then
75 die $LINENO "missing devstack/lib"
76fi
77
Dean Troyerdc97cb72015-03-28 08:20:50 -050078# Check if run in POSIX shell
79if [[ "${POSIXLY_CORRECT}" == "y" ]]; then
Ian Wienand1afc28b2015-11-27 14:15:56 +110080 set +o xtrace
Dean Troyerdc97cb72015-03-28 08:20:50 -050081 echo "You are running POSIX compatibility mode, DevStack requires bash 4.2 or newer."
82 exit 1
83fi
84
Dean Troyerd3bf9bd2014-07-25 10:20:19 -050085# OpenStack is designed to be run as a non-root user; Horizon will fail to run
86# as **root** since Apache will not serve content from **root** user).
87# ``stack.sh`` must not be run as **root**. It aborts and suggests one course of
88# action to create a suitable user account.
89
90if [[ $EUID -eq 0 ]]; then
Ian Wienand1afc28b2015-11-27 14:15:56 +110091 set +o xtrace
92 echo "DevStack should be run as a user with sudo permissions, "
93 echo "not root."
94 echo "A \"stack\" user configured correctly can be created with:"
95 echo " $TOP_DIR/tools/create-stack-user.sh"
Dean Troyerd3bf9bd2014-07-25 10:20:19 -050096 exit 1
97fi
98
Sean Dague90dd2622015-11-10 12:22:03 -050099# OpenStack is designed to run at a system level, with system level
100# installation of python packages. It does not support running under a
101# virtual env, and will fail in really odd ways if you do this. Make
102# this explicit as it has come up on the mailing list.
103if [[ -n "$VIRTUAL_ENV" ]]; then
Ian Wienand1afc28b2015-11-27 14:15:56 +1100104 set +o xtrace
Sean Dague90dd2622015-11-10 12:22:03 -0500105 echo "You appear to be running under a python virtualenv."
Jordan Pittierc1750402015-11-12 11:03:20 +0100106 echo "DevStack does not support this, as we may break the"
Sean Dague90dd2622015-11-10 12:22:03 -0500107 echo "virtualenv you are currently in by modifying "
108 echo "external system-level components the virtualenv relies on."
Jordan Pittierc1750402015-11-12 11:03:20 +0100109 echo "We recommend you use a separate virtual-machine if "
Sean Dague90dd2622015-11-10 12:22:03 -0500110 echo "you are worried about DevStack taking over your system."
111 exit 1
112fi
113
Sean Dague56037e92015-10-08 12:27:07 -0400114# Provide a safety switch for devstack. If you do a lot of devstack,
115# on a lot of different environments, you sometimes run it on the
116# wrong box. This makes there be a way to prevent that.
117if [[ -e $HOME/.no-devstack ]]; then
Ian Wienand1afc28b2015-11-27 14:15:56 +1100118 set +o xtrace
Sean Dague56037e92015-10-08 12:27:07 -0400119 echo "You've marked this host as a no-devstack host, to save yourself from"
120 echo "running devstack accidentally. If this is in error, please remove the"
121 echo "~/.no-devstack file"
122 exit 1
123fi
Attila Fazekasd9de1192015-03-26 09:25:02 +0100124
Dean Troyerd3bf9bd2014-07-25 10:20:19 -0500125# Prepare the environment
126# -----------------------
127
Sean Dague53753292014-12-04 19:38:15 -0500128# Initialize variables:
129LAST_SPINNER_PID=""
130
Dean Troyer6563a3c2012-01-31 12:11:56 -0600131# Import common functions
Dean Troyerc6c1d432012-03-27 20:59:22 -0500132source $TOP_DIR/functions
Dean Troyer6563a3c2012-01-31 12:11:56 -0600133
Dean Troyer893e6632013-09-13 15:05:51 -0500134# Import config functions
Dean Troyerbf2ad702015-03-09 15:16:10 -0500135source $TOP_DIR/inc/meta-config
Dean Troyer893e6632013-09-13 15:05:51 -0500136
Dean Troyer8c2ce6e2015-02-18 14:47:54 -0600137# Import 'public' stack.sh functions
138source $TOP_DIR/lib/stack
139
Dean Troyerc6c1d432012-03-27 20:59:22 -0500140# Determine what system we are running on. This provides ``os_VENDOR``,
Ian Wienand7710e7f2014-08-27 16:15:32 +1000141# ``os_RELEASE``, ``os_PACKAGE``, ``os_CODENAME``
Dean Troyera9e0a482012-07-09 14:07:23 -0500142# and ``DISTRO``
143GetDistro
Jesse Andrews6edd17f2011-09-15 22:19:42 -0700144
Dean Troyerdc97cb72015-03-28 08:20:50 -0500145
Dean Troyer48352ee2012-12-12 12:50:38 -0600146# Global Settings
Dean Troyer0e8dced2014-07-25 10:33:21 -0500147# ---------------
Scott Moserf9da5082011-10-07 21:28:00 -0400148
Dean Troyer893e6632013-09-13 15:05:51 -0500149# Check for a ``localrc`` section embedded in ``local.conf`` and extract if
150# ``localrc`` does not already exist
151
152# Phase: local
153rm -f $TOP_DIR/.localrc.auto
Huan Xiecc6af3f2015-12-23 02:17:01 +0000154extract_localrc_section $TOP_DIR/local.conf $TOP_DIR/localrc $TOP_DIR/.localrc.auto
Dean Troyer893e6632013-09-13 15:05:51 -0500155
Dean Troyer1a6d4492013-06-03 16:47:36 -0500156# ``stack.sh`` is customizable by setting environment variables. Override a
157# default setting via export::
Scott Moserf9da5082011-10-07 21:28:00 -0400158#
Terry Wilson428af5a2012-11-01 16:12:39 -0400159# export DATABASE_PASSWORD=anothersecret
Scott Moserf9da5082011-10-07 21:28:00 -0400160# ./stack.sh
161#
Dean Troyer1a6d4492013-06-03 16:47:36 -0500162# or by setting the variable on the command line::
Scott Moserf9da5082011-10-07 21:28:00 -0400163#
Dean Troyer1a6d4492013-06-03 16:47:36 -0500164# DATABASE_PASSWORD=simple ./stack.sh
165#
Dean Troyerdc97cb72015-03-28 08:20:50 -0500166# Persistent variables can be placed in a ``local.conf`` file::
Scott Moserf9da5082011-10-07 21:28:00 -0400167#
Dean Troyerdc97cb72015-03-28 08:20:50 -0500168# [[local|localrc]]
Terry Wilson428af5a2012-11-01 16:12:39 -0400169# DATABASE_PASSWORD=anothersecret
170# DATABASE_USER=hellaroot
Scott Moserf9da5082011-10-07 21:28:00 -0400171#
172# We try to have sensible defaults, so you should be able to run ``./stack.sh``
Dean Troyerdc97cb72015-03-28 08:20:50 -0500173# in most cases. ``local.conf`` is not distributed with DevStack and will never
Dean Troyer4a43b7b2012-08-28 17:43:40 -0500174# be overwritten by a DevStack update.
Scott Moserf9da5082011-10-07 21:28:00 -0400175#
Dean Troyerdf0972c2012-03-07 17:31:03 -0600176# DevStack distributes ``stackrc`` which contains locations for the OpenStack
Dean Troyercc6b4432013-04-08 15:38:03 -0500177# repositories, branches to configure, and other configuration defaults.
Dean Troyerdc97cb72015-03-28 08:20:50 -0500178# ``stackrc`` sources the ``localrc`` section of ``local.conf`` to allow you to
179# safely override those settings.
Dean Troyer4a43b7b2012-08-28 17:43:40 -0500180
Dean Troyerbbafb1b2012-06-11 16:51:39 -0500181if [[ ! -r $TOP_DIR/stackrc ]]; then
Dean Troyer14fd9792014-07-25 10:34:11 -0500182 die $LINENO "missing $TOP_DIR/stackrc - did you grab more than just stack.sh?"
Dean Troyerbbafb1b2012-06-11 16:51:39 -0500183fi
184source $TOP_DIR/stackrc
Dean Troyerdf0972c2012-03-07 17:31:03 -0600185
Ian Wienandc973e6c2014-11-05 09:52:27 +1100186# Warn users who aren't on an explicitly supported distro, but allow them to
187# override check and attempt installation with ``FORCE=yes ./stack``
Attila Fazekas72b233c2016-06-01 16:43:07 +0200188if [[ ! ${DISTRO} =~ (trusty|wily|xenial|7.0|wheezy|sid|testing|jessie|f22|f23|f24|rhel7|kvmibm1) ]]; then
Ian Wienandc973e6c2014-11-05 09:52:27 +1100189 echo "WARNING: this script has not been tested on $DISTRO"
190 if [[ "$FORCE" != "yes" ]]; then
191 die $LINENO "If you wish to run this script anyway run with FORCE=yes"
192 fi
193fi
194
Shuichiro MAKIGAKI3710eec2014-08-28 19:07:09 +0900195# Check to see if we are already running DevStack
196# Note that this may fail if USE_SCREEN=False
197if type -p screen > /dev/null && screen -ls | egrep -q "[0-9]\.$SCREEN_NAME"; then
198 echo "You are already running a stack.sh session."
199 echo "To rejoin this session type 'screen -x stack'."
200 echo "To destroy this session, type './unstack.sh'."
201 exit 1
202fi
203
Dean Troyer4a43b7b2012-08-28 17:43:40 -0500204
Dean Troyer48352ee2012-12-12 12:50:38 -0600205# Local Settings
Dean Troyer4a43b7b2012-08-28 17:43:40 -0500206# --------------
207
Dean Troyer48352ee2012-12-12 12:50:38 -0600208# Make sure the proxy config is visible to sub-processes
209export_proxy_variables
Scott Moserf9da5082011-10-07 21:28:00 -0400210
Dean Troyerdc97cb72015-03-28 08:20:50 -0500211# Remove services which were negated in ``ENABLED_SERVICES``
Joe Gordon6fd28112012-11-13 16:55:41 -0800212# using the "-" prefix (e.g., "-rabbit") instead of
Doug Hellmannf04178f2012-07-05 17:10:03 -0400213# calling disable_service().
214disable_negated_services
Chmouel Boudjnahc4cd4142012-06-27 11:01:40 +0200215
Dean Troyera79617c2014-04-13 18:16:54 -0500216
Dean Troyerd3bf9bd2014-07-25 10:20:19 -0500217# Configure sudo
218# --------------
Dean Troyer9122e7b2011-10-17 14:07:11 -0500219
Dean Troyerdc97cb72015-03-28 08:20:50 -0500220# We're not as **root** so make sure ``sudo`` is available
Dean Troyer23f69d82013-10-04 12:35:24 -0500221is_package_installed sudo || install_package sudo
222
223# UEC images ``/etc/sudoers`` does not have a ``#includedir``, add one
224sudo grep -q "^#includedir.*/etc/sudoers.d" /etc/sudoers ||
225 echo "#includedir /etc/sudoers.d" | sudo tee -a /etc/sudoers
226
Sean Dagueb0160d02015-06-23 12:53:51 -0400227# Conditionally setup detailed logging for sudo
228if [[ -n "$LOG_SUDO" ]]; then
229 TEMPFILE=`mktemp`
230 echo "Defaults log_output" > $TEMPFILE
231 chmod 0440 $TEMPFILE
232 sudo chown root:root $TEMPFILE
233 sudo mv $TEMPFILE /etc/sudoers.d/00_logging
234fi
235
Dean Troyerdc97cb72015-03-28 08:20:50 -0500236# Set up DevStack sudoers
Dean Troyer23f69d82013-10-04 12:35:24 -0500237TEMPFILE=`mktemp`
238echo "$STACK_USER ALL=(root) NOPASSWD:ALL" >$TEMPFILE
Dean Troyerdc97cb72015-03-28 08:20:50 -0500239# Some binaries might be under ``/sbin`` or ``/usr/sbin``, so make sure sudo will
240# see them by forcing ``PATH``
Dean Troyer23f69d82013-10-04 12:35:24 -0500241echo "Defaults:$STACK_USER secure_path=/sbin:/usr/sbin:/usr/bin:/bin:/usr/local/sbin:/usr/local/bin" >> $TEMPFILE
Adam Gandelmanea2fcb52014-03-17 16:37:56 -0700242echo "Defaults:$STACK_USER !requiretty" >> $TEMPFILE
Dean Troyer23f69d82013-10-04 12:35:24 -0500243chmod 0440 $TEMPFILE
244sudo chown root:root $TEMPFILE
245sudo mv $TEMPFILE /etc/sudoers.d/50_stack_sh
246
Dean Troyer0e8dced2014-07-25 10:33:21 -0500247
248# Configure Distro Repositories
249# -----------------------------
Ian Wienand531aeb72014-02-28 11:24:29 +1100250
Dean Troyerdc97cb72015-03-28 08:20:50 -0500251# For Debian/Ubuntu make apt attempt to retry network ops on it's own
Sean Daguee83f7782014-06-23 08:11:05 -0400252if is_ubuntu; then
Chmouel Boudjnah9246d962014-06-30 12:52:51 +0000253 echo 'APT::Acquire::Retries "20";' | sudo tee /etc/apt/apt.conf.d/80retry >/dev/null
Sean Daguee83f7782014-06-23 08:11:05 -0400254fi
255
Ian Wienand531aeb72014-02-28 11:24:29 +1100256# Some distros need to add repos beyond the defaults provided by the vendor
257# to pick up required packages.
258
Ian Wienand95a9ff02015-11-12 14:49:20 +1100259function _install_epel_and_rdo {
Dean Troyerdc97cb72015-03-28 08:20:50 -0500260 # NOTE: We always remove and install latest -- some environments
Ian Wienanded077b22014-10-22 11:35:29 +1100261 # use snapshot images, and if EPEL version updates they break
262 # unless we update them to latest version.
263 if sudo yum repolist enabled epel | grep -q 'epel'; then
264 uninstall_package epel-release || true
265 fi
266
267 # This trick installs the latest epel-release from a bootstrap
268 # repo, then removes itself (as epel-release installed the
269 # "real" repo).
270 #
Dean Troyerdc97cb72015-03-28 08:20:50 -0500271 # You would think that rather than this, you could use
Ian Wienanded077b22014-10-22 11:35:29 +1100272 # $releasever directly in .repo file we create below. However
273 # RHEL gives a $releasever of "6Server" which breaks the path;
274 # see https://bugzilla.redhat.com/show_bug.cgi?id=1150759
Ian Wienanded077b22014-10-22 11:35:29 +1100275 cat <<EOF | sudo tee /etc/yum.repos.d/epel-bootstrap.repo
276[epel-bootstrap]
Ian Wienand3682b6d2014-10-08 15:37:23 +1100277name=Bootstrap EPEL
Attila Fazekas1f316be2015-01-26 16:39:57 +0100278mirrorlist=http://mirrors.fedoraproject.org/mirrorlist?repo=epel-7&arch=\$basearch
Ian Wienand3682b6d2014-10-08 15:37:23 +1100279failovermethod=priority
280enabled=0
281gpgcheck=0
282EOF
Noboru Iwamatsua67ef002015-02-27 13:34:12 +0900283 # Enable a bootstrap repo. It is removed after finishing
284 # the epel-release installation.
Matt Riedemann2f63da92015-06-21 09:02:59 -0700285 is_package_installed yum-utils || install_package yum-utils
Noboru Iwamatsua67ef002015-02-27 13:34:12 +0900286 sudo yum-config-manager --enable epel-bootstrap
287 yum_install epel-release || \
Ian Wienanded077b22014-10-22 11:35:29 +1100288 die $LINENO "Error installing EPEL repo, cannot continue"
Ian Wienanded077b22014-10-22 11:35:29 +1100289 sudo rm -f /etc/yum.repos.d/epel-bootstrap.repo
Ian Wienand531aeb72014-02-28 11:24:29 +1100290
291 # ... and also optional to be enabled
Attila Fazekas1f316be2015-01-26 16:39:57 +0100292 sudo yum-config-manager --enable rhel-7-server-optional-rpms
Zhang Jinnanfc994262014-12-14 19:19:53 -0500293
Ian Wienand95a9ff02015-11-12 14:49:20 +1100294 # install the lastest RDO
Yusuke Hayashi6e187212016-01-22 00:08:31 +0900295 is_package_installed rdo-release || yum_install https://rdoproject.org/repos/rdo-release.rpm
Zhang Jinnanfc994262014-12-14 19:19:53 -0500296
Wiekus Beukesec47bc12015-03-19 08:20:38 -0700297 if is_oraclelinux; then
298 sudo yum-config-manager --enable ol7_optional_latest ol7_addons ol7_MySQL56
299 fi
Ian Wienand95a9ff02015-11-12 14:49:20 +1100300}
Wiekus Beukesec47bc12015-03-19 08:20:38 -0700301
Dean Troyer0e8dced2014-07-25 10:33:21 -0500302
303# Configure Target Directories
304# ----------------------------
305
306# Destination path for installation ``DEST``
307DEST=${DEST:-/opt/stack}
Dean Troyer23f69d82013-10-04 12:35:24 -0500308
Dean Troyere26232b2012-06-27 17:55:15 -0500309# Create the destination directory and ensure it is writable by the user
Bob Ball376b6312013-07-29 13:10:25 +0100310# and read/executable by everybody for daemons (e.g. apache run for horizon)
Dean Troyere26232b2012-06-27 17:55:15 -0500311sudo mkdir -p $DEST
Doug Hellmanne7002672013-09-05 08:10:07 -0400312safe_chown -R $STACK_USER $DEST
313safe_chmod 0755 $DEST
Dean Troyere26232b2012-06-27 17:55:15 -0500314
Ihar Hrachyshka09a3e712016-01-13 11:35:12 +0100315# Destination path for devstack logs
316if [[ -n ${LOGDIR:-} ]]; then
317 mkdir -p $LOGDIR
318fi
319
Dean Troyer0e8dced2014-07-25 10:33:21 -0500320# Destination path for service data
321DATA_DIR=${DATA_DIR:-${DEST}/data}
322sudo mkdir -p $DATA_DIR
323safe_chown -R $STACK_USER $DATA_DIR
324
325# Configure proper hostname
Ben Nemec3ee52c82013-12-12 19:26:12 +0000326# Certain services such as rabbitmq require that the local hostname resolves
327# correctly. Make sure it exists in /etc/hosts so that is always true.
328LOCAL_HOSTNAME=`hostname -s`
329if [ -z "`grep ^127.0.0.1 /etc/hosts | grep $LOCAL_HOSTNAME`" ]; then
330 sudo sed -i "s/\(^127.0.0.1.*\)/\1 $LOCAL_HOSTNAME/" /etc/hosts
331fi
332
Ihar Hrachyshka09a3e712016-01-13 11:35:12 +0100333# If you have all the repos installed above already setup (e.g. a CI
334# situation where they are on your image) you may choose to skip this
335# to speed things up
336SKIP_EPEL_INSTALL=$(trueorfalse False SKIP_EPEL_INSTALL)
337
Ian Wienandbda194a2016-05-18 10:42:56 +1000338# If we have /etc/nodepool/provider assume we're on a OpenStack CI
339# node, where EPEL is already pointing at our internal mirror and RDO
340# is pre-installed.
341if [[ -f /etc/nodepool/provider ]]; then
342 SKIP_EPEL_INSTALL=True
343fi
344
Ihar Hrachyshka09a3e712016-01-13 11:35:12 +0100345if is_fedora && [[ $DISTRO == "rhel7" ]] && \
346 [[ ${SKIP_EPEL_INSTALL} != True ]]; then
347 _install_epel_and_rdo
348fi
349
Attila Fazekasadcf40d2015-11-05 09:47:38 +0100350# Ensure python is installed
351# --------------------------
352is_package_installed python || install_package python
353
Ian Wienand531aeb72014-02-28 11:24:29 +1100354
Dean Troyerffd17682014-08-02 16:07:03 -0500355# Configure Logging
356# -----------------
357
358# Set up logging level
Sean Dague53753292014-12-04 19:38:15 -0500359VERBOSE=$(trueorfalse True VERBOSE)
Dean Troyerffd17682014-08-02 16:07:03 -0500360
361# Draw a spinner so the user knows something is happening
362function spinner {
363 local delay=0.75
364 local spinstr='/-\|'
365 printf "..." >&3
366 while [ true ]; do
367 local temp=${spinstr#?}
368 printf "[%c]" "$spinstr" >&3
369 local spinstr=$temp${spinstr%"$temp"}
370 sleep $delay
371 printf "\b\b\b" >&3
372 done
373}
374
375function kill_spinner {
376 if [ ! -z "$LAST_SPINNER_PID" ]; then
377 kill >/dev/null 2>&1 $LAST_SPINNER_PID
378 printf "\b\b\bdone\n" >&3
379 fi
380}
381
382# Echo text to the log file, summary log file and stdout
383# echo_summary "something to say"
384function echo_summary {
385 if [[ -t 3 && "$VERBOSE" != "True" ]]; then
386 kill_spinner
387 echo -n -e $@ >&6
388 spinner &
389 LAST_SPINNER_PID=$!
390 else
391 echo -e $@ >&6
392 fi
393}
394
395# Echo text only to stdout, no log files
396# echo_nolog "something not for the logs"
397function echo_nolog {
398 echo $@ >&3
399}
400
Dean Troyerffd17682014-08-02 16:07:03 -0500401# Set up logging for ``stack.sh``
402# Set ``LOGFILE`` to turn on logging
403# Append '.xxxxxxxx' to the given name to maintain history
404# where 'xxxxxxxx' is a representation of the date the file was created
405TIMESTAMP_FORMAT=${TIMESTAMP_FORMAT:-"%F-%H%M%S"}
Dean Troyerdde41d02014-12-09 17:47:57 -0600406LOGDAYS=${LOGDAYS:-7}
407CURRENT_LOG_TIME=$(date "+$TIMESTAMP_FORMAT")
Dean Troyerffd17682014-08-02 16:07:03 -0500408
409if [[ -n "$LOGFILE" ]]; then
Dean Troyerad5cc982014-12-10 16:35:32 -0600410 # Clean up old log files. Append '.*' to the user-specified
411 # ``LOGFILE`` to match the date in the search template.
Mikhail S Medvedevfc9cc962015-01-20 11:04:48 -0600412 LOGFILE_DIR="${LOGFILE%/*}" # dirname
413 LOGFILE_NAME="${LOGFILE##*/}" # basename
414 mkdir -p $LOGFILE_DIR
415 find $LOGFILE_DIR -maxdepth 1 -name $LOGFILE_NAME.\* -mtime +$LOGDAYS -exec rm {} \;
Dean Troyerffd17682014-08-02 16:07:03 -0500416 LOGFILE=$LOGFILE.${CURRENT_LOG_TIME}
Dean Troyerad5cc982014-12-10 16:35:32 -0600417 SUMFILE=$LOGFILE.summary.${CURRENT_LOG_TIME}
Dean Troyerffd17682014-08-02 16:07:03 -0500418
419 # Redirect output according to config
420
421 # Set fd 3 to a copy of stdout. So we can set fd 1 without losing
422 # stdout later.
423 exec 3>&1
424 if [[ "$VERBOSE" == "True" ]]; then
425 # Set fd 1 and 2 to write the log file
426 exec 1> >( $TOP_DIR/tools/outfilter.py -v -o "${LOGFILE}" ) 2>&1
427 # Set fd 6 to summary log file
428 exec 6> >( $TOP_DIR/tools/outfilter.py -o "${SUMFILE}" )
429 else
430 # Set fd 1 and 2 to primary logfile
431 exec 1> >( $TOP_DIR/tools/outfilter.py -o "${LOGFILE}" ) 2>&1
432 # Set fd 6 to summary logfile and stdout
433 exec 6> >( $TOP_DIR/tools/outfilter.py -v -o "${SUMFILE}" >&3 )
434 fi
435
436 echo_summary "stack.sh log $LOGFILE"
437 # Specified logfile name always links to the most recent log
Mikhail S Medvedevfc9cc962015-01-20 11:04:48 -0600438 ln -sf $LOGFILE $LOGFILE_DIR/$LOGFILE_NAME
439 ln -sf $SUMFILE $LOGFILE_DIR/$LOGFILE_NAME.summary
Dean Troyerffd17682014-08-02 16:07:03 -0500440else
441 # Set up output redirection without log files
442 # Set fd 3 to a copy of stdout. So we can set fd 1 without losing
443 # stdout later.
444 exec 3>&1
445 if [[ "$VERBOSE" != "True" ]]; then
446 # Throw away stdout and stderr
447 exec 1>/dev/null 2>&1
448 fi
449 # Always send summary fd to original stdout
450 exec 6> >( $TOP_DIR/tools/outfilter.py -v >&3 )
451fi
452
453# Set up logging of screen windows
454# Set ``SCREEN_LOGDIR`` to turn on logging of screen windows to the
Wei Jiangang2af69152015-09-08 18:03:22 +0800455# directory specified in ``SCREEN_LOGDIR``, we will log to the file
Dean Troyerffd17682014-08-02 16:07:03 -0500456# ``screen-$SERVICE_NAME-$TIMESTAMP.log`` in that dir and have a link
457# ``screen-$SERVICE_NAME.log`` to the latest log file.
458# Logs are kept for as long specified in ``LOGDAYS``.
Dean Troyerdde41d02014-12-09 17:47:57 -0600459# This is deprecated....logs go in ``LOGDIR``, only symlinks will be here now.
Dean Troyerffd17682014-08-02 16:07:03 -0500460if [[ -n "$SCREEN_LOGDIR" ]]; then
461
462 # We make sure the directory is created.
463 if [[ -d "$SCREEN_LOGDIR" ]]; then
464 # We cleanup the old logs
465 find $SCREEN_LOGDIR -maxdepth 1 -name screen-\*.log -mtime +$LOGDAYS -exec rm {} \;
466 else
467 mkdir -p $SCREEN_LOGDIR
468 fi
469fi
470
Einst Crazy9e11e092015-09-29 20:01:44 +0800471# Basic test for ``$DEST`` path permissions (fatal on error unless skipped)
472check_path_perm_sanity ${DEST}
Dean Troyerffd17682014-08-02 16:07:03 -0500473
474# Configure Error Traps
475# ---------------------
476
477# Kill background processes on exit
478trap exit_trap EXIT
479function exit_trap {
480 local r=$?
481 jobs=$(jobs -p)
482 # Only do the kill when we're logging through a process substitution,
483 # which currently is only to verbose logfile
484 if [[ -n $jobs && -n "$LOGFILE" && "$VERBOSE" == "True" ]]; then
485 echo "exit_trap: cleaning up child processes"
486 kill 2>&1 $jobs
487 fi
488
489 # Kill the last spinner process
490 kill_spinner
491
492 if [[ $r -ne 0 ]]; then
493 echo "Error on exit"
Matthew Treinish4af2afc2015-10-13 09:51:17 -0400494 generate-subunit $DEVSTACK_START_TIME $SECONDS 'fail' >> ${SUBUNIT_OUTPUT}
Dean Troyerffd17682014-08-02 16:07:03 -0500495 if [[ -z $LOGDIR ]]; then
496 $TOP_DIR/tools/worlddump.py
497 else
498 $TOP_DIR/tools/worlddump.py -d $LOGDIR
499 fi
Matthew Treinish4af2afc2015-10-13 09:51:17 -0400500 else
501 generate-subunit $DEVSTACK_START_TIME $SECONDS >> ${SUBUNIT_OUTPUT}
Dean Troyerffd17682014-08-02 16:07:03 -0500502 fi
503
504 exit $r
505}
506
507# Exit on any errors so that errors don't compound
508trap err_trap ERR
509function err_trap {
510 local r=$?
511 set +o xtrace
512 if [[ -n "$LOGFILE" ]]; then
513 echo "${0##*/} failed: full log in $LOGFILE"
514 else
515 echo "${0##*/} failed"
516 fi
517 exit $r
518}
519
520# Begin trapping error exit codes
521set -o errexit
522
Dean Troyerdc97cb72015-03-28 08:20:50 -0500523# Print the kernel version
524uname -a
525
Jamie Lennoxbd24a8d2013-09-20 16:26:42 +1000526# Reset the bundle of CA certificates
527SSL_BUNDLE_FILE="$DATA_DIR/ca-bundle.pem"
528rm -f $SSL_BUNDLE_FILE
529
Dean Troyer0e8dced2014-07-25 10:33:21 -0500530# Import common services (database, message queue) configuration
531source $TOP_DIR/lib/database
532source $TOP_DIR/lib/rpc_backend
533
Dean Troyerdc97cb72015-03-28 08:20:50 -0500534# Service to enable with SSL if ``USE_SSL`` is True
Sergey Lukjanov3381e092015-07-01 14:20:23 +0300535SSL_ENABLED_SERVICES="key,nova,cinder,glance,s-proxy,neutron"
Rob Crittenden18d47782014-03-19 17:47:42 -0400536
537if is_service_enabled tls-proxy && [ "$USE_SSL" == "True" ]; then
538 die $LINENO "tls-proxy and SSL are mutually exclusive"
539fi
Dean Troyerd81a0272012-08-31 18:04:55 -0500540
541# Configure Projects
542# ==================
543
Bharat Kumar Kobagana7b9341e2015-03-30 11:58:10 +0530544# Clone all external plugins
545fetch_plugins
546
Wei Jiangang2af69152015-09-08 18:03:22 +0800547# Plugin Phase 0: override_defaults - allow plugins to override
Sean Dague6e275e12015-03-26 05:54:28 -0400548# defaults before other services are run
549run_phase override_defaults
550
Dean Troyerdc97cb72015-03-28 08:20:50 -0500551# Import Apache functions
zhang-hared98a5d02013-06-21 18:18:02 +0800552source $TOP_DIR/lib/apache
Brant Knudson0049c0c2014-01-16 18:16:48 -0600553
554# Import TLS functions
Dean Troyerc83a7e12012-11-29 11:47:58 -0600555source $TOP_DIR/lib/tls
Brant Knudson0049c0c2014-01-16 18:16:48 -0600556
557# Source project function libraries
Sean Dague0392a102013-07-31 13:07:45 -0400558source $TOP_DIR/lib/infra
Sean Dague1b6b5312013-07-31 06:46:34 -0400559source $TOP_DIR/lib/oslo
Daniel Genind4708672014-10-31 15:01:29 -0400560source $TOP_DIR/lib/lvm
Sean Dagueb562e6a2012-11-19 16:00:01 -0500561source $TOP_DIR/lib/horizon
Dean Troyerd81a0272012-08-31 18:04:55 -0500562source $TOP_DIR/lib/keystone
Dean Troyer73f6f252012-09-17 11:22:21 -0500563source $TOP_DIR/lib/glance
Dean Troyerbf67c192012-09-21 15:09:37 -0500564source $TOP_DIR/lib/nova
Dean Troyerd81a0272012-08-31 18:04:55 -0500565source $TOP_DIR/lib/cinder
Attila Fazekasece6a332012-11-29 14:19:41 +0100566source $TOP_DIR/lib/swift
Dean Troyerd81a0272012-08-31 18:04:55 -0500567source $TOP_DIR/lib/heat
Sean M. Collins2a242512016-05-03 09:03:09 -0400568source $TOP_DIR/lib/neutron
Dean Troyer5a9739a2015-03-25 11:33:51 -0500569source $TOP_DIR/lib/neutron-legacy
Brad Topolf127e2f2013-01-22 10:17:50 -0600570source $TOP_DIR/lib/ldap
Joe Gordone0b08d02014-08-20 00:34:55 -0700571source $TOP_DIR/lib/dstat
Sean Dague5cad4d32015-11-10 14:39:07 -0500572source $TOP_DIR/lib/dlm
Patrick East657cdcd2016-07-01 16:08:15 -0700573source $TOP_DIR/lib/os_brick
Dean Troyerd81a0272012-08-31 18:04:55 -0500574
Dean Troyercdf3d762013-10-15 09:42:43 -0500575# Extras Source
576# --------------
577
578# Phase: source
Sean Dague2c65e712014-12-18 09:44:56 -0500579run_phase source
Dean Troyercdf3d762013-10-15 09:42:43 -0500580
Chris Dentc6d47012015-10-09 14:57:05 +0000581
Dean Troyerb7490da2013-03-18 16:07:56 -0500582# Interactive Configuration
583# -------------------------
584
585# Do all interactive config up front before the logging spew begins
James E. Blair213c4162012-11-06 09:38:36 +0100586
Anthony Young7a549f42011-10-12 07:13:13 +0000587# Generic helper to configure passwords
588function read_password {
Ian Wienand523f4882015-10-13 11:03:03 +1100589 local xtrace
590 xtrace=$(set +o | grep xtrace)
Anthony Young7a549f42011-10-12 07:13:13 +0000591 set +o xtrace
592 var=$1; msg=$2
593 pw=${!var}
594
Sahid Orentino Ferdjaoui9e032c22014-02-10 11:36:25 +0100595 if [[ -f $RC_DIR/localrc ]]; then
596 localrc=$TOP_DIR/localrc
597 else
Ian Wienand975f4202015-10-14 15:12:32 +1100598 localrc=$TOP_DIR/.localrc.password
Sahid Orentino Ferdjaoui9e032c22014-02-10 11:36:25 +0100599 fi
Anthony Young6015c822011-10-12 07:17:11 +0000600
Anthony Young7a549f42011-10-12 07:13:13 +0000601 # If the password is not defined yet, proceed to prompt user for a password.
602 if [ ! $pw ]; then
603 # If there is no localrc file, create one
Anthony Youngb4db2252011-10-12 14:08:08 -0700604 if [ ! -e $localrc ]; then
605 touch $localrc
Anthony Young7a549f42011-10-12 07:13:13 +0000606 fi
607
Ian Wienand975f4202015-10-14 15:12:32 +1100608 # Presumably if we got this far it can only be that our
609 # localrc is missing the required password. Prompt user for a
610 # password and write to localrc.
611
Anthony Youngb4db2252011-10-12 14:08:08 -0700612 echo ''
613 echo '################################################################################'
614 echo $msg
615 echo '################################################################################'
Ian Wienand975f4202015-10-14 15:12:32 +1100616 echo "This value will be written to ${localrc} file so you don't have to enter it "
Dean Troyer4e6a2b72011-12-29 17:27:45 -0600617 echo "again. Use only alphanumeric characters."
Anthony Youngb4db2252011-10-12 14:08:08 -0700618 echo "If you leave this blank, a random default value will be used."
Dean Troyer4e6a2b72011-12-29 17:27:45 -0600619 pw=" "
620 while true; do
621 echo "Enter a password now:"
622 read -e $var
623 pw=${!var}
624 [[ "$pw" = "`echo $pw | tr -cd [:alnum:]`" ]] && break
625 echo "Invalid chars in password. Try again:"
626 done
Anthony Youngb4db2252011-10-12 14:08:08 -0700627 if [ ! $pw ]; then
Attila Fazekasf71b5002014-05-28 09:52:22 +0200628 pw=$(generate_hex_string 10)
Anthony Young7a549f42011-10-12 07:13:13 +0000629 fi
Anthony Youngb4db2252011-10-12 14:08:08 -0700630 eval "$var=$pw"
631 echo "$var=$pw" >> $localrc
Anthony Young7a549f42011-10-12 07:13:13 +0000632 fi
Ian Wienand523f4882015-10-13 11:03:03 +1100633
634 # restore previous xtrace value
635 $xtrace
Anthony Young7a549f42011-10-12 07:13:13 +0000636}
637
Dean Troyer13dc5cc2012-03-27 14:50:45 -0500638
Dean Troyerb9182d62012-11-07 12:31:34 -0600639# Database Configuration
Dean Troyerdc97cb72015-03-28 08:20:50 -0500640# ----------------------
Dean Troyerb9182d62012-11-07 12:31:34 -0600641
Dean Troyerdc97cb72015-03-28 08:20:50 -0500642# To select between database backends, add the following to ``local.conf``:
Terry Wilson428af5a2012-11-01 16:12:39 -0400643#
Dean Troyerafc29fe2013-02-07 15:56:24 -0600644# disable_service mysql
645# enable_service postgresql
Terry Wilson428af5a2012-11-01 16:12:39 -0400646#
Dean Troyerafc29fe2013-02-07 15:56:24 -0600647# The available database backends are listed in ``DATABASE_BACKENDS`` after
648# ``lib/database`` is sourced. ``mysql`` is the default.
Terry Wilson428af5a2012-11-01 16:12:39 -0400649
Daniel P. Berrangea99e5c92015-02-11 17:25:32 +0000650initialize_database_backends && echo "Using $DATABASE_TYPE database backend" || echo "No database enabled"
Terry Wilson428af5a2012-11-01 16:12:39 -0400651
Dean Troyerb9182d62012-11-07 12:31:34 -0600652
Dean Troyerb7490da2013-03-18 16:07:56 -0500653# Queue Configuration
Dean Troyerdc97cb72015-03-28 08:20:50 -0500654# -------------------
Jesse Andrews782b9912011-10-02 16:53:21 -0400655
Anthony Younga8416442011-09-13 20:07:44 -0700656# Rabbit connection info
Dean Troyerdc97cb72015-03-28 08:20:50 -0500657# In multi node DevStack, second node needs ``RABBIT_USERID``, but rabbit
Joe Gordonf6287c22014-12-16 13:32:41 -0800658# isn't enabled.
659RABBIT_USERID=${RABBIT_USERID:-stackrabbit}
Russell Bryant4a221452012-03-13 13:44:12 -0400660if is_service_enabled rabbit; then
Bob Balle309e5a2014-04-01 16:28:36 +0100661 RABBIT_HOST=${RABBIT_HOST:-$SERVICE_HOST}
Russell Bryant4a221452012-03-13 13:44:12 -0400662 read_password RABBIT_PASSWORD "ENTER A PASSWORD TO USE FOR RABBIT."
663fi
Jesse Andrewsba23cc72011-09-11 03:22:13 -0700664
Dean Troyerb7490da2013-03-18 16:07:56 -0500665
666# Keystone
Dean Troyerdc97cb72015-03-28 08:20:50 -0500667# --------
Dean Troyerb7490da2013-03-18 16:07:56 -0500668
Dean Troyer5ce44cd2015-02-12 22:18:33 -0600669if is_service_enabled keystone; then
Dean Troyerb7490da2013-03-18 16:07:56 -0500670 # Services authenticate to Identity with servicename/``SERVICE_PASSWORD``
671 read_password SERVICE_PASSWORD "ENTER A SERVICE_PASSWORD TO USE FOR THE SERVICE AUTHENTICATION."
672 # Horizon currently truncates usernames and passwords at 20 characters
673 read_password ADMIN_PASSWORD "ENTER A PASSWORD TO USE FOR HORIZON AND KEYSTONE (20 CHARS OR LESS)."
674
675 # Keystone can now optionally install OpenLDAP by enabling the ``ldap``
Dean Troyerdc97cb72015-03-28 08:20:50 -0500676 # service in ``local.conf`` (e.g. ``enable_service ldap``).
Dean Troyerb7490da2013-03-18 16:07:56 -0500677 # To clean out the Keystone contents in OpenLDAP set ``KEYSTONE_CLEAR_LDAP``
Dean Troyerdc97cb72015-03-28 08:20:50 -0500678 # to ``yes`` (e.g. ``KEYSTONE_CLEAR_LDAP=yes``) in ``local.conf``. To enable the
Dean Troyerb7490da2013-03-18 16:07:56 -0500679 # Keystone Identity Driver (``keystone.identity.backends.ldap.Identity``)
680 # set ``KEYSTONE_IDENTITY_BACKEND`` to ``ldap`` (e.g.
Dean Troyerdc97cb72015-03-28 08:20:50 -0500681 # ``KEYSTONE_IDENTITY_BACKEND=ldap``) in ``local.conf``.
Dean Troyerb7490da2013-03-18 16:07:56 -0500682
Dean Troyerdc97cb72015-03-28 08:20:50 -0500683 # Only request LDAP password if the service is enabled
Dean Troyerb7490da2013-03-18 16:07:56 -0500684 if is_service_enabled ldap; then
685 read_password LDAP_PASSWORD "ENTER A PASSWORD TO USE FOR LDAP"
Chmouel Boudjnah6ae9ea52012-07-05 06:50:51 +0000686 fi
Dean Troyerb7490da2013-03-18 16:07:56 -0500687fi
688
689
690# Swift
Dean Troyerdc97cb72015-03-28 08:20:50 -0500691# -----
Dean Troyerb7490da2013-03-18 16:07:56 -0500692
693if is_service_enabled s-proxy; then
Chmouel Boudjnah77b0e1d2012-02-29 16:55:43 +0000694 # We only ask for Swift Hash if we have enabled swift service.
Dean Troyerb9182d62012-11-07 12:31:34 -0600695 # ``SWIFT_HASH`` is a random unique string for a swift cluster that
Chmouel Boudjnahb2857e42011-11-03 16:19:14 +0100696 # can never change.
697 read_password SWIFT_HASH "ENTER A RANDOM SWIFT HASH."
Jim Rollenhagenabbb0e92014-08-05 18:01:48 +0000698
699 if [[ -z "$SWIFT_TEMPURL_KEY" ]] && [[ "$SWIFT_ENABLE_TEMPURLS" == "True" ]]; then
700 read_password SWIFT_TEMPURL_KEY "ENTER A KEY FOR SWIFT TEMPURLS."
701 fi
Chmouel Boudjnahb2857e42011-11-03 16:19:14 +0100702fi
Vishvananda Ishaya5f039322011-11-05 16:12:20 -0700703
Dean Troyer68162342015-05-13 15:41:03 -0500704# Save configuration values
705save_stackenv $LINENO
706
Dean Troyerdf0972c2012-03-07 17:31:03 -0600707
Jesse Andrews30f68e92011-09-13 00:59:54 -0700708# Install Packages
Jesse Andrewsd74257d2011-09-13 01:24:50 -0700709# ================
Dean Troyer7d28a0e2012-06-27 17:55:52 -0500710
Dean Troyer4a43b7b2012-08-28 17:43:40 -0500711# OpenStack uses a fair number of other projects.
Jesse Andrews30f68e92011-09-13 00:59:54 -0700712
Shashank Hegde2d91fe82015-08-18 18:33:55 -0700713# Bring down global requirements before any use of pip_install. This is
714# necessary to ensure that the constraints file is in place before we
715# attempt to apply any constraints to pip installs.
716git_clone $REQUIREMENTS_REPO $REQUIREMENTS_DIR $REQUIREMENTS_BRANCH
717
Dean Troyer7d28a0e2012-06-27 17:55:52 -0500718# Install package requirements
Dean Troyer48352ee2012-12-12 12:50:38 -0600719# Source it so the entire environment is available
Dean Troyer7903b792012-09-13 17:16:12 -0500720echo_summary "Installing package prerequisites"
Dean Troyer48352ee2012-12-12 12:50:38 -0600721source $TOP_DIR/tools/install_prereqs.sh
Monty Taylor47f02062012-07-26 11:09:24 -0500722
Dean Troyerdc97cb72015-03-28 08:20:50 -0500723# Configure an appropriate Python environment
Arata Notsu8b5d3cf2013-10-17 21:42:49 +0900724if [[ "$OFFLINE" != "True" ]]; then
Sean Dague53753292014-12-04 19:38:15 -0500725 PYPI_ALTERNATIVE_URL=${PYPI_ALTERNATIVE_URL:-""} $TOP_DIR/tools/install_pip.sh
Arata Notsu8b5d3cf2013-10-17 21:42:49 +0900726fi
Dean Troyer1a6d4492013-06-03 16:47:36 -0500727
Matthew Treinish4af2afc2015-10-13 09:51:17 -0400728# Install subunit for the subunit output stream
729pip_install -U os-testr
730
Joe Gordon981ed292014-12-15 21:11:20 -0800731TRACK_DEPENDS=${TRACK_DEPENDS:-False}
732
Dean Troyerdc97cb72015-03-28 08:20:50 -0500733# Install Python packages into a virtualenv so that we can track them
Joe Gordon981ed292014-12-15 21:11:20 -0800734if [[ $TRACK_DEPENDS = True ]]; then
735 echo_summary "Installing Python packages into a virtualenv $DEST/.venv"
736 pip_install -U virtualenv
737
738 rm -rf $DEST/.venv
739 virtualenv --system-site-packages $DEST/.venv
740 source $DEST/.venv/bin/activate
741 $DEST/.venv/bin/pip freeze > $DEST/requires-pre-pip
742fi
743
Gael Chamoulaudd3121f62014-07-24 23:53:02 +0200744# Do the ugly hacks for broken packages and distros
Dean Troyer04a35112014-08-15 14:03:52 -0500745source $TOP_DIR/tools/fixup_stuff.sh
Dean Troyer9acc12a2013-08-09 15:09:31 -0500746
Dean Troyer5c3a63e2014-07-09 11:27:42 -0500747
Dean Troyerb1d8e8e2015-02-16 13:58:35 -0600748# Virtual Environment
749# -------------------
750
Yuki Nishiwaki0a9d03d2015-05-08 16:29:55 +0900751# Install required infra support libraries
752install_infra
753
Dean Troyer5c3a63e2014-07-09 11:27:42 -0500754# Extras Pre-install
755# ------------------
Dean Troyer5c3a63e2014-07-09 11:27:42 -0500756# Phase: pre-install
Sean Dague2c65e712014-12-18 09:44:56 -0500757run_phase stack pre-install
Dean Troyer5c3a63e2014-07-09 11:27:42 -0500758
Dean Troyer62d1d692013-08-01 17:40:40 -0500759install_rpc_backend
760
Sean Dague5cad4d32015-11-10 14:39:07 -0500761# NOTE(sdague): dlm install is conditional on one being enabled by configuration
762install_dlm
763configure_dlm
764
Dean Troyer62d1d692013-08-01 17:40:40 -0500765if is_service_enabled $DATABASE_BACKENDS; then
766 install_database
Olivier Lemasle7dd890d2015-09-14 14:21:12 +0200767fi
768if [ -n "$DATABASE_TYPE" ]; then
Dean Troyer5686dbc2015-03-09 14:27:51 -0500769 install_database_python
Dean Troyer62d1d692013-08-01 17:40:40 -0500770fi
771
772if is_service_enabled neutron; then
773 install_neutron_agent_packages
774fi
775
Dean Troyerfe51a902013-04-01 15:48:44 -0500776# Check Out and Install Source
777# ----------------------------
Dean Troyer4a43b7b2012-08-28 17:43:40 -0500778
Dean Troyer7903b792012-09-13 17:16:12 -0500779echo_summary "Installing OpenStack project source"
780
Dean Troyerdc97cb72015-03-28 08:20:50 -0500781# Install Oslo libraries
Sean Dague1b6b5312013-07-31 06:46:34 -0400782install_oslo
783
Dean Troyerdc97cb72015-03-28 08:20:50 -0500784# Install client libraries
Jamie Lennox21a90772015-07-03 11:54:38 +1000785install_keystoneauth
Dean Troyerd81a0272012-08-31 18:04:55 -0500786install_keystoneclient
Dean Troyer73f6f252012-09-17 11:22:21 -0500787install_glanceclient
Dean Troyer253a1a32013-04-01 18:23:22 -0500788install_cinderclient
Dean Troyerbf67c192012-09-21 15:09:37 -0500789install_novaclient
Sean Dague75195b52013-07-25 15:38:09 -0400790if is_service_enabled swift glance horizon; then
Dean Troyerfe51a902013-04-01 15:48:44 -0500791 install_swiftclient
792fi
Sean Dague75195b52013-07-25 15:38:09 -0400793if is_service_enabled neutron nova horizon; then
Mark McClainb05c8762013-07-06 23:29:39 -0400794 install_neutronclient
Dean Troyerfe51a902013-04-01 15:48:44 -0500795fi
Sean Dague75195b52013-07-25 15:38:09 -0400796if is_service_enabled heat horizon; then
797 install_heatclient
798fi
Dean Troyerfe51a902013-04-01 15:48:44 -0500799
Patrick East657cdcd2016-07-01 16:08:15 -0700800# Install shared libraries
801if is_service_enabled cinder nova; then
802 install_os_brick
803fi
804
Morgan Fainberg58936fd2014-06-24 12:26:07 -0700805# Install middleware
806install_keystonemiddleware
807
Dean Troyer5ce44cd2015-02-12 22:18:33 -0600808if is_service_enabled keystone; then
Bartosz Górski0abde392014-02-28 14:15:19 +0100809 if [ "$KEYSTONE_AUTH_HOST" == "$SERVICE_HOST" ]; then
Dean Troyer8c2ce6e2015-02-18 14:47:54 -0600810 stack_install_service keystone
Bartosz Górski0abde392014-02-28 14:15:19 +0100811 configure_keystone
812 fi
Jesse Andrews38df1222011-11-20 09:55:44 -0800813fi
Attila Fazekasece6a332012-11-29 14:19:41 +0100814
Sean Dague8b416ae2016-03-25 08:58:54 -0400815if is_service_enabled swift; then
gordon chungb6197e62015-02-12 15:33:35 -0500816 if is_service_enabled ceilometer; then
817 install_ceilometermiddleware
818 fi
Dean Troyer8c2ce6e2015-02-18 14:47:54 -0600819 stack_install_service swift
Dean Troyerfe51a902013-04-01 15:48:44 -0500820 configure_swift
821
rahmu9d2647a2013-04-24 10:40:07 +0200822 # swift3 middleware to provide S3 emulation to Swift
Chmouel Boudjnah6ae9ea52012-07-05 06:50:51 +0000823 if is_service_enabled swift3; then
Dean Troyerdc97cb72015-03-28 08:20:50 -0500824 # Replace the nova-objectstore port by the swift port
rahmu9d2647a2013-04-24 10:40:07 +0200825 S3_SERVICE_PORT=8080
Chmouel Boudjnah6ae9ea52012-07-05 06:50:51 +0000826 git_clone $SWIFT3_REPO $SWIFT3_DIR $SWIFT3_BRANCH
Dean Troyerfe51a902013-04-01 15:48:44 -0500827 setup_develop $SWIFT3_DIR
Chmouel Boudjnah6ae9ea52012-07-05 06:50:51 +0000828 fi
James E. Blaire7ce24f2011-11-10 13:05:13 -0800829fi
Attila Fazekasece6a332012-11-29 14:19:41 +0100830
Chmouel Boudjnaha6651e92012-02-16 10:16:52 +0000831if is_service_enabled g-api n-api; then
Dean Troyerdc97cb72015-03-28 08:20:50 -0500832 # Image catalog service
Dean Troyer8c2ce6e2015-02-18 14:47:54 -0600833 stack_install_service glance
Dean Troyerfe51a902013-04-01 15:48:44 -0500834 configure_glance
James E. Blaire7ce24f2011-11-10 13:05:13 -0800835fi
Dean Troyerfe51a902013-04-01 15:48:44 -0500836
837if is_service_enabled cinder; then
Dean Troyerdc97cb72015-03-28 08:20:50 -0500838 # Block volume service
Dean Troyer8c2ce6e2015-02-18 14:47:54 -0600839 stack_install_service cinder
Dean Troyerfe51a902013-04-01 15:48:44 -0500840 configure_cinder
841fi
842
Mark McClainb05c8762013-07-06 23:29:39 -0400843if is_service_enabled neutron; then
Dean Troyerdc97cb72015-03-28 08:20:50 -0500844 # Network service
Dean Troyer8c2ce6e2015-02-18 14:47:54 -0600845 stack_install_service neutron
Mark McClainb05c8762013-07-06 23:29:39 -0400846 install_neutron_third_party
Dean Troyerfe51a902013-04-01 15:48:44 -0500847fi
848
Dean Troyerbf67c192012-09-21 15:09:37 -0500849if is_service_enabled nova; then
Dean Troyerdc97cb72015-03-28 08:20:50 -0500850 # Compute service
Dean Troyer8c2ce6e2015-02-18 14:47:54 -0600851 stack_install_service nova
Dean Troyerfe51a902013-04-01 15:48:44 -0500852 cleanup_nova
853 configure_nova
Dean Troyerbf67c192012-09-21 15:09:37 -0500854fi
Dean Troyerfe51a902013-04-01 15:48:44 -0500855
Chmouel Boudjnaha6651e92012-02-16 10:16:52 +0000856if is_service_enabled horizon; then
Zhenguo Niue385d1e2014-03-12 16:58:12 +0800857 # django openstack_auth
858 install_django_openstack_auth
Sean Dagueb562e6a2012-11-19 16:00:01 -0500859 # dashboard
Dean Troyer8c2ce6e2015-02-18 14:47:54 -0600860 stack_install_service horizon
James E. Blaire7ce24f2011-11-10 13:05:13 -0800861fi
Dean Troyerfe51a902013-04-01 15:48:44 -0500862
Steve Bakerbfdad752012-08-18 09:00:42 +1200863if is_service_enabled heat; then
Dean Troyer8c2ce6e2015-02-18 14:47:54 -0600864 stack_install_service heat
Steve Baker315971d2014-05-27 12:24:18 +1200865 install_heat_other
Steve Bakerc3249082013-04-09 13:41:47 +1200866 cleanup_heat
Steve Bakerbfdad752012-08-18 09:00:42 +1200867 configure_heat
868fi
Dean Troyerb7490da2013-03-18 16:07:56 -0500869
Rob Crittenden18d47782014-03-19 17:47:42 -0400870if is_service_enabled tls-proxy || [ "$USE_SSL" == "True" ]; then
Dean Troyerfe51a902013-04-01 15:48:44 -0500871 configure_CA
872 init_CA
873 init_cert
Dean Troyerdc97cb72015-03-28 08:20:50 -0500874 # Add name to ``/etc/hosts``.
875 # Don't be naive and add to existing line!
Dean Troyer67787e62012-05-02 11:48:15 -0500876fi
Jesse Andrewsba23cc72011-09-11 03:22:13 -0700877
Dean Troyerdc97cb72015-03-28 08:20:50 -0500878
Dean Troyercdf3d762013-10-15 09:42:43 -0500879# Extras Install
880# --------------
881
882# Phase: install
Sean Dague2c65e712014-12-18 09:44:56 -0500883run_phase stack install
Dean Troyercdf3d762013-10-15 09:42:43 -0500884
Dean Troyerdc97cb72015-03-28 08:20:50 -0500885# Install the OpenStack client, needed for most setup commands
Ihar Hrachyshka1ffa3322015-02-20 16:23:15 +0100886if use_library_from_git "python-openstackclient"; then
887 git_clone_by_name "python-openstackclient"
888 setup_dev_lib "python-openstackclient"
889else
Sean Dague60996b12015-04-08 09:06:49 -0400890 pip_install_gr python-openstackclient
Ihar Hrachyshka1ffa3322015-02-20 16:23:15 +0100891fi
892
Dean Troyercc6b4432013-04-08 15:38:03 -0500893if [[ $TRACK_DEPENDS = True ]]; then
Monty Taylor47f02062012-07-26 11:09:24 -0500894 $DEST/.venv/bin/pip freeze > $DEST/requires-post-pip
Dean Troyercc6b4432013-04-08 15:38:03 -0500895 if ! diff -Nru $DEST/requires-pre-pip $DEST/requires-post-pip > $DEST/requires.diff; then
DennyZhange8fa8532013-11-03 12:22:04 -0600896 echo "Detect some changes for installed packages of pip, in depend tracking mode"
Monty Taylor47f02062012-07-26 11:09:24 -0500897 cat $DEST/requires.diff
898 fi
899 echo "Ran stack.sh in depend tracking mode, bailing out now"
900 exit 0
901fi
Dean Troyerdf0972c2012-03-07 17:31:03 -0600902
Dean Troyerb7490da2013-03-18 16:07:56 -0500903
Dean Troyerff603ef2011-11-22 17:48:10 -0600904# Syslog
Dean Troyerdf0972c2012-03-07 17:31:03 -0600905# ------
Dean Troyerff603ef2011-11-22 17:48:10 -0600906
907if [[ $SYSLOG != "False" ]]; then
Dean Troyerff603ef2011-11-22 17:48:10 -0600908 if [[ "$SYSLOG_HOST" = "$HOST_IP" ]]; then
909 # Configure the master host to receive
910 cat <<EOF >/tmp/90-stack-m.conf
911\$ModLoad imrelp
912\$InputRELPServerRun $SYSLOG_PORT
913EOF
914 sudo mv /tmp/90-stack-m.conf /etc/rsyslog.d
915 else
916 # Set rsyslog to send to remote host
917 cat <<EOF >/tmp/90-stack-s.conf
918*.* :omrelp:$SYSLOG_HOST:$SYSLOG_PORT
919EOF
920 sudo mv /tmp/90-stack-s.conf /etc/rsyslog.d
921 fi
cloudnulle4859f02013-05-28 14:10:58 -0500922
923 RSYSLOGCONF="/etc/rsyslog.conf"
924 if [ -f $RSYSLOGCONF ]; then
925 sudo cp -b $RSYSLOGCONF $RSYSLOGCONF.bak
926 if [[ $(grep '$SystemLogRateLimitBurst' $RSYSLOGCONF) ]]; then
927 sudo sed -i 's/$SystemLogRateLimitBurst\ .*/$SystemLogRateLimitBurst\ 0/' $RSYSLOGCONF
928 else
929 sudo sed -i '$ i $SystemLogRateLimitBurst\ 0' $RSYSLOGCONF
930 fi
931 if [[ $(grep '$SystemLogRateLimitInterval' $RSYSLOGCONF) ]]; then
932 sudo sed -i 's/$SystemLogRateLimitInterval\ .*/$SystemLogRateLimitInterval\ 0/' $RSYSLOGCONF
933 else
934 sudo sed -i '$ i $SystemLogRateLimitInterval\ 0' $RSYSLOGCONF
935 fi
936 fi
937
Dean Troyer7903b792012-09-13 17:16:12 -0500938 echo_summary "Starting rsyslog"
Dean Troyer13dc5cc2012-03-27 14:50:45 -0500939 restart_service rsyslog
Dean Troyerff603ef2011-11-22 17:48:10 -0600940fi
941
Dean Troyerdf0972c2012-03-07 17:31:03 -0600942
Joe Gordone5d92382012-09-13 17:19:03 -0700943# Finalize queue installation
944# ----------------------------
Akihiro MOTOKIb0f1c382013-01-13 17:58:12 +0900945restart_rpc_backend
Jesse Andrewsba23cc72011-09-11 03:22:13 -0700946
Dean Troyerdf0972c2012-03-07 17:31:03 -0600947
Atsushi SAKAIfe7b56c2015-11-13 17:06:16 +0900948# Export Certificate Authority Bundle
949# -----------------------------------
Jamie Lennoxbd24a8d2013-09-20 16:26:42 +1000950
951# If certificates were used and written to the SSL bundle file then these
952# should be exported so clients can validate their connections.
953
954if [ -f $SSL_BUNDLE_FILE ]; then
955 export OS_CACERT=$SSL_BUNDLE_FILE
956fi
957
958
Terry Wilson428af5a2012-11-01 16:12:39 -0400959# Configure database
960# ------------------
Dean Troyerb9182d62012-11-07 12:31:34 -0600961
Terry Wilson428af5a2012-11-01 16:12:39 -0400962if is_service_enabled $DATABASE_BACKENDS; then
963 configure_database
Jesse Andrews24859062011-09-15 21:28:23 -0700964fi
965
Dean Troyerb9182d62012-11-07 12:31:34 -0600966
967# Configure screen
968# ----------------
969
Sean Dague53753292014-12-04 19:38:15 -0500970USE_SCREEN=$(trueorfalse True USE_SCREEN)
Dean Troyer681f3fd2013-02-27 19:00:39 -0600971if [[ "$USE_SCREEN" == "True" ]]; then
972 # Create a new named screen to run processes in
973 screen -d -m -S $SCREEN_NAME -t shell -s /bin/bash
974 sleep 1
975
976 # Set a reasonable status bar
Ed Cranfordff72c502015-01-21 16:42:42 -0600977 SCREEN_HARDSTATUS=${SCREEN_HARDSTATUS:-}
Dean Troyer681f3fd2013-02-27 19:00:39 -0600978 if [ -z "$SCREEN_HARDSTATUS" ]; then
979 SCREEN_HARDSTATUS='%{= .} %-Lw%{= .}%> %n%f %t*%{= .}%+Lw%< %-=%{g}(%{d}%H/%l%{g})'
980 fi
981 screen -r $SCREEN_NAME -X hardstatus alwayslastline "$SCREEN_HARDSTATUS"
Steven Dake30396572013-06-30 16:11:54 -0700982 screen -r $SCREEN_NAME -X setenv PROMPT_COMMAND /bin/true
Josh Kearney0a7a41e2012-04-04 17:47:56 -0500983fi
984
Dean Troyerdc97cb72015-03-28 08:20:50 -0500985# Clear ``screenrc`` file
Jiajun Liu61bb2c12012-10-19 09:48:30 +0800986SCREENRC=$TOP_DIR/$SCREEN_NAME-screenrc
987if [[ -e $SCREENRC ]]; then
Jiajun Liu8e58c072013-07-17 06:41:50 +0000988 rm -f $SCREENRC
Jiajun Liu61bb2c12012-10-19 09:48:30 +0800989fi
Dean Troyerb9182d62012-11-07 12:31:34 -0600990
jiajun xua9414242012-12-06 16:30:57 +0800991# Initialize the directory for service status check
992init_service_check
Dean Troyer7d28a0e2012-06-27 17:55:52 -0500993
Dean Troyer68162342015-05-13 15:41:03 -0500994# Save configuration values
995save_stackenv $LINENO
996
Dean Troyerdc97cb72015-03-28 08:20:50 -0500997
998# Start Services
999# ==============
1000
Sean Dague78096b52014-02-25 10:23:04 -05001001# Dstat
Dean Troyerdc97cb72015-03-28 08:20:50 -05001002# -----
Dean Troyer1a6d4492013-06-03 16:47:36 -05001003
Sean Daguef1eb0472014-02-11 17:28:56 -05001004# A better kind of sysstat, with the top process per time slice
Joe Gordone0b08d02014-08-20 00:34:55 -07001005start_dstat
Sean Dague062cdaf2014-02-10 22:24:49 -05001006
Dean Troyer893e6632013-09-13 15:05:51 -05001007
Dean Troyerd81a0272012-08-31 18:04:55 -05001008# Keystone
1009# --------
1010
Dean Troyer5ce44cd2015-02-12 22:18:33 -06001011if is_service_enabled keystone; then
Dean Troyer7903b792012-09-13 17:16:12 -05001012 echo_summary "Starting Keystone"
Bartosz Górski0abde392014-02-28 14:15:19 +01001013
1014 if [ "$KEYSTONE_AUTH_HOST" == "$SERVICE_HOST" ]; then
1015 init_keystone
1016 start_keystone
Steve Martinelli923be5f2015-12-20 00:24:19 -05001017 bootstrap_keystone
Bartosz Górski0abde392014-02-28 14:15:19 +01001018 fi
Dean Troyerd81a0272012-08-31 18:04:55 -05001019
Steve Martinelli923be5f2015-12-20 00:24:19 -05001020 # Rather than just export these, we write them out to a
1021 # intermediate userrc file that can also be used to debug if
1022 # something goes wrong between here and running
1023 # tools/create_userrc.sh (this script relies on services other
1024 # than keystone being available, so we can't call it right now)
1025 cat > $TOP_DIR/userrc_early <<EOF
1026# Use this for debugging issues before files in accrc are created
1027
1028# Set up password auth credentials now that Keystone is bootstrapped
1029export OS_IDENTITY_API_VERSION=3
1030export OS_AUTH_URL=$KEYSTONE_AUTH_URI
1031export OS_USERNAME=admin
1032export OS_USER_DOMAIN_ID=default
1033export OS_PASSWORD=$ADMIN_PASSWORD
1034export OS_PROJECT_NAME=admin
1035export OS_PROJECT_DOMAIN_ID=default
zhiyuan_cai6f1781f2016-04-07 18:36:46 +08001036export OS_REGION_NAME=$KEYSTONE_REGION_NAME
Steve Martinelli923be5f2015-12-20 00:24:19 -05001037
1038EOF
1039
Rob Crittendenbe00e952016-03-24 18:09:22 -04001040 if is_service_enabled tls-proxy; then
1041 echo "export OS_CACERT=$INT_CA_DIR/ca-chain.pem" >> $TOP_DIR/userrc_early
1042 fi
1043
Steve Martinelli923be5f2015-12-20 00:24:19 -05001044 source $TOP_DIR/userrc_early
Dean Troyer42a59c22014-03-03 14:31:29 -06001045
Dean Troyerd835de82012-11-29 17:11:35 -06001046 create_keystone_accounts
Dean Troyera0dce262012-12-11 16:52:37 -06001047 create_nova_accounts
Dean Troyer42a59c22014-03-03 14:31:29 -06001048 create_glance_accounts
Dean Troyer671c16e2012-12-13 16:22:38 -06001049 create_cinder_accounts
Mark McClainb05c8762013-07-06 23:29:39 -04001050 create_neutron_accounts
Dean Troyerd835de82012-11-29 17:11:35 -06001051
Dean Troyer42a59c22014-03-03 14:31:29 -06001052 if is_service_enabled swift; then
Ian Wienand0ff314c2013-07-17 16:30:19 +10001053 create_swift_accounts
1054 fi
1055
Steve Baker744c2af2014-12-16 12:00:40 +13001056 if is_service_enabled heat; then
Steven Hardy33d1f862014-02-13 15:00:33 +00001057 create_heat_accounts
1058 fi
1059
Dean Troyerd81a0272012-08-31 18:04:55 -05001060fi
1061
Monty Taylor7224eec2015-09-19 11:26:18 -04001062# Write a clouds.yaml file
1063write_clouds_yaml
Monty Taylor16a2d642015-09-19 11:19:31 -04001064
Tres Henryca85b792011-10-28 14:00:21 -07001065# Horizon
Dean Troyerdf0972c2012-03-07 17:31:03 -06001066# -------
Jesse Andrewscbe98d52011-10-02 17:47:32 -04001067
Chmouel Boudjnaha6651e92012-02-16 10:16:52 +00001068if is_service_enabled horizon; then
Akihiro Motoki43f62c02015-12-15 16:44:41 +09001069 echo_summary "Configuring Horizon"
1070 configure_horizon
Anthony Young70dc5e02011-09-15 16:52:43 -07001071fi
Jesse Andrews75a37652011-09-12 17:09:08 -07001072
Anthony Young3859f732011-09-14 02:33:43 -07001073
Jesse Andrewsd74257d2011-09-13 01:24:50 -07001074# Glance
1075# ------
1076
Chmouel Boudjnaha6651e92012-02-16 10:16:52 +00001077if is_service_enabled g-reg; then
Dean Troyer7903b792012-09-13 17:16:12 -05001078 echo_summary "Configuring Glance"
Dean Troyer73f6f252012-09-17 11:22:21 -05001079 init_glance
Anthony Young70dc5e02011-09-15 16:52:43 -07001080fi
Jesse Andrews75a37652011-09-12 17:09:08 -07001081
Dean Troyer8c032d12013-09-23 13:53:13 -05001082
Mark McClainb05c8762013-07-06 23:29:39 -04001083# Neutron
Anthony Young60df29a2012-03-28 09:40:17 -07001084# -------
Dean Troyer7d28a0e2012-06-27 17:55:52 -05001085
Mark McClainb05c8762013-07-06 23:29:39 -04001086if is_service_enabled neutron; then
1087 echo_summary "Configuring Neutron"
Dean Troyerb9182d62012-11-07 12:31:34 -06001088
Mark McClainb05c8762013-07-06 23:29:39 -04001089 configure_neutron
Dean Troyerdc97cb72015-03-28 08:20:50 -05001090 # Run init_neutron only on the node hosting the Neutron API server
Sean M. Collins2a242512016-05-03 09:03:09 -04001091 if is_service_enabled $DATABASE_BACKENDS && is_service_enabled neutron; then
Salvatore Orlandodd649882013-08-05 08:56:17 -07001092 init_neutron
1093 fi
Dan Wendlandt0007f3a2012-05-18 13:37:47 -07001094fi
1095
Mark McClainb05c8762013-07-06 23:29:39 -04001096# Some Neutron plugins require network controllers which are not
Akihiro MOTOKI66afb472012-12-21 15:34:13 +09001097# a part of the OpenStack project. Configure and start them.
Mark McClainb05c8762013-07-06 23:29:39 -04001098if is_service_enabled neutron; then
1099 configure_neutron_third_party
1100 init_neutron_third_party
1101 start_neutron_third_party
Gary Kotton396a0142012-07-29 04:28:47 -04001102fi
1103
Dean Troyerb9182d62012-11-07 12:31:34 -06001104
Jesse Andrewsd74257d2011-09-13 01:24:50 -07001105# Nova
1106# ----
Dean Troyerbd13b702012-02-13 11:22:36 -06001107
Isaku Yamahata6f85ab32012-08-06 16:56:10 +09001108if is_service_enabled n-net q-dhcp; then
Anthony Young55458452011-12-17 00:21:49 +00001109 # Delete traces of nova networks from prior runs
Davanum Srinivasd71d6e72013-01-28 19:15:57 -05001110 # Do not kill any dnsmasq instance spawned by NetworkManager
1111 netman_pid=$(pidof NetworkManager || true)
1112 if [ -z "$netman_pid" ]; then
1113 sudo killall dnsmasq || true
1114 else
1115 sudo ps h -o pid,ppid -C dnsmasq | grep -v $netman_pid | awk '{print $1}' | sudo xargs kill || true
1116 fi
1117
Anthony Young55458452011-12-17 00:21:49 +00001118 clean_iptables
Christian Berendt7a7fb492014-04-07 13:31:07 +00001119
1120 if is_service_enabled n-net; then
1121 rm -rf ${NOVA_STATE_PATH}/networks
1122 sudo mkdir -p ${NOVA_STATE_PATH}/networks
Chris Denta0ced4d2014-05-27 22:08:46 +01001123 safe_chown -R ${STACK_USER} ${NOVA_STATE_PATH}/networks
Christian Berendt7a7fb492014-04-07 13:31:07 +00001124 fi
1125
Dean Troyer1a6d4492013-06-03 16:47:36 -05001126 # Force IP forwarding on, just in case
Dean Troyer0b31e862012-03-07 16:47:56 -06001127 sudo sysctl -w net.ipv4.ip_forward=1
Anthony Young70dc5e02011-09-15 16:52:43 -07001128fi
Jesse Andrews75a37652011-09-12 17:09:08 -07001129
Dean Troyer7d28a0e2012-06-27 17:55:52 -05001130
Chmouel Boudjnah28fa4e82011-11-01 12:30:55 +01001131# Storage Service
Dean Troyer7d28a0e2012-06-27 17:55:52 -05001132# ---------------
1133
Sean Dague8b416ae2016-03-25 08:58:54 -04001134if is_service_enabled swift; then
Dean Troyer7903b792012-09-13 17:16:12 -05001135 echo_summary "Configuring Swift"
Attila Fazekasece6a332012-11-29 14:19:41 +01001136 init_swift
Chmouel Boudjnah28fa4e82011-11-01 12:30:55 +01001137fi
1138
Dean Troyerdf0972c2012-03-07 17:31:03 -06001139
Anthony Youngacff87a2011-10-20 10:12:58 -07001140# Volume Service
1141# --------------
1142
Dean Troyer67787e62012-05-02 11:48:15 -05001143if is_service_enabled cinder; then
Dean Troyer7903b792012-09-13 17:16:12 -05001144 echo_summary "Configuring Cinder"
Dean Troyer67787e62012-05-02 11:48:15 -05001145 init_cinder
Anthony Youngacff87a2011-10-20 10:12:58 -07001146fi
1147
Dean Troyer2aa2a892013-08-04 19:53:19 -05001148
1149# Compute Service
1150# ---------------
1151
Dean Troyerbf67c192012-09-21 15:09:37 -05001152if is_service_enabled nova; then
1153 echo_summary "Configuring Nova"
1154 init_nova
Jesse Andrewsd1879c52011-09-16 16:28:13 -07001155
Dean Troyer86a79692012-10-22 15:24:46 -05001156 # Additional Nova configuration that is dependent on other services
Mark McClainb05c8762013-07-06 23:29:39 -04001157 if is_service_enabled neutron; then
Sean M. Collins2a242512016-05-03 09:03:09 -04001158 configure_neutron_nova
Dean Troyer86a79692012-10-22 15:24:46 -05001159 elif is_service_enabled n-net; then
Akihiro MOTOKI66afb472012-12-21 15:34:13 +09001160 create_nova_conf_nova_network
Brad Hall1bfa3d52011-10-27 18:18:20 -07001161 fi
Dean Troyerdf0972c2012-03-07 17:31:03 -06001162
Kieran Spearfb2a3ae2013-03-11 23:55:49 +00001163 init_nova_cells
Anthony Youngb62b4ca2011-10-26 22:29:08 -07001164fi
1165
Dean Troyerdc97cb72015-03-28 08:20:50 -05001166
Dean Troyercdf3d762013-10-15 09:42:43 -05001167# Extras Configuration
1168# ====================
1169
1170# Phase: post-config
Sean Dague2c65e712014-12-18 09:44:56 -05001171run_phase stack post-config
Dean Troyercdf3d762013-10-15 09:42:43 -05001172
1173
Dean Troyer893e6632013-09-13 15:05:51 -05001174# Local Configuration
1175# ===================
1176
Dean Troyerdc97cb72015-03-28 08:20:50 -05001177# Apply configuration from ``local.conf`` if it exists for layer 2 services
Dean Troyer893e6632013-09-13 15:05:51 -05001178# Phase: post-config
1179merge_config_group $TOP_DIR/local.conf post-config
1180
1181
Jesse Andrewsd74257d2011-09-13 01:24:50 -07001182# Launch Services
1183# ===============
Jesse Andrews30f68e92011-09-13 00:59:54 -07001184
Jesse Andrewsdfcd2002011-09-13 13:17:22 -07001185# Only run the services specified in ``ENABLED_SERVICES``
1186
Attila Fazekasece6a332012-11-29 14:19:41 +01001187# Launch Swift Services
Sean Dague8b416ae2016-03-25 08:58:54 -04001188if is_service_enabled swift; then
Attila Fazekasece6a332012-11-29 14:19:41 +01001189 echo_summary "Starting Swift"
1190 start_swift
1191fi
1192
Dean Troyer73f6f252012-09-17 11:22:21 -05001193# Launch the Glance services
Dean Troyere4fa7212014-01-15 15:04:49 -06001194if is_service_enabled glance; then
Dean Troyer7903b792012-09-13 17:16:12 -05001195 echo_summary "Starting Glance"
Dean Troyer73f6f252012-09-17 11:22:21 -05001196 start_glance
Anthony Youngd000b222011-09-19 14:46:53 -07001197fi
1198
Dean Troyerdc97cb72015-03-28 08:20:50 -05001199
Eric Windisch0b9776d2014-01-28 11:20:53 -05001200# Install Images
1201# ==============
1202
Dean Troyerdc97cb72015-03-28 08:20:50 -05001203# Upload an image to Glance.
Eric Windisch0b9776d2014-01-28 11:20:53 -05001204#
Dean Troyerdc97cb72015-03-28 08:20:50 -05001205# The default image is CirrOS, a small testing image which lets you login as **root**
1206# CirrOS has a ``cloud-init`` analog supporting login via keypair and sending
Eric Windisch0b9776d2014-01-28 11:20:53 -05001207# scripts as userdata.
Dean Troyerdc97cb72015-03-28 08:20:50 -05001208# See https://help.ubuntu.com/community/CloudInit for more on ``cloud-init``
Eric Windisch0b9776d2014-01-28 11:20:53 -05001209
1210if is_service_enabled g-reg; then
Eric Windisch0b9776d2014-01-28 11:20:53 -05001211
Sean Dague2f8e08b2014-12-05 08:31:16 -05001212 echo_summary "Uploading images"
Eric Windisch0b9776d2014-01-28 11:20:53 -05001213
Sean Dague2f8e08b2014-12-05 08:31:16 -05001214 # Option to upload legacy ami-tty, which works with xenserver
1215 if [[ -n "$UPLOAD_LEGACY_TTY" ]]; then
1216 IMAGE_URLS="${IMAGE_URLS:+${IMAGE_URLS},}https://github.com/downloads/citrix-openstack/warehouse/tty.tgz"
Eric Windisch0b9776d2014-01-28 11:20:53 -05001217 fi
Sean Dague2f8e08b2014-12-05 08:31:16 -05001218
1219 for image_url in ${IMAGE_URLS//,/ }; do
Peter Stachowski5aeea6a2015-09-22 19:38:02 +00001220 upload_image $image_url
Sean Dague2f8e08b2014-12-05 08:31:16 -05001221 done
Eric Windisch0b9776d2014-01-28 11:20:53 -05001222fi
1223
Jordan Pittier50f22da2016-05-10 15:04:44 +02001224# Create a randomized default value for the key manager's fixed_key
Kaitlin Farrdef4c142014-01-06 08:52:49 -05001225if is_service_enabled nova; then
Jordan Pittier50f22da2016-05-10 15:04:44 +02001226 iniset $NOVA_CONF key_manager fixed_key $(generate_hex_string 32)
Kaitlin Farrdef4c142014-01-06 08:52:49 -05001227fi
1228
Dean Troyer7d28a0e2012-06-27 17:55:52 -05001229# Launch the nova-api and wait for it to answer before continuing
Chmouel Boudjnaha6651e92012-02-16 10:16:52 +00001230if is_service_enabled n-api; then
Dean Troyer7903b792012-09-13 17:16:12 -05001231 echo_summary "Starting Nova API"
Dean Troyer3a3a2ba2012-12-11 15:26:24 -06001232 start_nova_api
Anthony Youngd000b222011-09-19 14:46:53 -07001233fi
Brad Hall1bfa3d52011-10-27 18:18:20 -07001234
Sean M. Collins2a242512016-05-03 09:03:09 -04001235if is_service_enabled neutron-api; then
1236 echo_summary "Starting Neutron"
1237 start_neutron_api
1238 # check_neutron_third_party_integration
1239elif is_service_enabled q-svc; then
Mark McClainb05c8762013-07-06 23:29:39 -04001240 echo_summary "Starting Neutron"
Mark McClainb05c8762013-07-06 23:29:39 -04001241 start_neutron_service_and_check
armando-migliaccioef1e0802014-01-02 16:33:53 -08001242 check_neutron_third_party_integration
Aaron Rosen8ec719b2012-10-30 12:57:47 -07001243elif is_service_enabled $DATABASE_BACKENDS && is_service_enabled n-net; then
Kieran Spearfb2a3ae2013-03-11 23:55:49 +00001244 NM_CONF=${NOVA_CONF}
1245 if is_service_enabled n-cell; then
1246 NM_CONF=${NOVA_CELLS_CONF}
1247 fi
1248
Gary Kotton37dda8d2012-08-08 03:46:33 -04001249 # Create a small network
Kieran Spearfb2a3ae2013-03-11 23:55:49 +00001250 $NOVA_BIN_DIR/nova-manage --config-file $NM_CONF network create "$PRIVATE_NETWORK_NAME" $FIXED_RANGE 1 $FIXED_NETWORK_SIZE $NETWORK_CREATE_ARGS
Dean Troyer696ad332012-01-10 15:34:34 -06001251
Gary Kotton37dda8d2012-08-08 03:46:33 -04001252 # Create some floating ips
Kieran Spearfb2a3ae2013-03-11 23:55:49 +00001253 $NOVA_BIN_DIR/nova-manage --config-file $NM_CONF floating create $FLOATING_RANGE --pool=$PUBLIC_NETWORK_NAME
Aaron Rosen9313dfa2012-07-06 16:08:49 -04001254
Gary Kotton37dda8d2012-08-08 03:46:33 -04001255 # Create a second pool
Kieran Spearfb2a3ae2013-03-11 23:55:49 +00001256 $NOVA_BIN_DIR/nova-manage --config-file $NM_CONF floating create --ip_range=$TEST_FLOATING_RANGE --pool=$TEST_FLOATING_POOL
Brad Hall1bfa3d52011-10-27 18:18:20 -07001257fi
1258
Mark McClainb05c8762013-07-06 23:29:39 -04001259if is_service_enabled neutron; then
Sean M. Collins2a242512016-05-03 09:03:09 -04001260 start_neutron
Akihiro MOTOKI66afb472012-12-21 15:34:13 +09001261fi
Salvatore Orlando6fbb28d2013-12-22 07:59:37 -08001262# Once neutron agents are started setup initial network elements
Edgar Magana7bce8fa2014-11-04 17:32:54 +01001263if is_service_enabled q-svc && [[ "$NEUTRON_CREATE_INITIAL_NETWORKS" == "True" ]]; then
Salvatore Orlando6fbb28d2013-12-22 07:59:37 -08001264 echo_summary "Creating initial neutron network elements"
1265 create_neutron_initial_network
Salvatore Orlando6fbb28d2013-12-22 07:59:37 -08001266fi
Sean M. Collins2a242512016-05-03 09:03:09 -04001267
Dean Troyerbf67c192012-09-21 15:09:37 -05001268if is_service_enabled nova; then
1269 echo_summary "Starting Nova"
1270 start_nova
Dan Smith4b205db2016-04-04 10:37:11 -07001271 create_flavors
Dean Troyerbf67c192012-09-21 15:09:37 -05001272fi
Dean Troyer67787e62012-05-02 11:48:15 -05001273if is_service_enabled cinder; then
Dean Troyer7903b792012-09-13 17:16:12 -05001274 echo_summary "Starting Cinder"
Dean Troyer67787e62012-05-02 11:48:15 -05001275 start_cinder
Dean Troyer09718332014-07-03 10:46:57 -05001276 create_volume_types
Dean Troyer67787e62012-05-02 11:48:15 -05001277fi
Sean Dagueb562e6a2012-11-19 16:00:01 -05001278
Dean Troyerdc97cb72015-03-28 08:20:50 -05001279# Configure and launch Heat engine, api and metadata
Steve Bakerbfdad752012-08-18 09:00:42 +12001280if is_service_enabled heat; then
Steven Hardy1bcd2802014-02-13 15:14:41 +00001281 # Initialize heat
Steve Bakerbad9d892012-10-25 14:49:47 +13001282 echo_summary "Configuring Heat"
1283 init_heat
Dean Troyer7903b792012-09-13 17:16:12 -05001284 echo_summary "Starting Heat"
Steve Bakerbfdad752012-08-18 09:00:42 +12001285 start_heat
Steve Baker249e36d2015-03-05 14:01:45 +13001286 if [ "$HEAT_BUILD_PIP_MIRROR" = "True" ]; then
1287 echo_summary "Building Heat pip mirror"
1288 build_heat_pip_mirror
Steve Baker2a6009c2014-05-05 16:13:39 +12001289 fi
Steve Bakerbfdad752012-08-18 09:00:42 +12001290fi
Dean Troyer7d28a0e2012-06-27 17:55:52 -05001291
Akihiro Motoki43f62c02015-12-15 16:44:41 +09001292if is_service_enabled horizon; then
1293 echo_summary "Starting Horizon"
1294 init_horizon
1295 start_horizon
1296fi
1297
Jamie Lennoxbd24a8d2013-09-20 16:26:42 +10001298
Andrey Pavlov50901422015-09-22 21:20:36 +03001299# Create account rc files
1300# =======================
1301
1302# Creates source able script files for easier user switching.
1303# This step also creates certificates for tenants and users,
1304# which is helpful in image bundle steps.
1305
1306if is_service_enabled nova && is_service_enabled keystone; then
1307 USERRC_PARAMS="-PA --target-dir $TOP_DIR/accrc"
1308
1309 if [ -f $SSL_BUNDLE_FILE ]; then
1310 USERRC_PARAMS="$USERRC_PARAMS --os-cacert $SSL_BUNDLE_FILE"
1311 fi
1312
1313 if [[ "$HEAT_STANDALONE" = "True" ]]; then
1314 USERRC_PARAMS="$USERRC_PARAMS --heat-url http://$HEAT_API_HOST:$HEAT_API_PORT/v1"
1315 fi
1316
1317 $TOP_DIR/tools/create_userrc.sh $USERRC_PARAMS
1318fi
1319
1320
1321# Save some values we generated for later use
1322save_stackenv
1323
1324
Dean Troyerdc97cb72015-03-28 08:20:50 -05001325# Wrapup configuration
1326# ====================
Dean Troyer893e6632013-09-13 15:05:51 -05001327
Dean Troyerdc97cb72015-03-28 08:20:50 -05001328# local.conf extra
1329# ----------------
1330
1331# Apply configuration from ``local.conf`` if it exists for layer 2 services
Dean Troyer893e6632013-09-13 15:05:51 -05001332# Phase: extra
1333merge_config_group $TOP_DIR/local.conf extra
1334
1335
Dean Troyer768295e2013-01-09 13:42:03 -06001336# Run extras
Dean Troyerdc97cb72015-03-28 08:20:50 -05001337# ----------
Dean Troyer768295e2013-01-09 13:42:03 -06001338
Dean Troyercdf3d762013-10-15 09:42:43 -05001339# Phase: extra
Sean Dague2c65e712014-12-18 09:44:56 -05001340run_phase stack extra
Dean Troyer768295e2013-01-09 13:42:03 -06001341
Ryan Hsufeb28832013-11-07 12:12:35 -08001342
Dean Troyerdc97cb72015-03-28 08:20:50 -05001343# local.conf post-extra
1344# ---------------------
1345
1346# Apply late configuration from ``local.conf`` if it exists for layer 2 services
Ryan Hsufeb28832013-11-07 12:12:35 -08001347# Phase: post-extra
1348merge_config_group $TOP_DIR/local.conf post-extra
1349
Dean Troyer768295e2013-01-09 13:42:03 -06001350
Dean Troyerf5633dd2012-03-28 11:21:40 -05001351# Run local script
Dean Troyerdc97cb72015-03-28 08:20:50 -05001352# ----------------
Dean Troyerf5633dd2012-03-28 11:21:40 -05001353
1354# Run ``local.sh`` if it exists to perform user-managed tasks
1355if [[ -x $TOP_DIR/local.sh ]]; then
1356 echo "Running user script $TOP_DIR/local.sh"
1357 $TOP_DIR/local.sh
1358fi
1359
Sean Daguec71973e2015-09-08 07:12:48 -04001360# Sanity checks
1361# =============
1362
jiajun xua9414242012-12-06 16:30:57 +08001363# Check the status of running services
1364service_check
Dean Troyerf5633dd2012-03-28 11:21:40 -05001365
Sean Daguec71973e2015-09-08 07:12:48 -04001366# ensure that all the libraries we think we installed from git,
1367# actually were.
1368check_libs_from_git
1369
Dean Troyerb7490da2013-03-18 16:07:56 -05001370
Steve Martinellibbe771a2015-01-20 13:30:33 -05001371# Bash completion
1372# ===============
1373
1374# Prepare bash completion for OSC
1375openstack complete | sudo tee /etc/bash_completion.d/osc.bash_completion > /dev/null
1376
John Griffith4bf861c2015-03-17 21:07:39 -06001377# If cinder is configured, set global_filter for PV devices
1378if is_service_enabled cinder; then
1379 if is_ubuntu; then
1380 echo_summary "Configuring lvm.conf global device filter"
1381 set_lvm_filter
1382 else
1383 echo_summary "Skip setting lvm filters for non Ubuntu systems"
1384 fi
1385fi
Steve Martinellibbe771a2015-01-20 13:30:33 -05001386
Matthew Treinish655c22c2016-05-02 13:29:10 -04001387# Run test-config
1388# ---------------
1389
1390# Phase: test-config
1391run_phase stack test-config
1392
Dean Troyerdc97cb72015-03-28 08:20:50 -05001393
Scott Moserb94f4bf2011-10-07 14:51:07 +00001394# Fin
1395# ===
1396
Dean Troyer471de7a2011-12-27 11:45:55 -06001397set +o xtrace
Scott Moserb94f4bf2011-10-07 14:51:07 +00001398
Dean Troyer7903b792012-09-13 17:16:12 -05001399if [[ -n "$LOGFILE" ]]; then
1400 exec 1>&3
1401 # Force all output to stdout and logs now
Dean Troyerbaa8b422012-09-24 15:02:05 -05001402 exec 1> >( tee -a "${LOGFILE}" ) 2>&1
Dean Troyer7903b792012-09-13 17:16:12 -05001403else
1404 # Force all output to stdout now
1405 exec 1>&3
1406fi
1407
Sean Dague95c33d52015-10-07 11:05:59 -04001408# Dump out the time totals
1409time_totals
Dean Troyerdf0972c2012-03-07 17:31:03 -06001410
Jesse Andrews24859062011-09-15 21:28:23 -07001411# Using the cloud
Dean Troyerdc97cb72015-03-28 08:20:50 -05001412# ===============
Jesse Andrews24859062011-09-15 21:28:23 -07001413
Jesse Andrewse19d8842011-11-01 20:06:55 -07001414echo ""
1415echo ""
1416echo ""
Brian Haley180f5eb2015-06-16 13:14:31 -04001417echo "This is your host IP address: $HOST_IP"
1418if [ "$HOST_IPV6" != "" ]; then
1419 echo "This is your host IPv6 address: $HOST_IPV6"
1420fi
Jesse Andrewse19d8842011-11-01 20:06:55 -07001421
Dean Troyerdf0972c2012-03-07 17:31:03 -06001422# If you installed Horizon on this server you should be able
root40a37002011-09-20 18:06:14 +00001423# to access the site using your browser.
Chmouel Boudjnaha6651e92012-02-16 10:16:52 +00001424if is_service_enabled horizon; then
David Lyle7b105c52015-07-27 17:14:32 -06001425 echo "Horizon is now available at http://$SERVICE_HOST$HORIZON_APACHE_ROOT"
Jesse Andrews24859062011-09-15 21:28:23 -07001426fi
1427
Dean Troyerdf0972c2012-03-07 17:31:03 -06001428# If Keystone is present you can point ``nova`` cli to this server
Dean Troyer5ce44cd2015-02-12 22:18:33 -06001429if is_service_enabled keystone; then
Dean Troyerdc97cb72015-03-28 08:20:50 -05001430 echo "Keystone is serving at $KEYSTONE_SERVICE_URI/"
Dean Troyerdf0972c2012-03-07 17:31:03 -06001431 echo "The default users are: admin and demo"
1432 echo "The password: $ADMIN_PASSWORD"
Jesse Andrews24859062011-09-15 21:28:23 -07001433fi
termie523c4052011-09-28 19:49:40 -05001434
Dean Troyerafc29fe2013-02-07 15:56:24 -06001435# Warn that a deprecated feature was used
1436if [[ -n "$DEPRECATED_TEXT" ]]; then
1437 echo_summary "WARNING: $DEPRECATED_TEXT"
Dean Troyerced65172012-03-02 16:36:16 -06001438fi
1439
Dean Troyer4a43b7b2012-08-28 17:43:40 -05001440# Indicate how long this took to run (bash maintained variable ``SECONDS``)
Dean Troyer7903b792012-09-13 17:16:12 -05001441echo_summary "stack.sh completed in $SECONDS seconds."
Dean Troyer80684552014-03-05 11:50:23 -06001442
1443# Restore/close logging file descriptors
1444exec 1>&3
1445exec 2>&3
1446exec 3>&-
1447exec 6>&-