You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
MariaDB update KB links and a few other minor changes (#2696)
* mariadb: ColumnStore link reduction
In consultation with MariaDB's ColumnStore manager, removed link
due to lack of maintaince.
* mariadb: update example with more modern verison
* mariadb: -ti options aren't needed for --help --verbose
* mariadb: --mariadbd is supported in every current version
* mariadb: Knowledge Base was replaced with MariaDB Docs
With new links.
That will give you a standard MariaDB prompt. You can test it with:
98
98
99
99
```console
100
-
MariaDB [(none)]> \s
100
+
MariaDB [test]> \s
101
101
--------------
102
-
client/mariadb Ver 15.1 Distrib 10.6.16-MariaDB, for Linux (x86_64) using EditLine wrapper
102
+
mariadb from 12.3.3-MariaDB, client 15.2 for debian-linux-gnu (x86_64) using EditLine wrapper
103
103
104
-
Connection id: 20
104
+
Connection id: 5
105
105
Current database: test
106
-
Current user: example-user@bark
107
-
SSL: Not in use
106
+
Current user: example-user@10.89.0.5
107
+
SSL: Cipher in use is TLS_AES_256_GCM_SHA384, cert is OK
108
108
Current pager: stdout
109
109
Using outfile: ''
110
110
Using delimiter: ;
111
111
Server: MariaDB
112
-
Server version: 10.6.16-MariaDB Source distribution
112
+
Server version: 12.3.3-MariaDB-ubu2404 mariadb.org binary distribution
113
113
Protocol version: 10
114
-
Connection: 192.168.178.73 via TCP/IP
115
-
Server characterset: latin1
116
-
Db characterset: latin1
117
-
Client characterset: utf8mb3
118
-
Conn. characterset: utf8mb3
114
+
Connection: m via TCP/IP
115
+
Server characterset: utf8mb4
116
+
Db characterset: utf8mb4
117
+
Client characterset: utf8mb4
118
+
Conn. characterset: utf8mb4
119
119
TCP port: 3306
120
-
Uptime: 6 min 4 sec
120
+
Uptime: 3 min 7 sec
121
121
122
-
Threads: 1 Questions: 32 Slow queries: 0 Opens: 20 Open tables: 13 Queries per second avg: 0.087
122
+
Threads: 1 Questions: 12 Slow queries: 0 Opens: 17 Open tables: 10 Queries per second avg: 0.064
123
123
--------------
124
124
```
125
125
126
126
... which will give you the version and connection information. You can then use `exit` to leave the MariaDB command line client and the client container.
127
127
128
-
More information about the MariaDB command-line client can be found in the [MariaDB Knowledge Base : MariaDB Command Line Client](https://mariadb.com/kb/en/mariadb-command-line-client/).
128
+
More information about the MariaDB command-line client can be found in the [MariaDB Documentation : MariaDB Command Line Client](https://mariadb.com/docs/server/clients-and-utilities/mariadb-client/mariadb-command-line-client).
129
129
130
130
## Container shell access
131
131
@@ -165,7 +165,7 @@ These disable the authentication of `user@hostname` users. To re-enable the `ski
165
165
To view the resulting configuration of your `%%IMAGE%%` container:
If you would like to see a complete list of available options, just run:
180
180
181
181
```console
182
-
$ docker run -it --rm %%IMAGE%%:latest --verbose --help
182
+
$ docker run --rm %%IMAGE%%:latest --verbose --help
183
183
```
184
184
185
185
## Environment Variables
@@ -232,28 +232,27 @@ If there is no database initialized when the container starts, then a default da
232
232
233
233
## Health/Liveness/Readiness Checking
234
234
235
-
See [the "Official Images" FAQ](https://github.com/docker-library/faq#healthcheck) for why there is no default `HEALTHCHECK` directive. However, you can use the `healthcheck.sh` script to choose from a (non-exhaustive) list of tests to check for whatever you consider health/liveness/readiness. Refer to the [MariaDB Knowledge Base : Using Healthcheck.sh](https://mariadb.com/kb/en/using-healthcheck-sh-script/) to learn about how to use it and which exact tests are provided.
235
+
See [the "Official Images" FAQ](https://github.com/docker-library/faq#healthcheck) for why there is no default `HEALTHCHECK` directive. However, you can use the `healthcheck.sh` script to choose from a (non-exhaustive) list of tests to check for whatever you consider health/liveness/readiness. Refer to the [MariaDB Documentation : Using Healthcheck.sh](https://mariadb.com/docs/server/server-management/automated-mariadb-deployment-and-administration/docker-and-mariadb/using-healthcheck-sh) to learn about how to use it and which exact tests are provided.
236
236
237
237
## Usage against an existing database
238
238
239
239
If you start your `%%IMAGE%%` container instance with a data directory that already contains a database (specifically, a `mysql` subdirectory), no environment variables that control initialization will be needed or examined, and no pre-existing databases will be changed. The only exception is the non-default `MARIADB_AUTO_UPGRADE` environment variable, that might cause `mysql_upgrade`/`mariadb-upgrade` to run, which might change the system tables.
240
240
241
241
## Backups and Restores
242
242
243
-
Backing up and restoring databases is important in containers too. The documentation on how to do this can be found on the [MariaDB Knowledge Base : Container Backup and Restoration](https://mariadb.com/kb/en/backups-and-restoration/).
243
+
Backing up and restoring databases is important in containers too. The documentation on how to do this can be found on the [MariaDB Documentation : Container Backup and Restoration](https://mariadb.com/docs/server/server-management/automated-mariadb-deployment-and-administration/docker-and-mariadb/container-backup-and-restoration).
244
244
245
245
## Frequently Asked Questions / How to reset root and user passwords
246
246
247
-
This is documented on [MariaDB Knowledge Base : Frequenty Asked Questions of Docker Official Image](https://mariadb.com/kb/en/frequenty-asked-questions-of-docker-official-image/#how-to-reset-passwords).
247
+
This is documented on [MariaDB Documentation : Frequenty Asked Questions of Docker Official Image](https://mariadb.com/docs/server/server-management/automated-mariadb-deployment-and-administration/docker-and-mariadb/docker-official-image-frequently-asked-questions#how-to-reset-passwords).
248
248
249
249
## How to install MariaDB plugins
250
250
251
-
This is documented on [MariaDB Knowledge Base : Adding Plugins to the Docker Official Image](https://mariadb.com/kb/en/adding-plugins-to-the-mariadb-docker-official-image/).
251
+
This is documented on [MariaDB Documentation : Adding Plugins to the Docker Official Image](https://mariadb.com/docs/server/server-management/automated-mariadb-deployment-and-administration/docker-and-mariadb/adding-plugins-to-the-mariadb-docker-official-image).
0 commit comments