Skip to content

Commit 1b021b4

Browse files
authored
Merge pull request #41 from dotkernel/mariadb-upgrade
Bump MariaDB from 10.11 to 11.4
2 parents 16547c5 + 3a4e67a commit 1b021b4

3 files changed

Lines changed: 11 additions & 14 deletions

File tree

docs/book/v1/virtualhosts/overview.md

Lines changed: 7 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,20 +2,17 @@
22

33
Virtualhosts allow developers to host multiple applications on their local system.
44

5-
Using this tool, you configure a virtualhost for each of your applications, and it will create them so that you can
6-
start working with them.
5+
Using this tool, you configure a virtualhost for each of your applications, and it will create them so that you can start working with them.
76

87
**Example**:
98

10-
- `api.dotkernel.localhost`: this could be the endpoint where you host your website's API
11-
- `frontend.dotkernel.localhost`: this could be domain you host your website's frontend that will consume the API
9+
* `api.dotkernel.localhost`: this could be the endpoint where you host your website's API
10+
* `frontend.dotkernel.localhost`: this could be domain you host your website's frontend that will consume the API
1211

1312
In the above example, the URLs are built like this:
1413

15-
- the subdomain is the identifier of your application (`api`/`frontend`)
16-
- the domain is the identifier of your project (`dotkernel`)
17-
- the TLD sends the requests to localhost where Apache will route them to their real location
14+
* the subdomain is the identifier of your application (`api`/`frontend`)
15+
* the domain is the identifier of your project (`dotkernel`)
16+
* the TLD sends the requests to localhost where Apache will route them to their real location
1817

19-
## Note
20-
> By using the pattern `*.localhost` for any new virtualhost, you do not need to modify the `hosts` file in Windows,
21-
> because these are routed by default.
18+
> By using the pattern `*.localhost` for any new virtualhost, you do not need to modify the `hosts` file in Windows, because these are routed by default.

wsl/os/almalinux9/roles/mariadb/tasks/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
---
2-
- name: Create MariaDB 10.11 repo file
2+
- name: Create MariaDB 11.4 repo file
33
template:
44
src: "{{ mariadb_repo_src }}"
55
dest: "{{ mariadb_repo_dest }}"
66
owner: "{{ config.system.username }}"
77
group: "{{ config.system.username }}"
8-
- name: Install MariaDB 10.11
8+
- name: Install MariaDB 11.4
99
command: "dnf install python3-mysqlclient MariaDB-server MariaDB-client -y"
1010
- name: Enable and start MariaDB service
1111
command: systemctl enable --now mariadb
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
# MariaDB 10.11 RedHat repository list
1+
# MariaDB 11.4 RedHat repository list
22
# https://mariadb.org/download/
33
[mariadb]
44
name = MariaDB
5-
baseurl = https://ftp.bme.hu/pub/mirrors/mariadb/yum/10.11/rhel9-amd64
5+
baseurl = https://ftp.bme.hu/pub/mirrors/mariadb/yum/11.4/rhel9-amd64
66
gpgkey=https://ftp.bme.hu/pub/mirrors/mariadb/yum/RPM-GPG-KEY-MariaDB
77
enabled=1
88
gpgcheck=0

0 commit comments

Comments
 (0)