diff options
author | Riyad Preukschas <riyad@informatik.uni-bremen.de> | 2012-11-27 21:36:09 +0100 |
---|---|---|
committer | Riyad Preukschas <riyad@informatik.uni-bremen.de> | 2012-11-27 21:36:09 +0100 |
commit | 0fbd9ac7487febe699abd697220ef787b1d08291 (patch) | |
tree | 4587c11b31333b2936ea933ac840ea262c8b47e5 /doc | |
parent | c4f3c54ecb3279ce91d987b64055f2eacb1b7fd5 (diff) | |
download | gitlab-ce-0fbd9ac7487febe699abd697220ef787b1d08291.tar.gz |
Remove SQLite support
Diffstat (limited to 'doc')
-rw-r--r-- | doc/install/databases.md | 17 | ||||
-rw-r--r-- | doc/install/installation.md | 4 |
2 files changed, 5 insertions, 16 deletions
diff --git a/doc/install/databases.md b/doc/install/databases.md index b7beff26a0f..1a6f739ecdc 100644 --- a/doc/install/databases.md +++ b/doc/install/databases.md @@ -1,12 +1,8 @@ # Databases: -GitLab use mysql as default database but you are free to use PostgreSQL or SQLite. +GitLab use MySQL as default database but you are free to use PostgreSQL. -## SQLite - - sudo apt-get install -y sqlite3 libsqlite3-dev - ## MySQL sudo apt-get install -y mysql-server mysql-client libmysqlclient-dev @@ -47,9 +43,6 @@ GitLab use mysql as default database but you are free to use PostgreSQL or SQLit #### Select the database you want to use - # SQLite - sudo -u gitlab cp config/database.yml.sqlite config/database.yml - # Mysql sudo -u gitlab cp config/database.yml.mysql config/database.yml @@ -61,11 +54,7 @@ GitLab use mysql as default database but you are free to use PostgreSQL or SQLit #### Install gems # mysql - sudo -u gitlab -H bundle install --without development test sqlite postgres --deployment + sudo -u gitlab -H bundle install --without development test postgres --deployment # or postgres - sudo -u gitlab -H bundle install --without development test sqlite mysql --deployment - - # or sqlite - sudo -u gitlab -H bundle install --without development test mysql postgres --deployment - + sudo -u gitlab -H bundle install --without development test mysql --deployment diff --git a/doc/install/installation.md b/doc/install/installation.md index 07ed0b0f9de..6876a8756b1 100644 --- a/doc/install/installation.md +++ b/doc/install/installation.md @@ -178,7 +178,7 @@ and ensure you have followed all of the above steps carefully. sudo gem install charlock_holmes --version '0.6.9' sudo gem install bundler - sudo -u gitlab -H bundle install --without development test sqlite postgres --deployment + sudo -u gitlab -H bundle install --without development test postgres --deployment #### Configure git client @@ -269,7 +269,7 @@ You can login via web using admin generated with setup: # Advanced setup tips: -_Checkout databases.md for postgres or sqlite_ +_Checkout databases.md for PostgreSQL_ ## Customizing Resque's Redis connection |