Update severely outdated information to the current state#574
Update severely outdated information to the current state#574FaramosCZ wants to merge 1 commit intodeveloper-portal:masterfrom
Conversation
jackorp
left a comment
There was a problem hiding this comment.
Thanks for contributing, PTAL on the review.
| # MariaDB | ||
|
|
||
| [MariaDB](https://mariadb.org/en/about/) is a drop-in replacement of MySQL, forked by the community from the latter. To learn more about MariaDB, visit [upstream feature page](https://mariadb.com/kb/en/mariadb/mariadb-vs-mysql-features/), and to see main differences from MySQL, see [compatibility documentation](https://mariadb.com/kb/en/mariadb/mariadb-vs-mysql-compatibility/). | ||
| [MariaDB server](https://mariadb.org/en/about/) is a community developed fork of MySQL server. Started by core members of the original MySQL team, MariaDB actively works with outside developers to deliver the most featureful, stable, and sanely licensed open SQL server in the industry. To learn more about MariaDB, visit [upstream feature page](https://mariadb.com/kb/en/mariadb/mariadb-vs-mysql-features/), and to see main differences from MySQL, see [compatibility documentation](https://mariadb.com/kb/en/mariadb/mariadb-vs-mysql-compatibility/). |
There was a problem hiding this comment.
Not sure whether "sanely licensed" is a fortunate wording.
There was a problem hiding this comment.
Uhmm, yeah.
I took it from the upstream GitHub though. But I can throw that part out for our docs.
Licenses are a topic in DB world though, and I can totally see why MariaDB want to use it as a leverage over competition.
There was a problem hiding this comment.
I think either throwing that part out or replacing it with something from the https://mariadb.org/about/ 2nd paragraph starting with "MariaDB Server turns data into structured information in a wide array of applications" would be good
| Fedora ships only the LTS releases of MariaDB. <br /> | ||
| Currently, there are several available in parallel. Each in the respective versioned package (e.g.: 'mariadb10.11', 'mariadb11.8', ...). |
There was a problem hiding this comment.
| Fedora ships only the LTS releases of MariaDB. <br /> | |
| Currently, there are several available in parallel. Each in the respective versioned package (e.g.: 'mariadb10.11', 'mariadb11.8', ...). | |
| Fedora ships only the LTS releases of MariaDB. | |
| There are several LTS releases available in parallel on Fedora. Each in the respective versioned package (for example: 'mariadb10.11', 'mariadb11.8', ...). |
Would rather the documents not to break forcefully in the .md files.
Slightly simplified the language of the 2nd section
| ``` | ||
|
|
||
| In order to install MariaDB server package, run: | ||
| If you wish to install a different version, you need to use the versioned names, e.g.: |
There was a problem hiding this comment.
| If you wish to install a different version, you need to use the versioned names, e.g.: | |
| In order to install a specific version, you need to use the versioned names: |
|
|
||
| ``` | ||
| $ sudo docker pull fedora/mariadb | ||
| $ podman pull fedora/mariadb |
There was a problem hiding this comment.
Containers seem to be provided as only versioned, there is not a tag "fedora/mariadb" on registry.fedoraproject.org (redirects to https://quay.io/organization/fedora ).
Also use ideally full image name including the domain including the registry image is pulled from, e.g.:
podman pull registry.fedoraproject.org/fedora/mariadb
No description provided.