diff --git a/doc/source/guides/multinode-lab.rst b/doc/source/guides/multinode-lab.rst index 1530a84523..5660bc5222 100644 --- a/doc/source/guides/multinode-lab.rst +++ b/doc/source/guides/multinode-lab.rst @@ -128,7 +128,7 @@ cluster controller's DevStack in ``local.conf``: MULTI_HOST=1 LOGFILE=/opt/stack/logs/stack.sh.log ADMIN_PASSWORD=labstack - MYSQL_PASSWORD=supersecret + DATABASE_PASSWORD=supersecret RABBIT_PASSWORD=supersecrete SERVICE_PASSWORD=supersecrete SERVICE_TOKEN=xyzpdqlazydog @@ -169,7 +169,7 @@ machines, create a ``local.conf`` with: MULTI_HOST=1 LOGFILE=/opt/stack/logs/stack.sh.log ADMIN_PASSWORD=labstack - MYSQL_PASSWORD=supersecret + DATABASE_PASSWORD=supersecret RABBIT_PASSWORD=supersecrete SERVICE_PASSWORD=supersecrete SERVICE_TOKEN=xyzpdqlazydog diff --git a/doc/source/guides/neutron.rst b/doc/source/guides/neutron.rst index 424844547c..9d4f54a05e 100644 --- a/doc/source/guides/neutron.rst +++ b/doc/source/guides/neutron.rst @@ -52,7 +52,7 @@ DevStack Configuration RABBIT_HOST=172.18.161.6 GLANCE_HOSTPORT=172.18.161.6:9292 ADMIN_PASSWORD=secrete - MYSQL_PASSWORD=secrete + DATABASE_PASSWORD=secrete RABBIT_PASSWORD=secrete SERVICE_PASSWORD=secrete SERVICE_TOKEN=secrete diff --git a/doc/source/guides/single-machine.rst b/doc/source/guides/single-machine.rst index 236ece9c01..a01c368213 100644 --- a/doc/source/guides/single-machine.rst +++ b/doc/source/guides/single-machine.rst @@ -105,7 +105,7 @@ do the following: FIXED_NETWORK_SIZE=256 FLAT_INTERFACE=eth0 ADMIN_PASSWORD=supersecret - MYSQL_PASSWORD=iheartdatabases + DATABASE_PASSWORD=iheartdatabases RABBIT_PASSWORD=flopsymopsy SERVICE_PASSWORD=iheartksl SERVICE_TOKEN=xyzpdqlazydog diff --git a/doc/source/guides/single-vm.rst b/doc/source/guides/single-vm.rst index 515cd505c3..53c3fa973f 100644 --- a/doc/source/guides/single-vm.rst +++ b/doc/source/guides/single-vm.rst @@ -64,7 +64,7 @@ passed as the user-data file when booting the VM. cd devstack echo '[[local|localrc]]' > local.conf echo ADMIN_PASSWORD=password >> local.conf - echo MYSQL_PASSWORD=password >> local.conf + echo DATABASE_PASSWORD=password >> local.conf echo RABBIT_PASSWORD=password >> local.conf echo SERVICE_PASSWORD=password >> local.conf echo SERVICE_TOKEN=tokentoken >> local.conf diff --git a/samples/local.conf b/samples/local.conf index ce7007391d..cb293b6c15 100644 --- a/samples/local.conf +++ b/samples/local.conf @@ -28,7 +28,7 @@ # and they will be added to ``local.conf``. SERVICE_TOKEN=azertytoken ADMIN_PASSWORD=nomoresecrete -MYSQL_PASSWORD=stackdb +DATABASE_PASSWORD=stackdb RABBIT_PASSWORD=stackqueue SERVICE_PASSWORD=$ADMIN_PASSWORD diff --git a/tools/xen/README.md b/tools/xen/README.md index 6212cc54d7..a1adf590a6 100644 --- a/tools/xen/README.md +++ b/tools/xen/README.md @@ -77,7 +77,7 @@ Of course, use real passwords if this machine is exposed. # NOTE: these need to be specified, otherwise devstack will try # to prompt for these passwords, blocking the install process. - MYSQL_PASSWORD=my_super_secret + DATABASE_PASSWORD=my_super_secret SERVICE_TOKEN=my_super_secret ADMIN_PASSWORD=my_super_secret SERVICE_PASSWORD=my_super_secret