Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DietPi v7.9 notes #634

Merged
merged 5 commits into from
Dec 10, 2021
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion docs/releases.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,9 @@ Welcome to **December 2021 release** :octicons-heart-16: of **DietPi**. It is en
apt install kodi-repository-kodi
```

- **DietPi-Software** | **[Gitea](../software/cloud/#gitea)** :octicons-arrow-right-16: The service runs now as dedicated user `gitea` with its home directory `/mnt/dietpi_userdata/gitea` to allow easy transfer and usage of SSH keys for remote access. This applies to newly installed or reinstalled Gitea instances. Many thanks to @LilTrublMakr for reporting the related limitation with the previously used `dietpi` user: <https://github.com/MichaIng/DietPi/issues/4620>.
- **DietPi-Software** | [**Gitea**](../software/cloud/#gitea)
- The service runs now as dedicated user `gitea` with its home directory `/mnt/dietpi_userdata/gitea` to allow easy transfer and usage of SSH keys for remote access. This applies to newly installed or reinstalled Gitea instances. Many thanks to @LilTrublMakr for reporting the related limitation with the previously used `dietpi` user: <https://github.com/MichaIng/DietPi/issues/4620>.
- [**Gitea**](../software/cloud/#gitea) and [**Gogs**](../software/cloud/#gogs) conflict with each other as both use port `3000` by default. DietPi uses new conflict management system to prevent both being installed concurrently.

- **DietPi-Software** | **[Chromium](../software/desktop/#chromium)** :octicons-arrow-right-16: On Raspberry Pi, the `chromium-codecs-ffmpeg-extra` package is now installed together with Chromium, which adds additional codecs for patented video/audio formats. Many thanks to @Krawei for identifying this Chromium video playback enhancement - see <https://github.com/MichaIng/DietPi/issues/5013>.

Expand Down
21 changes: 19 additions & 2 deletions docs/software/databases.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

## MariaDB

**MariaDB** Server is one of the most popular open source relational databases. It’s made by the original developers of MySQL and guaranteed to stay open source [^2]. It is part of most cloud offerings and the default in most Linux distributions.
**MariaDB** Server is one of the most popular open source relational databases. It’s made by the original developers of MySQL and guaranteed to stay open source[^1]. It is part of most cloud offerings and the default in most Linux distributions.

![MariaDB logo](../assets/images/dietpi-software-webstack-mariadb.png){: width="200" height="61" loading="lazy"}

Expand All @@ -39,6 +39,17 @@ Source: [MariaDB](https://mariadb.com/), [LGPL](https://commons.wikimedia.org/w/
- Username = `root`
- Password = The same as your root login password, default is `dietpi`

=== "Configuration"

MariaDB configuration file could be found at: `/etc/mysql/my.cnf`.

By default, DietPi sets MariaDB configuration to use Unix socket connections. This is a fast way to enable local connectivity, comparing with TCP connections[^2].

```
[client-server]
socket = /run/mysqld/mysqld.sock
```

fpetru marked this conversation as resolved.
Show resolved Hide resolved
***

Official documentation: <https://mariadb.org>
Expand Down Expand Up @@ -69,7 +80,7 @@ Official documentation: <https://www.phpmyadmin.net/docs/>

Source: Part of the SQLite documentation, which has been released by author D. Richard Hipp to the public domain. SVG conversion by Mike Toews. [Public Domain](https://commons.wikimedia.org/w/index.php?curid=11675072)

**SQLite** is an embedded relational database engine. It it a self-contained, high-reliability and full-featured SQL database engine. It is very popular and there are hundreds of millions copies worldwide in use today [^3].
**SQLite** is an embedded relational database engine. It it a self-contained, high-reliability and full-featured SQL database engine. It is very popular and there are hundreds of millions copies worldwide in use today[^3].

=== "Quick start"

Expand Down Expand Up @@ -275,3 +286,9 @@ Source code: <https://git.postgresql.org/gitweb/?p=postgresql.git>
License: [PostgreSQL Licence](https://www.postgresql.org/about/licence/)

[Return to the **Optimised Software list**](../../software/)

[^1]: [About MariaDB Server and MariaDB Foundation](https://mariadb.org/about/)

[^2]: [MySQL connections: sockets vs. TCP](https://jasonbarnabe.wordpress.com/2014/10/01/mysql-connections-sockets-vs-tcp/)

[^3]: [About SQLite](https://www.sqlite.com/about.html)