August 2019
Beginner
608 pages
16h 7m
English
You really should use a PostgreSQL database, as explained in Chapter 1, Introducing the GitLab Architecture. For MySQL (a different SQL database), check the MySQL setup guide.
Install the database packages using the following command:
$ sudo apt-get install -y postgresql postgresql-client libpq-dev postgresql-contrib....Setting up postgresql-contrib (11+200+deb10u2) ...Setting up postgresql (11+200+deb10u2) ...Processing triggers for systemd (241-5) ...Processing triggers for man-db (2.8.5-2) ...Processing triggers for libc-bin (2.28-10) ...
Start the Database Engine:
$ sudo service postgresql start
Create a database user for GitLab:
$ sudo -u postgres psql -d template1 -c "CREATE USER git CREATEDB;"CREATE ROLE
Create the pg_trgm ...
Read now
Unlock full access