From e5a879336d71cd43691dcee4fdb17e9fb1538bd3 Mon Sep 17 00:00:00 2001 From: Benjamin Affolter <5555767+bliemli@users.noreply.github.com> Date: Thu, 12 Sep 2024 15:48:08 +0200 Subject: [PATCH] Fix mariadb commands --- content/en/docs/attaching-a-database/_index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/en/docs/attaching-a-database/_index.md b/content/en/docs/attaching-a-database/_index.md index 47b74280..bd7af584 100644 --- a/content/en/docs/attaching-a-database/_index.md +++ b/content/en/docs/attaching-a-database/_index.md @@ -578,7 +578,7 @@ oc rsh --namespace This command shows how to drop the whole database: ```bash -mariadb -u$MYSQL_USER -p$MYSQL_PASSWORD -h$MARIADB_SERVICE_HOST $MYSQL_DATABASE +mysql -u$MYSQL_USER -p$MYSQL_PASSWORD -h$MARIADB_SERVICE_HOST $MYSQL_DATABASE ``` ```bash @@ -590,7 +590,7 @@ exit Import a dump: ```bash -mariadb -u$MYSQL_USER -p$MYSQL_PASSWORD -h$MARIADB_SERVICE_HOST $MYSQL_DATABASE < /tmp/dump.sql +mysql -u$MYSQL_USER -p$MYSQL_PASSWORD -h$MARIADB_SERVICE_HOST $MYSQL_DATABASE < /tmp/dump.sql ``` Check your app to see the imported "Hellos".