gitlab-org--gitlab-foss/doc/install/database_mysql.md

55 lines
2.1 KiB
Markdown
Raw Normal View History

2014-09-11 00:23:06 +00:00
# Database MySQL
2014-05-27 12:12:15 +00:00
2014-02-20 09:10:25 +00:00
## Note
We do not recommend using MySQL due to various issues. For example, case [(in)sensitivity](https://dev.mysql.com/doc/refman/5.0/en/case-sensitivity.html) and [problems](https://bugs.mysql.com/bug.php?id=65830) that [suggested](https://bugs.mysql.com/bug.php?id=50909) [fixes](https://bugs.mysql.com/bug.php?id=65830) [have](https://bugs.mysql.com/bug.php?id=63164).
2014-02-20 09:10:25 +00:00
## MySQL
2014-02-20 09:51:58 +00:00
# Install the database packages
sudo apt-get install -y mysql-server mysql-client libmysqlclient-dev
# Ensure you have MySQL version 5.5.14 or later
mysql --version
2014-02-20 09:10:25 +00:00
2014-09-11 00:23:06 +00:00
# Pick a MySQL root password (can be anything), type it and press enter
# Retype the MySQL root password and press enter
2014-02-20 09:10:25 +00:00
2014-09-11 00:23:06 +00:00
# Secure your installation
2014-02-20 09:51:58 +00:00
sudo mysql_secure_installation
2014-02-20 09:10:25 +00:00
2014-02-20 09:51:58 +00:00
# Login to MySQL
mysql -u root -p
2014-02-20 09:10:25 +00:00
2014-09-11 00:23:06 +00:00
# Type the MySQL root password
2014-02-20 09:10:25 +00:00
2014-02-20 09:51:58 +00:00
# Create a user for GitLab
# do not type the 'mysql>', this is part of the prompt
# change $password in the command below to a real password you pick
mysql> CREATE USER 'git'@'localhost' IDENTIFIED BY '$password';
2014-02-20 09:10:25 +00:00
# Ensure you can use the InnoDB engine which is necessary to support long indexes
# If this fails, check your MySQL config files (e.g. `/etc/mysql/*.cnf`, `/etc/mysql/conf.d/*`) for the setting "innodb = off"
mysql> SET storage_engine=INNODB;
2014-02-20 09:51:58 +00:00
# Create the GitLab production database
mysql> CREATE DATABASE IF NOT EXISTS `gitlabhq_production` DEFAULT CHARACTER SET `utf8` COLLATE `utf8_unicode_ci`;
2014-02-20 09:10:25 +00:00
# Grant the GitLab user necessary permissions on the database
mysql> GRANT SELECT, INSERT, UPDATE, DELETE, CREATE, CREATE TEMPORARY TABLES, DROP, INDEX, ALTER, LOCK TABLES ON `gitlabhq_production`.* TO 'git'@'localhost';
2014-02-20 09:10:25 +00:00
2014-02-20 09:51:58 +00:00
# Quit the database session
mysql> \q
2014-02-20 09:10:25 +00:00
2014-02-20 09:51:58 +00:00
# Try connecting to the new database with the new user
sudo -u git -H mysql -u git -p -D gitlabhq_production
2014-02-20 09:10:25 +00:00
2014-02-20 09:51:58 +00:00
# Type the password you replaced $password with earlier
2014-02-20 09:10:25 +00:00
2014-02-20 09:51:58 +00:00
# You should now see a 'mysql>' prompt
2014-02-20 09:10:25 +00:00
2014-02-20 09:51:58 +00:00
# Quit the database session
mysql> \q
2014-02-20 09:10:25 +00:00
2014-02-20 09:51:58 +00:00
# You are done installing the database and can go back to the rest of the installation.