Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2012-08-11 23:22:03 +0400
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2012-08-11 23:22:03 +0400
commit5867a5c21da4fa17b605d93c4e1cb8e16a885d05 (patch)
tree7f73a14b52711d72a8deb396c678e5c3b7d0c9bf /doc
parent731b6be9c929d9117c322c605a7f53a8319751cd (diff)
parent6b77d926029104e39a4a01fd247086b79dfb4df8 (diff)
Merge pull request #1166 from three18ti/master
Updated MySQL docs and Ubuntu auto-install script
Diffstat (limited to 'doc')
-rw-r--r--doc/debian_ubuntu.sh2
-rw-r--r--doc/installation.md23
2 files changed, 20 insertions, 5 deletions
diff --git a/doc/debian_ubuntu.sh b/doc/debian_ubuntu.sh
index 11533285849..a0b4710b5eb 100644
--- a/doc/debian_ubuntu.sh
+++ b/doc/debian_ubuntu.sh
@@ -3,7 +3,7 @@
sudo apt-get update
sudo apt-get upgrade
-sudo apt-get install -y git git-core wget curl gcc checkinstall libxml2-dev libxslt-dev sqlite3 libsqlite3-dev libcurl4-openssl-dev libreadline-gplv2-dev libc6-dev libssl-dev libmysql++-dev make build-essential zlib1g-dev libicu-dev redis-server openssh-server python-dev python-pip libyaml-dev
+sudo apt-get install -y git git-core wget curl gcc checkinstall libxml2-dev libxslt-dev sqlite3 libsqlite3-dev libcurl4-openssl-dev libreadline-gplv2-dev libc6-dev libssl-dev libmysql++-dev make build-essential zlib1g-dev libicu-dev redis-server openssh-server python-dev python-pip libyaml-dev postfix
wget http://ftp.ruby-lang.org/pub/ruby/1.9/ruby-1.9.3-p194.tar.gz
tar xfvz ruby-1.9.3-p194.tar.gz
diff --git a/doc/installation.md b/doc/installation.md
index ee48e74efbd..524c8e86918 100644
--- a/doc/installation.md
+++ b/doc/installation.md
@@ -60,7 +60,7 @@ Also read the [Read this before you submit an issue](https://github.com/gitlabhq
sudo apt-get update
sudo apt-get upgrade
- sudo apt-get install -y wget curl gcc checkinstall libxml2-dev libxslt-dev sqlite3 libsqlite3-dev libcurl4-openssl-dev libreadline6-dev libc6-dev libssl-dev libmysql++-dev make build-essential zlib1g-dev libicu-dev redis-server openssh-server git-core python-dev python-pip libyaml-dev sendmail
+ sudo apt-get install -y wget curl gcc checkinstall libxml2-dev libxslt-dev sqlite3 libsqlite3-dev libcurl4-openssl-dev libreadline6-dev libc6-dev libssl-dev libmysql++-dev make build-essential zlib1g-dev libicu-dev redis-server openssh-server git-core python-dev python-pip libyaml-dev postfix
# If you want to use MySQL:
sudo apt-get install -y mysql-server mysql-client libmysqlclient-dev
@@ -153,8 +153,22 @@ Permissions:
# Or
# Mysql
+ # Install MySQL as directed in Step #1
+
+ # Login to MySQL
+ $ mysql -u root -p
+
+ # Create the gitlabhq production database
+ mysql> CREATE DATABASE IF NOT EXISTS `gitlabhq_production` DEFAULT CHARACTER SET `utf8` COLLATE `utf8_unicode_ci`;
+
+ # Create the MySQL User change $password to a real password
+ mysql> CREATE USER 'gitlab'@'localhost' IDENTIFIED BY '$password';
+
+ # Grant proper permissions to the MySQL User
+ mysql> GRANT SELECT, INSERT, UPDATE, DELETE, CREATE, DROP, INDEX, ALTER ON `gitlabhq_production`.* TO 'gitlab'@'localhost';
+
+ # Exit MySQL Server and copy the example config, make sure to update username/password in config/database.yml
sudo -u gitlab cp config/database.yml.example config/database.yml
- # Change username/password of config/database.yml to real one
#### Install gems
@@ -206,8 +220,9 @@ You can login via web using admin generated with setup:
sudo -u gitlab bundle exec rake environment resque:work QUEUE=* RAILS_ENV=production BACKGROUND=yes
# Gitlab start script
- ./resque.sh
-
+ sudo -u gitlab ./resque.sh
+ # if you run this as root /home/gitlab/gitlab/tmp/pids/resque_worker.pid will be owned by root
+ # causing the resque worker not to start via init script on next boot/service restart
**Ok - we have a working application now. **
**But keep going - there are some thing that should be done **