Fix wrong SQL statements in documentation

Story: 2009842
Task: 44444
Change-Id: Ibd4d7e700d43179e28d8aa8ef6fba7fb7276264b
This commit is contained in:
Tom Weininger 2022-02-16 10:22:56 +01:00
parent 76e731ad73
commit 4c5e798cc4
1 changed files with 2 additions and 2 deletions

View File

@ -50,9 +50,9 @@ during installation of octavia packages.
.. code-block:: console
GRANT ALL PRIVILEGES ON octavia.* TO 'octavia_persistence'@'localhost' \
GRANT ALL PRIVILEGES ON octavia_persistence.* TO 'octavia'@'localhost' \
IDENTIFIED BY 'OCTAVIA_DBPASS';
GRANT ALL PRIVILEGES ON octavia.* TO 'octavia_persistence'@'%' \
GRANT ALL PRIVILEGES ON octavia_persistence.* TO 'octavia'@'%' \
IDENTIFIED BY 'OCTAVIA_DBPASS';
Replace OCTAVIA_DBPASS with a suitable password.