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
* giteaofficial/main:
Add missing public user visibility in user details page (go-gitea#27246)
Use mask-based fade-out effect for `.new-menu` (go-gitea#27181)
[skip ci] Updated translations via Crowdin
Fix z-index on markdown completion (go-gitea#27237)
Update database-preparation and add note re: MariaDB (go-gitea#27232)
cleanup locale function usage (go-gitea#27227)
Fix EOL handling in web editor (go-gitea#27141)
Fix PushEvent NullPointerException jenkinsci/github-plugin (go-gitea#27203)
fix issues on action runners page (go-gitea#27226)
Fix Fomantic UI dropdown icon bug when there is a search input in menu (go-gitea#27225)
Update go-enry to 2.8.5 (go-gitea#27215)
Update nodejs installation method in release container (go-gitea#27207)
Quote table `release` in sql queries (go-gitea#27205)
Fix push mirror, wrong timestamp format (go-gitea#27153)
Allow copying issue comment link on archived repos and when not logged in (go-gitea#27193)
fix: text decorator on issue sidebar menu label (go-gitea#27206)
Update JS and Poetry dependencies and eslint (go-gitea#27200)
Remove some dead code (go-gitea#27196)
# Conflicts:
# templates/repo/issue/view_content/context_menu.tmpl
Copy file name to clipboardexpand all lines: docs/content/installation/database-preparation.en-us.md
+3-3
Original file line number
Diff line number
Diff line change
@@ -17,13 +17,13 @@ menu:
17
17
18
18
# Database Preparation
19
19
20
-
You need a database to use Gitea. Gitea supports PostgreSQL (>=10), MySQL (>=5.7), SQLite, and MSSQL (>=2008R2 SP3). This page will guide into preparing database. Only PostgreSQL and MySQL will be covered here since those database engines are widely-used in production. If you plan to use SQLite, you can ignore this chapter.
20
+
You need a database to use Gitea. Gitea supports PostgreSQL (>=10), MySQL (>=5.7), MariaDB, SQLite, and MSSQL (>=2008R2 SP3). This page will guide into preparing database. Only PostgreSQL and MySQL will be covered here since those database engines are widely-used in production. If you plan to use SQLite, you can ignore this chapter.
21
21
22
22
Database instance can be on same machine as Gitea (local database setup), or on different machine (remote database).
23
23
24
24
Note: All steps below requires that the database engine of your choice is installed on your system. For remote database setup, install the server application on database instance and client program on your Gitea server. The client program is used to test connection to the database from Gitea server, while Gitea itself use database driver provided by Go to accomplish the same thing. In addition, make sure you use same engine version for both server and client for some engine features to work. For security reason, protect `root` (MySQL) or `postgres` (PostgreSQL) database superuser with secure password. The steps assumes that you run Linux for both database and Gitea servers.
25
25
26
-
## MySQL
26
+
## MySQL/MariaDB
27
27
28
28
1. For remote database setup, you will need to make MySQL listen to your IP address. Edit `bind-address` option on `/etc/mysql/my.cnf` on database instance to:
29
29
@@ -45,7 +45,7 @@ Note: All steps below requires that the database engine of your choice is instal
0 commit comments