2012-08-26 16:18:13 +02:00
## Platform requirements:
2012-03-12 13:47:57 +01:00
2012-03-28 09:07:24 +02:00
**The project is designed for the Linux operating system.**
2012-03-13 19:19:03 +01:00
It may work on FreeBSD and Mac OS, but we don't test our application for these systems and can't guarantee stability and full functionality.
2012-03-28 09:07:24 +02:00
We officially support (recent versions of) these Linux distributions:
2012-03-13 19:19:03 +01:00
2012-03-28 09:07:24 +02:00
- Ubuntu Linux
- Debian/GNU Linux
2012-03-13 19:19:03 +01:00
It should work on:
- Fedora
- CentOs
2012-03-28 09:07:24 +02:00
- RedHat
2012-03-13 19:19:03 +01:00
2012-03-28 09:07:24 +02:00
You might have some luck using these, but no guarantees:
2012-03-13 19:19:03 +01:00
2012-03-28 09:07:24 +02:00
- MacOS X
2012-03-13 19:19:03 +01:00
- FreeBSD
2012-03-28 09:07:24 +02:00
Gitlab does **not** run on Windows and we have no plans of making Gitlab compatible.
2012-03-13 19:19:03 +01:00
2012-08-26 16:18:13 +02:00
## This installation guide created for Debian/Ubuntu and properly tested.
2012-03-13 19:19:03 +01:00
The installation consists of 6 steps:
2012-03-12 13:47:57 +01:00
2012-03-28 09:07:24 +02:00
1. Install packages / dependencies
2. Install ruby
3. Install gitolite
4. Install and configure Gitlab.
5. Start the web front-end
6. Start a Resque worker (for background processing)
### IMPORTANT
Please make sure you have followed all the steps below before posting to the mailinglist with installation and configuration questions.
Only create a Github Issue if you want a specific part of this installation guide updated.
2012-03-12 13:47:57 +01:00
2012-03-28 09:07:24 +02:00
Also read the [Read this before you submit an issue ](https://github.com/gitlabhq/gitlabhq/wiki/Read-this-before-you-submit-an-issue ) wiki page.
2012-03-12 13:47:57 +01:00
2012-03-13 19:19:03 +01:00
> - - -
> First 3 steps can be easily skipped with simply install script:
2012-08-26 16:18:13 +02:00
>
> # Install curl and sudo
2012-03-13 19:19:03 +01:00
> apt-get install curl sudo
2012-08-26 16:18:13 +02:00
>
2012-03-13 19:19:03 +01:00
> # 3 steps in 1 command :)
2012-03-27 22:15:09 +02:00
> curl https://raw.github.com/gitlabhq/gitlabhq/master/doc/debian_ubuntu.sh | sh
2012-08-26 16:18:13 +02:00
>
2012-03-13 19:19:03 +01:00
> Now you can go to step 4"
2012-09-02 22:41:21 +02:00
>
> Or if you are installing on Amazon Web Services using Ubuntu 12.04 you can do all steps (1 to 6) at once with:
>
> curl https://raw.github.com/gitlabhq/gitlabhq/master/lib/support/aws/debian_ubuntu_aws.sh | sh
>
> for more detailed instructions read the HOWTO section of [the script](https://github.com/gitlabhq/gitlabhq/blob/master/lib/support/aws/debian_ubuntu_aws.sh)
2012-03-13 19:19:03 +01:00
> - - -
2012-03-12 13:47:57 +01:00
# 1. Install packages
2012-03-13 19:19:03 +01:00
*Keep in mind that `sudo` is not installed for debian by default. You should install it with as root:* **apt-get update && apt-get upgrade && apt-get install sudo**
2012-03-12 13:47:57 +01:00
sudo apt-get update
sudo apt-get upgrade
2012-07-30 23:42:40 +02:00
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
2012-08-26 16:18:13 +02:00
2012-03-28 09:07:24 +02:00
# If you want to use MySQL:
sudo apt-get install -y mysql-server mysql-client libmysqlclient-dev
2012-03-12 13:47:57 +01:00
# 2. Install ruby
wget http://ftp.ruby-lang.org/pub/ruby/1.9/ruby-1.9.2-p290.tar.gz
2012-03-24 08:38:32 +01:00
tar xzfv ruby-1.9.2-p290.tar.gz
2012-03-12 13:47:57 +01:00
cd ruby-1.9.2-p290
./configure
make
sudo make install
# 3. Install gitolite
Create user for git:
2012-08-26 16:18:13 +02:00
2012-03-12 13:47:57 +01:00
sudo adduser \
--system \
--shell /bin/sh \
--gecos 'git version control' \
--group \
--disabled-password \
--home /home/git \
git
Create user for gitlab:
2012-03-13 23:07:13 +01:00
2012-03-12 13:47:57 +01:00
# ubuntu/debian
2012-08-26 16:18:13 +02:00
sudo adduser --disabled-login --gecos 'gitlab system' gitlab
2012-03-12 13:47:57 +01:00
Add your user to git group:
2012-03-13 23:07:13 +01:00
2012-03-12 13:47:57 +01:00
sudo usermod -a -G git gitlab
Generate key:
2012-03-13 23:07:13 +01:00
2012-03-12 13:47:57 +01:00
sudo -H -u gitlab ssh-keygen -q -N '' -t rsa -f /home/gitlab/.ssh/id_rsa
2012-03-13 19:19:03 +01:00
Get gitolite source code:
2012-03-13 23:07:13 +01:00
2012-03-12 13:47:57 +01:00
cd /home/git
2012-08-26 16:18:13 +02:00
sudo -H -u git git clone git://github.com/gitlabhq/gitolite /home/git/gitolite
2012-03-12 13:47:57 +01:00
Setup:
2012-03-13 23:07:13 +01:00
2012-07-10 12:47:30 +02:00
sudo -u git sh -c 'echo -e "PATH=\$PATH:/home/git/bin\nexport PATH" >> /home/git/.profile'
2012-05-23 20:45:02 +02:00
sudo -u git -H sh -c "PATH=/home/git/bin:$PATH; /home/git/gitolite/src/gl-system-install"
2012-03-12 13:47:57 +01:00
sudo cp /home/gitlab/.ssh/id_rsa.pub /home/git/gitlab.pub
2012-07-06 00:25:53 +02:00
sudo chmod 0444 /home/git/gitlab.pub
2012-03-12 13:47:57 +01:00
sudo -u git -H sed -i 's/0077/0007/g' /home/git/share/gitolite/conf/example.gitolite.rc
sudo -u git -H sh -c "PATH=/home/git/bin:$PATH; gl-setup -q /home/git/gitlab.pub"
2012-08-26 16:18:13 +02:00
2012-03-12 13:47:57 +01:00
Permissions:
2012-03-13 23:07:13 +01:00
2012-03-12 13:47:57 +01:00
sudo chmod -R g+rwX /home/git/repositories/
sudo chown -R git:git /home/git/repositories/
#### CHECK: Logout & login again to apply git group to your user
2012-08-26 16:18:13 +02:00
2012-03-12 13:47:57 +01:00
# clone admin repo to add localhost to known_hosts
# & be sure your user has access to gitolite
2012-08-26 16:18:13 +02:00
sudo -u gitlab -H git clone git@localhost:gitolite-admin.git /tmp/gitolite-admin
2012-03-12 13:47:57 +01:00
# if succeed you can remove it
2012-08-26 16:18:13 +02:00
sudo rm -rf /tmp/gitolite-admin
2012-03-12 13:47:57 +01:00
2012-03-28 09:07:24 +02:00
**IMPORTANT! If you cant clone `gitolite-admin` repository - DONT PROCEED INSTALLATION**
2012-03-12 13:47:57 +01:00
# 4. Install gitlab and configuration. Check status configuration.
2012-08-19 09:20:42 +02:00
sudo gem install charlock_holmes --version '0.6.8'
2012-03-12 13:47:57 +01:00
sudo pip install pygments
sudo gem install bundler
cd /home/gitlab
2012-06-04 16:38:08 +02:00
sudo -H -u gitlab git clone -b stable git://github.com/gitlabhq/gitlabhq.git gitlab
2012-03-12 13:47:57 +01:00
cd gitlab
2012-08-26 16:18:13 +02:00
2012-07-14 09:09:26 +02:00
sudo -u gitlab mkdir tmp
2012-03-12 13:47:57 +01:00
# Rename config files
sudo -u gitlab cp config/gitlab.yml.example config/gitlab.yml
#### Select db you want to use
2012-03-13 23:07:13 +01:00
2012-03-12 13:47:57 +01:00
# SQLite
sudo -u gitlab cp config/database.yml.sqlite config/database.yml
2012-08-26 16:18:13 +02:00
# Or
2012-03-12 13:47:57 +01:00
# Mysql
2012-07-30 03:47:28 +02:00
# Install MySQL as directed in Step #1
2012-08-26 16:18:13 +02:00
2012-07-30 03:47:28 +02:00
# Login to MySQL
2012-08-26 16:18:13 +02:00
$ mysql -u root -p
2012-07-30 03:47:28 +02:00
# Create the gitlabhq production database
mysql> CREATE DATABASE IF NOT EXISTS `gitlabhq_production` DEFAULT CHARACTER SET `utf8` COLLATE `utf8_unicode_ci` ;
2012-08-26 16:18:13 +02:00
2012-07-30 03:47:28 +02:00
# Create the MySQL User change $password to a real password
2012-08-26 16:18:13 +02:00
mysql> CREATE USER 'gitlab'@'localhost' IDENTIFIED BY '$password';
2012-07-30 03:47:28 +02:00
# Grant proper permissions to the MySQL User
mysql> GRANT SELECT, INSERT, UPDATE, DELETE, CREATE, DROP, INDEX, ALTER ON `gitlabhq_production` .* TO 'gitlab'@'localhost';
2012-08-26 16:18:13 +02:00
2012-07-30 03:47:28 +02:00
# Exit MySQL Server and copy the example config, make sure to update username/password in config/database.yml
2012-03-12 13:47:57 +01:00
sudo -u gitlab cp config/database.yml.example config/database.yml
#### Install gems
2012-03-13 23:07:13 +01:00
2012-03-12 13:47:57 +01:00
sudo -u gitlab -H bundle install --without development test --deployment
#### Setup DB
2012-03-13 23:07:13 +01:00
2012-04-04 00:02:54 +02:00
sudo -u gitlab bundle exec rake gitlab:app:setup RAILS_ENV=production
2012-08-26 16:18:13 +02:00
2012-09-02 18:31:16 +02:00
#### Setup gitlab hooks
sudo cp ./lib/hooks/post-receive /home/git/share/gitolite/hooks/common/post-receive
sudo chown git:git /home/git/share/gitolite/hooks/common/post-receive
2012-03-12 13:47:57 +01:00
Checking status:
2012-03-13 23:07:13 +01:00
2012-04-04 00:02:54 +02:00
sudo -u gitlab bundle exec rake gitlab:app:status RAILS_ENV=production
2012-03-12 13:47:57 +01:00
# OUTPUT EXAMPLE
Starting diagnostic
config/database.yml............exists
config/gitlab.yml............exists
/home/git/repositories/............exists
/home/git/repositories/ is writable?............YES
remote: Counting objects: 603, done.
remote: Compressing objects: 100% (466/466), done.
remote: Total 603 (delta 174), reused 0 (delta 0)
Receiving objects: 100% (603/603), 53.29 KiB, done.
Resolving deltas: 100% (174/174), done.
Can clone gitolite-admin?............YES
UMASK for .gitolite.rc is 0007? ............YES
2012-09-02 18:31:16 +02:00
/home/git/share/gitolite/hooks/common/post-receive exists? ............YES
2012-03-12 13:47:57 +01:00
2012-08-26 16:18:13 +02:00
If you got all YES - congrats! You can go to next step.
2012-03-12 13:47:57 +01:00
# 5. Server up
2012-03-13 19:19:03 +01:00
Application can be started with next command:
2012-03-13 23:07:13 +01:00
2012-08-26 16:18:13 +02:00
# For test purposes
2012-03-12 13:47:57 +01:00
sudo -u gitlab bundle exec rails s -e production
2012-03-13 19:19:03 +01:00
# As daemon
sudo -u gitlab bundle exec rails s -e production -d
2012-03-12 13:47:57 +01:00
2012-08-02 14:30:22 +02:00
You can login via web using admin generated with setup:
admin@local.host
5iveL!fe
2012-03-12 13:47:57 +01:00
# 6. Run resque process (for processing queue).
# Manually
sudo -u gitlab bundle exec rake environment resque:work QUEUE=* RAILS_ENV=production BACKGROUND=yes
# Gitlab start script
2012-07-30 03:49:43 +02:00
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
2012-03-13 19:19:03 +01:00
2012-03-28 09:07:24 +02:00
**Ok - we have a working application now. **
2012-08-29 13:04:37 +02:00
**But keep going - there are some things that should be done **
2012-03-13 19:19:03 +01:00
2012-03-12 13:47:57 +01:00
# Nginx && Unicorn
### Install Nginx
sudo apt-get install nginx
## Unicorn
2012-03-13 23:07:13 +01:00
2012-03-12 13:47:57 +01:00
cd /home/gitlab/gitlab
sudo -u gitlab cp config/unicorn.rb.orig config/unicorn.rb
2012-03-16 13:58:49 +01:00
sudo -u gitlab bundle exec unicorn_rails -c config/unicorn.rb -E production -D
2012-03-12 13:47:57 +01:00
2012-09-02 18:31:16 +02:00
Add gitlab to nginx sites & change with your host specific settings
2012-08-26 16:18:13 +02:00
2012-09-02 18:31:16 +02:00
sudo cp /home/gitlab/gitlab/lib/support/nginx-gitlab /etc/nginx/sites-available/gitlab
sudo ln -s /etc/nginx/sites-available/gitlab /etc/nginx/sites-enabled/gitlab
2012-03-12 13:47:57 +01:00
2012-09-02 18:31:16 +02:00
# Change **YOUR_SERVER_IP** and **YOUR_SERVER_FQDN**
# to the IP address and fully-qualified domain name
# of the host serving GitLab.
sudo vim /etc/nginx/sites-enabled/gitlab
2012-03-13 19:19:03 +01:00
2012-03-12 13:47:57 +01:00
Restart nginx:
2012-03-13 23:07:13 +01:00
2012-03-12 13:47:57 +01:00
/etc/init.d/nginx restart
2012-03-13 19:19:03 +01:00
2012-03-12 13:47:57 +01:00
Create init script in /etc/init.d/gitlab:
2012-03-13 23:07:13 +01:00
2012-09-02 18:31:16 +02:00
cp /home/gitlab/gitlab/lib/support/init-gitlab /etc/init.d/gitlab
2012-03-12 13:47:57 +01:00
2012-03-12 13:51:21 +01:00
Adding permission:
2012-03-13 23:07:13 +01:00
2012-03-12 13:51:21 +01:00
sudo chmod +x /etc/init.d/gitlab
2012-06-23 12:09:06 +02:00
Gitlab autostart:
2012-03-13 23:07:13 +01:00
2012-06-23 12:09:06 +02:00
sudo update-rc.d gitlab defaults
2012-03-12 13:47:57 +01:00
2012-03-13 19:19:03 +01:00
Now you can start/restart/stop gitlab like:
2012-03-13 23:07:13 +01:00
2012-03-13 19:19:03 +01:00
sudo /etc/init.d/gitlab restart