mirror of
https://pagure.io/fedora-docs/quick-docs.git
synced 2024-11-28 06:54:52 +00:00
Update modules/ROOT/pages/installing-mysql-mariadb.adoc
Updated the command to start mysq
This commit is contained in:
parent
863e037a16
commit
b13924b006
1 changed files with 2 additions and 2 deletions
|
@ -157,13 +157,13 @@ podman logs mysql 2>&1 | grep GENERATED
|
||||||
----
|
----
|
||||||
|
|
||||||
----
|
----
|
||||||
podman -d -e MYSQL_ROOT_PASSWORD=mypassword mysql/mysql-Server
|
podman run -d --name=mysql -e MYSQL_ROOT_PASSWORD=mypassword mysql/mysql-server
|
||||||
----
|
----
|
||||||
|
|
||||||
=== Starting a MariaDB Server Instance
|
=== Starting a MariaDB Server Instance
|
||||||
|
|
||||||
----
|
----
|
||||||
podman run -d --name=mariadb -ed MYSQL_ROOT_PASSWORD=mypassword -d mariadb/server
|
podman run -d --name=mariadb -ed MYSQL_ROOT_PASSWORD=mypassword mariadb/server
|
||||||
----
|
----
|
||||||
|
|
||||||
WARNING: Password blank default for MariaDB
|
WARNING: Password blank default for MariaDB
|
||||||
|
|
Loading…
Reference in a new issue